]> git.sur5r.net Git - cc65/blob - libsrc/c128/Makefile
Use external symbols for the CBM kernal jump table functions. This allows
[cc65] / libsrc / c128 / Makefile
1 #
2 # makefile for CC65 runtime library
3 #
4
5 .SUFFIXES: .o .s .c
6
7 %.o:    %.c
8         @$(CC) $(CFLAGS) $<
9         @$(AS) -o $@ $(AFLAGS) $(*).s
10
11 %.o:    %.s
12         @$(AS) -g -o $@ $(AFLAGS) $<
13
14 OBJS =  _scrsize.o      \
15         break.o         \
16         cgetc.o         \
17         clrscr.o        \
18         conio.o         \
19         crt0.o          \
20         color.o         \
21         cputc.o         \
22         kbhit.o         \
23         kernal.o        \
24         mouse.o         \
25         randomize.o     \
26         readjoy.o       \
27         rs232.o         \
28         tgi_mode_table.o
29
30 all:    $(OBJS)
31
32 clean:
33         @rm -f $(OBJS)
34