]> git.sur5r.net Git - cc65/blob - libsrc/geos/runtime/Makefile
more GEOS Kernal replacements for common/ and runtime/ routines
[cc65] / libsrc / geos / runtime / Makefile
1 #
2 # Makefile for GEOS lib
3 # for cc65
4 #
5
6 %.o:    %.c
7         @$(CC) $(CFLAGS) $<
8         @$(AS) -g -o $@ $(AFLAGS) $(*).s
9
10 %.o:    %.s
11         @$(AS) -o $@ $(AFLAGS) $<
12
13 C_OBJS  =
14 S_OBJS  = call.o
15
16 all: $(C_OBJS) $(S_OBJS)
17
18 clean:
19         @rm -f *.~ $(S_OBJS) core
20         @rm -f $(C_OBJS:.o=.s)
21         @rm -f $(C_OBJS)