]> git.sur5r.net Git - cc65/blob - libsrc/plus4/Makefile
Fixed newline bug in cvline
[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         readjoy.o
24
25 all:    $(OBJS)
26
27 clean:
28         @rm -f $(OBJS) 
29