Apple 2 joystick driver based on code by Stefan Haubenthal

git-svn-id: svn://svn.cc65.org/cc65/trunk@2113 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-05-02 09:03:47 +00:00
parent 9d7ffb0ea2
commit 4249b76c3a
6 changed files with 197 additions and 9 deletions

View File

@@ -14,6 +14,15 @@
%.o: %.s
@$(AS) -g -o $@ $(AFLAGS) $<
%.emd: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
%.joy: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
%.tgi: %.o ../runtime/zeropage.o
@$(LD) -t module -o $@ $^
#--------------------------------------------------------------------------
# Object files
@@ -28,6 +37,7 @@ OBJS= _scrsize.o \
crt0.o \
ctype.o \
cvline.o \
joy_stddrv.o \
kbhit.o \
mainargs.o \
randomize.o \
@@ -37,15 +47,28 @@ OBJS= _scrsize.o \
where.o \
write.o
#--------------------------------------------------------------------------
# Drivers
EMDS =
JOYS = apple2-stdjoy.joy
TGIS =
#--------------------------------------------------------------------------
# Targets
.PHONY: all clean zap
all: $(OBJS)
all: $(OBJS) $(EMDS) $(JOYS) $(TGIS)
../runtime/zeropage.o:
$(MAKE) -C $(dir $@) $(notdir $@)
clean:
@rm -f $(OBJS)
@rm -f $(OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
zap: clean
@rm -f $(EMDS) $(JOYS) $(TGIS)