2000-05-28 13:40:48 +00:00
|
|
|
#
|
|
|
|
# Makefile for GEOS lib
|
|
|
|
# for cc65
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
%.o: %.s
|
|
|
|
@$(AS) -o $@ $(AFLAGS) $<
|
|
|
|
|
|
|
|
|
|
|
|
S_OBJS = crc.o doublepop.o reuregs.o clearram.o fillram.o initram.o movedata.o\
|
|
|
|
stashram.o fetchram.o swapram.o verifyram.o\
|
|
|
|
doublespop.o copystring.o cmpstring.o copyfstring.o cmpfstring.o
|
|
|
|
|
|
|
|
all: $(S_OBJS)
|
|
|
|
|
|
|
|
clean:
|
2003-08-20 11:59:27 +00:00
|
|
|
@$(RM) *.~ $(S_OBJS) core
|