mirror of
https://github.com/nineties/planckforth
synced 2025-01-13 08:01:10 +01:00
17 lines
256 B
Makefile
17 lines
256 B
Makefile
# planckforth -
|
|
# Copyright (C) 2021 nineties
|
|
|
|
planck: planck.xxd
|
|
xxd -r -c 8 $< > $@
|
|
chmod +x $@
|
|
|
|
c: others/planck.c
|
|
gcc -Wall -O2 $< -o planck
|
|
|
|
python: others/planck.py
|
|
cp others/planck.py planck
|
|
chmod +x planck
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f planck
|