petwifi/Makefile
2022-08-13 20:45:08 +02:00

12 lines
136 B
Makefile

MACHINE := pet
.PHONY: all
all: rs232.bin
rs232.bin: driver.o
cl65 -t ${MACHINE} -o $@ $^
%.o: %.a65
ca65 -t ${MACHINE} -o $@ $<