mirror of
https://github.com/nineties/planckforth
synced 2024-12-26 21:58:42 +01:00
11 lines
137 B
Makefile
11 lines
137 B
Makefile
|
# planckforth -
|
||
|
# Copyright (C) 2020 nineties
|
||
|
|
||
|
planck: planck.xxd
|
||
|
xxd -r -c 8 $< > $@
|
||
|
chmod +x $@
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f planck
|