15 lines
210 B
Makefile
Raw Normal View History

2023-08-04 16:44:31 +02:00
PYTHON = /bin/python3.11
2023-01-11 11:13:09 +01:00
NAME = echo
all: asm install
asm:
2023-08-04 16:44:31 +02:00
$(PYTHON) ../../tools/Assembler/assembler.pyc $(NAME).asm
2023-01-11 11:13:09 +01:00
install:
cp $(NAME).hack ../00_HACK/ROM.hack
clean:
rm -f *.hack *~
.PHONY: all clean