planckforth/Makefile
Koichi Nakamura 8a5311f2e3 minor fix
2021-01-11 14:03:25 +09:00

19 lines
356 B
Makefile

# planckforth -
# Copyright (C) 2021 nineties
default: i386-linux-handwrite
i386-linux-handwrite: 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
clean:
rm -f planck