]> git.sur5r.net Git - cc65/blob - libsrc/plus4/Makefile
Use external symbols for the CBM kernal jump table functions. This allows
[cc65] / libsrc / plus4 / 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         color.o         \
19         conio.o         \
20         cputc.o         \
21         crt0.o          \
22         kbhit.o         \
23         kernal.o        \
24         randomize.o     \
25         readjoy.o       \
26         tgi_mode_table.o
27
28 all:    $(OBJS)
29
30 clean:
31         @rm -f $(OBJS)
32