Files
super6502/hw/efinix_fpga/test_programs/Makefile
2022-12-23 14:20:44 -05:00

13 lines
177 B
Makefile

TARGETS=stacktest runram
all: $(TARGETS)
$(TARGETS):
cl65 --cpu 65c02 -C link.ld -l $@.list $@.s
xxd -ps $@ | fold -w 2 > $@.hex
clean:
rm $(TARGETS)
rm *.hex
rm *.list