mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
0c69d4866c
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
34 lines
622 B
Makefile
34 lines
622 B
Makefile
#
|
|
# makefile for CC65 runtime library
|
|
#
|
|
|
|
#--------------------------------------------------------------------------
|
|
# Object files
|
|
|
|
S_OBJS += get1stdirentry.o \
|
|
getnxtdirentry.o \
|
|
openrecordfile.o \
|
|
closerecordfile.o \
|
|
nextrecord.o \
|
|
previousrecord.o \
|
|
pointrecord.o \
|
|
deleterecord.o \
|
|
insertrecord.o \
|
|
appendrecord.o \
|
|
readrecord.o \
|
|
writerecord.o \
|
|
updaterecordfile.o \
|
|
findfile.o \
|
|
followchain.o \
|
|
getfhdrinfo.o \
|
|
readfile.o \
|
|
savefile.o \
|
|
freefile.o \
|
|
deletefile.o \
|
|
renamefile.o \
|
|
findftypes.o \
|
|
readbyte.o \
|
|
getfile.o \
|
|
sysremove.o \
|
|
sysrename.o
|