mirror of
https://github.com/sethm/symon.git
synced 2024-11-18 23:10:05 +00:00
14 lines
217 B
Makefile
14 lines
217 B
Makefile
CA=ca65
|
|
LD=ld65
|
|
|
|
all: echo_irq
|
|
|
|
echo_irq: echo_irq.o
|
|
$(LD) -C symon.config -vm -m echo_irq.map -o echo_irq.rom echo_irq.o
|
|
|
|
echo_irq.o:
|
|
$(CA) --listing -o echo_irq.o echo_irq.asm
|
|
|
|
clean:
|
|
rm -f *.o *.rom *.map *.lst
|