planckforth/Makefile

18 lines
256 B
Makefile
Raw Normal View History

2020-12-28 14:11:20 +01:00
# planckforth -
2021-01-02 05:29:46 +01:00
# Copyright (C) 2021 nineties
2020-12-28 14:11:20 +01:00
planck: planck.xxd
xxd -r -c 8 $< > $@
chmod +x $@
2021-01-04 14:16:12 +01:00
c: others/planck.c
gcc -Wall -O2 $< -o planck
python: others/planck.py
cp others/planck.py planck
chmod +x planck
2020-12-28 14:11:20 +01:00
.PHONY: clean
clean:
rm -f planck