planckforth/Makefile

20 lines
285 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
2021-01-04 14:23:54 +01:00
default: x86hex
x86hex: planck.xxd
xxd -r -c 8 $< > planck
chmod +x planck
2020-12-28 14:11:20 +01:00
2021-01-04 14:16:12 +01:00
c: others/planck.c
gcc -Wall -O2 $< -o planck
python: others/planck.py
2021-01-05 04:06:53 +01:00
ln -s others/planck.py planck
2021-01-04 14:16:12 +01:00
chmod +x planck
2020-12-28 14:11:20 +01:00
.PHONY: clean
clean:
rm -f planck