]> git.sur5r.net Git - cc65/blob - libsrc/geos/devel/Makefile
Minor comment adjustment.
[cc65] / libsrc / geos / devel / Makefile
1 #
2 # Makefile for GEOS lib
3 # for cc65
4 #
5 #
6
7 %.o:    %.s
8         @$(AS) -o $@ $(AFLAGS) $<
9
10 %.emd:  %.o ../../runtime/zeropage.o
11         @$(LD) -t module -o $@ $^
12
13 %.joy:  %.o ../../runtime/zeropage.o
14         @$(LD) -t module -o $@ $^
15
16 %.tgi:  %.o ../../runtime/zeropage.o
17         @$(LD) -t module -o $@ $^
18
19 S_OBJS  = crt0.o                \
20           extzp.o               \
21           fio_module.o          \
22           joy_stddrv.o          \
23           mainargs.o            \
24           oserror.o             \
25           oserrlist.o           \
26           randomize.o           \
27           tgi_mode_table.o
28
29 #--------------------------------------------------------------------------
30 # Drivers
31
32 EMDS = geos-vdc.emd
33
34 JOYS = geos-stdjoy.joy
35
36 TGIS = geos-tgi.tgi
37
38 all: $(S_OBJS) $(EMDS) $(JOYS) $(TGIS)
39
40 clean:
41         @$(RM) *.~ core $(S_OBJS) $(EMDS:.emd=.o) $(JOYS:.joy=.o) $(TGIS:.tgi=.o)