planckforth/Makefile

23 lines
440 B
Makefile
Raw Normal View History

2021-01-08 04:27:50 +09:00
# planckforth -
2021-01-02 13:29:46 +09:00
# Copyright (C) 2021 nineties
2020-12-28 22:11:20 +09:00
2021-01-11 15:37:09 +09:00
default: i386-linux-handwritten
2021-12-03 07:26:13 +09:00
2021-01-11 15:37:09 +09:00
i386-linux-handwritten: planck.xxd
2021-01-04 22:23:54 +09:00
xxd -r -c 8 $< > planck
chmod +x planck
2020-12-28 22:11:20 +09:00
2021-01-04 22:16:12 +09:00
c: others/planck.c
2021-01-11 14:03:25 +09:00
gcc -Wall -O2 $< -o planck -DCOMPILER="$(shell gcc --version | head -n1)"
2021-01-04 22:16:12 +09:00
python: others/planck.py
2021-01-05 14:13:05 +09:00
cp others/planck.py planck
2021-01-04 22:16:12 +09:00
chmod +x planck
2021-05-06 00:11:38 +09:00
.PHONY: clean test
2020-12-28 22:11:20 +09:00
clean:
rm -f planck
2021-05-06 00:11:38 +09:00
test: planck bootstrap.fs runtests.fs
./planck < bootstrap.fs runtests.fs