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 01:24:43 +09:00
|
|
|
default: i386-linux-handwrite
|
2021-01-04 22:23:54 +09:00
|
|
|
|
2021-01-11 01:24:43 +09:00
|
|
|
i386-linux-handwrite: 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
|
|
|
|
|
2020-12-28 22:11:20 +09:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f planck
|