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