mirror of
https://github.com/dschmenk/apple2pi.git
synced 2024-11-24 12:31:30 +00:00
f683d6a051
Apple 3 PiDrive driver. Apple2 PiDrive driver can mount under Linux
27 lines
487 B
Makefile
Executable File
27 lines
487 B
Makefile
Executable File
.SUFFIXES =
|
|
AFLAGS = -o $@
|
|
ROM = ROM\#062000
|
|
VDRV = PIDRIVE\#062000
|
|
VCLK = PICLOCK\#062000
|
|
#
|
|
# Image filetypes for CiderPress
|
|
#
|
|
PLATYPE = \#ed0000
|
|
BINTYPE = \#060000
|
|
SYSTYPE = \#ff0000
|
|
TXTTYPE = \#040000
|
|
|
|
all: $(ROM) $(VDRV) $(VCLK)
|
|
|
|
$(ROM): rom.s
|
|
ca65 rom.s -o rom.o
|
|
ld65 -o $(ROM) -C rom.cfg rom.o
|
|
|
|
$(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
|