2000-05-28 13:40:48 +00:00
|
|
|
#
|
|
|
|
# Makefile for GEOS lib
|
|
|
|
# for cc65
|
2000-11-22 22:19:09 +00:00
|
|
|
#
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
%.o: %.s
|
|
|
|
@$(AS) -o $@ $(AFLAGS) $<
|
|
|
|
|
|
|
|
|
|
|
|
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\
|
2005-07-19 13:41:44 +00:00
|
|
|
deletefile.o renamefile.o findftypes.o readbyte.o getfile.o\
|
|
|
|
sysremove.o sysrename.o
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
all: $(S_OBJS)
|
|
|
|
|
|
|
|
clean:
|
2003-08-20 11:59:27 +00:00
|
|
|
@$(RM) *.~ $(S_OBJS) core
|