nand2/06_IO_Devices/03_SPI/Makefile

15 lines
209 B
Makefile
Raw Permalink Normal View History

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