added _systime implementation for GEOS

git-svn-id: svn://svn.cc65.org/cc65/trunk@1584 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
izydorst
2002-11-22 19:31:44 +00:00
parent 8c5da1ecc1
commit 7ee826123f
3 changed files with 37 additions and 32 deletions

View File

@@ -7,6 +7,9 @@
%.o: %.s
@$(AS) -o $@ $(AFLAGS) $<
%.o: %.c
@$(CC) $(CFLAGS) $<
@$(AS) -g -o $@ $(AFLAGS) $(*).s
S_OBJS = ctype.o \
callroutine.o \
@@ -19,10 +22,11 @@ S_OBJS = ctype.o \
mainloop.o \
panic.o \
tobasic.o \
setdevice.o \
systime.o
setdevice.o
all: $(S_OBJS)
C_OBJS = systime.o
all: $(C_OBJS) $(S_OBJS)
clean:
@rm -f *.~ $(S_OBJS) core
@rm -f *.~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS) core