planckforth/Makefile
Koichi Nakamura cf2a003e7d minor fix
2021-12-03 07:26:13 +09:00

24 lines
458 B
Makefile

# planckforth -
# Copyright (C) 2021 nineties
default: i386-linux-handwritten
planck: default
i386-linux-handwritten: planck.xxd
xxd -r -c 8 $< > planck
chmod +x planck
c: others/planck.c
gcc -Wall -O2 $< -o planck -DCOMPILER="$(shell gcc --version | head -n1)"
python: others/planck.py
cp others/planck.py planck
chmod +x planck
.PHONY: clean test
clean:
rm -f planck
test: planck bootstrap.fs runtests.fs
./planck < bootstrap.fs runtests.fs