2015-02-04 23:49:05 +00:00
|
|
|
.SUFFIXES =
|
|
|
|
AFLAGS = -o $@
|
2015-02-27 16:08:42 +00:00
|
|
|
SIROM = SIROM\#062000
|
|
|
|
PIROM = PIROM\#062000
|
2015-02-04 23:49:05 +00:00
|
|
|
VDRV = PIDRIVE\#062000
|
|
|
|
VCLK = PICLOCK\#062000
|
|
|
|
#
|
|
|
|
# Image filetypes for CiderPress
|
|
|
|
#
|
|
|
|
PLATYPE = \#ed0000
|
|
|
|
BINTYPE = \#060000
|
|
|
|
SYSTYPE = \#ff0000
|
|
|
|
TXTTYPE = \#040000
|
|
|
|
|
2015-02-27 16:08:42 +00:00
|
|
|
all: $(SIROM) $(PIROM) $(VDRV) $(VCLK)
|
2015-02-04 23:49:05 +00:00
|
|
|
|
|
|
|
clean:
|
2015-02-27 16:08:42 +00:00
|
|
|
-rm $(SIROM) $(PIROM) $(VDRV) $(VCLK) *.o *~
|
2015-02-04 23:49:05 +00:00
|
|
|
|
2015-02-27 16:08:42 +00:00
|
|
|
$(SIROM): sirom.s romincs.s cxrom.s c8rom.s
|
|
|
|
ca65 sirom.s -o sirom.o
|
|
|
|
ld65 -o $(SIROM) -C sirom.cfg sirom.o
|
|
|
|
|
|
|
|
$(PIROM): pirom.s romincs.s cxrom.s c8rom.s
|
|
|
|
ca65 pirom.s -o pirom.o
|
|
|
|
ld65 -o $(PIROM) -C pirom.cfg pirom.o
|
2015-02-04 23:49:05 +00:00
|
|
|
|
|
|
|
$(VDRV): pidrive.s
|
|
|
|
ca65 pidrive.s -o pidrive.o
|
|
|
|
ld65 -o $(VDRV) -C drvr.cfg pidrive.o
|
|
|
|
|
|
|
|
$(VCLK): piclock.s
|
|
|
|
ca65 piclock.s -o piclock.o
|
|
|
|
ld65 -o $(VCLK) -C drvr.cfg piclock.o
|