mirror of
https://github.com/flowenol/applesoft-lite.git
synced 2024-09-16 02:54:34 +00:00
23 lines
385 B
Makefile
23 lines
385 B
Makefile
AFLAGS =
|
|
LFLAGS = -C apple1cartridge.cfg
|
|
BINFILE = applesoft-lite.bin
|
|
OBJS = applesoft-lite.o io.o apple1serial.o
|
|
|
|
$(BINFILE): $(OBJS)
|
|
ld65 $(LFLAGS) $(OBJS) -o $(BINFILE)
|
|
|
|
applesoft-lite.o: applesoft-lite.s
|
|
ca65 $(AFLAGS) $<
|
|
|
|
wozmon.o: wozmon.s
|
|
ca65 $(AFLAGS) $<
|
|
|
|
apple1serial.o: apple1serial.s
|
|
ca65 $(AFLAGS) $<
|
|
|
|
io.o: io.s
|
|
ca65 $(AFLAGS) $<
|
|
|
|
clean:
|
|
rm $(OBJS) $(BINFILE)
|