]> git.sur5r.net Git - cc65/blob - samples/Makefile
Add new sample code contributed by Greg King
[cc65] / samples / Makefile
1 #
2 # Makefile for cc65 samples
3 #
4 # This Makefile requires GNU make
5 #
6
7 # Enter the target system here
8 SYS     = c64
9
10 CRT0    = ../libsrc/$(SYS).o
11 CLIB    = ../libsrc/$(SYS).lib
12 CC      = ../src/cc65/cc65
13 CL      = ../src/cl65/cl65
14 AS      = ../src/ca65/ca65
15 LD      = ../src/ld65/ld65
16 C1541   = c1541
17
18
19 # --------------------------------------------------------------------------
20 # Generic rules
21
22 .c.o:
23         @echo $<
24         @$(CC) -Oirs -T --codesize 500 -g -t $(SYS) -I../include/ $<
25         @$(AS) $(basename $<).s
26
27 .s.o:
28         @echo $<
29         @$(AS) $(basename $<).s
30
31
32 # --------------------------------------------------------------------------
33 # Rules how to make each one of the binaries
34
35 EXELIST=ascii fire hello mousedemo nachtm plasma sieve tgidemo
36
37 .PHONY: all
38 all:    $(EXELIST)
39
40 ascii:          $(CRT0) ascii.o $(CLIB)
41         @$(LD) -t $(SYS) -m ascii.map -Ln ascii.lbl -o $@ $^
42
43 fire:           $(CRT0) fire.o $(CLIB)
44         @$(LD) -t $(SYS) -m fire.map -Ln fire.lbl -o $@ $^
45
46 hello:          $(CRT0) hello.o $(CLIB)
47         @$(LD) -t $(SYS) -m hello.map -Ln hello.lbl -o $@ $^
48
49 mousedemo:      $(CRT0) mousedemo.o $(CLIB)
50         @$(LD) -t $(SYS) -m mousedemo.map -Ln mousedemo.lbl -o $@ $^
51
52 nachtm:         $(CRT0) nachtm.o $(CLIB)
53         @$(LD) -t $(SYS) -vm -m nachtm.map -Ln nachtm.lbl -o $@ $^
54
55 plasma:         $(CRT0) plasma.o $(CLIB)
56         @$(LD) -t $(SYS) -m plasma.map -Ln nachtm.lbl -o $@ $^
57
58 sieve:          $(CRT0) sieve.o $(CLIB)
59         @$(LD) -t $(SYS) -m sieve.map -Ln sieve.lbl -o $@ $^
60
61 tgidemo:        $(CRT0) tgidemo.o $(CLIB)
62         @$(LD) -t $(SYS) -m tgidemo.map -Ln tgidemo.lbl -o $@ $^
63
64
65 # --------------------------------------------------------------------------
66 # Rule to make a disk with all samples. Needs the c1541 program that comes
67 # with the VICE emulator.
68
69 .PHONY: disk
70 disk:   samples.d64
71
72 samples.d64:    all
73         @$(C1541) -format samples,AA  d64 $@ > /dev/null
74         @for exe in $(EXELIST); do\
75             $(C1541) -attach $@ -write $$exe > /dev/null;\
76         done;\
77         for tgi in ../libsrc/$(SYS)*.tgi; do\
78             $(C1541) -attach $@ -write $$tgi > /dev/null;\
79         done;
80
81 # --------------------------------------------------------------------------
82 # Cleanup rules
83
84 .PHONY: clean
85 clean:
86         rm -f *~ *.map *.o *.s *.lbl
87
88 .PHONY: zap
89 zap:    clean
90         rm -f $(EXELIST) samples.d64
91
92
93
94