mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
df07cf1114
git-svn-id: svn://svn.cc65.org/cc65/trunk@3008 b7a2c559-68d2-44c3-8de9-860c34a00d81
42 lines
845 B
Makefile
42 lines
845 B
Makefile
#
|
|
# Makefile for GEOS lib
|
|
# for cc65
|
|
#
|
|
#
|
|
|
|
%.o: %.s
|
|
@$(AS) -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 $@ $^
|
|
|
|
S_OBJS = crt0.o \
|
|
extzp.o \
|
|
fio_module.o \
|
|
joy_stddrv.o \
|
|
mainargs.o \
|
|
oserror.o \
|
|
oserrlist.o \
|
|
randomize.o \
|
|
tgi_mode_table.o
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Drivers
|
|
|
|
EMDS = geos-vdc.emd
|
|
|
|
JOYS = geos-stdjoy.joy
|
|
|
|
TGIS = geos-tgi.tgi
|
|
|
|
all: $(S_OBJS) $(EMDS) $(JOYS) $(TGIS)
|
|
|
|
clean:
|
|
@$(RM) *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)
|