]> git.sur5r.net Git - cc65/blob - libsrc/geos/system/Makefile
Minor comment adjustment.
[cc65] / libsrc / geos / system / Makefile
1 #
2 # Makefile for GEOS lib
3 # for cc65
4 #
5 #
6
7 %.o:    %.s
8         @$(AS) -o $@ $(AFLAGS) $<
9
10 %.o:    %.c
11         @$(CC) $(CFLAGS) $<
12         @$(AS) -g -o $@ $(AFLAGS) $(*).s
13
14 S_OBJS  =       ctype.o                 \
15                 callroutine.o           \
16                 enterdesktop.o          \
17                 firstinit.o             \
18                 get_ostype.o            \
19                 getrandom.o             \
20                 getserialnumber.o       \
21                 initdoneio.o            \
22                 mainloop.o              \
23                 panic.o                 \
24                 tobasic.o               \
25                 setdevice.o             \
26                 sysuname.o
27
28 C_OBJS  =       systime.o
29
30 all: $(C_OBJS) $(S_OBJS)
31
32 clean:
33         @$(RM) *.~ $(C_OBJS:.o=.s) $(C_OBJS) $(S_OBJS) core