petwifi/Makefile

13 lines
136 B
Makefile
Raw Normal View History

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