planckforth/Makefile

20 lines
281 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-04 22:23:54 +09:00
default: x86hex
x86hex: planck.xxd
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
gcc -Wall -O2 $< -o planck
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
2020-12-28 22:11:20 +09:00
.PHONY: clean
clean:
rm -f planck