]> git.sur5r.net Git - cc65/blob - libsrc/cbm610/Makefile
info about c1541 in docs, lowered highest available address to $6000 due to
[cc65] / libsrc / cbm610 / 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         banking.o       \
16         break.o         \
17         cgetc.o         \
18         clrscr.o        \
19         color.o         \
20         cputc.o         \
21         crt0.o          \
22         crtc.o          \
23         kbhit.o         \
24         kirq.o          \
25         kplot.o         \
26         kscnkey.o       \
27         kudtim.o        \
28         pokesys.o       \
29         rs232.o
30
31 all:    $(OBJS)
32
33 clean:
34         @rm -f $(OBJS)
35