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