Now the whole GEOSLib is built in a single make instance running in 'libsrc/geos-cbm' - which is just what the cc65 library build system can handle. The 'libsrc/geos-cbm' sub-directories still contain Makefiles. However those files only define the set of object files to create from their sub-directory and get included into the 'libsrc/geos-cbm' Makefile. git-svn-id: svn://svn.cc65.org/cc65/trunk@5429 b7a2c559-68d2-44c3-8de9-860c34a00d81
40 lines
721 B
Makefile
40 lines
721 B
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
S_OBJS += blkalloc.o \
|
|
calcblksfree.o \
|
|
changediskdevice.o \
|
|
chkdkgeos.o \
|
|
dio_openclose.o \
|
|
dio_cts.o \
|
|
dio_params.o \
|
|
dio_stc.o \
|
|
dio_read.o \
|
|
dio_write.o \
|
|
dio_writev.o \
|
|
enterturbo.o \
|
|
exitturbo.o \
|
|
findbambit.o \
|
|
freeblock.o \
|
|
getblock.o \
|
|
getdirhead.o \
|
|
getptrcurdknm.o \
|
|
gettrse.o \
|
|
newdisk.o \
|
|
nxtblkalloc.o \
|
|
opendisk.o \
|
|
purgeturbo.o \
|
|
putblock.o \
|
|
putdirhead.o \
|
|
readblock.o \
|
|
readbuff.o \
|
|
setnextfree.o \
|
|
setgeosdisk.o \
|
|
setoserror.o \
|
|
writeblock.o \
|
|
writebuff.o \
|
|
verwriteblock.o
|