2000-05-28 13:40:48 +00:00
|
|
|
#
|
|
|
|
# Makefile for cc65 samples
|
|
|
|
#
|
2000-06-06 17:45:06 +00:00
|
|
|
# This Makefile requires GNU make
|
|
|
|
#
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
# Enter the target system here
|
|
|
|
SYS = c64
|
|
|
|
|
2000-06-14 21:14:47 +00:00
|
|
|
CRT0 = ../libsrc/$(SYS).o
|
|
|
|
CLIB = ../libsrc/$(SYS).lib
|
|
|
|
CC = ../src/cc65/cc65
|
|
|
|
CL = ../src/cl65/cl65
|
|
|
|
AS = ../src/ca65/ca65
|
|
|
|
LD = ../src/ld65/ld65
|
2000-05-28 13:40:48 +00:00
|
|
|
C1541 = c1541
|
|
|
|
|
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Generic rules
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.c.o:
|
|
|
|
@echo $<
|
2003-08-20 11:48:49 +00:00
|
|
|
@$(CC) -Oirs -T --forget-inc-paths --codesize 500 -g -t $(SYS) -I../include/ $<
|
2000-06-14 21:14:47 +00:00
|
|
|
@$(AS) $(basename $<).s
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.s.o:
|
|
|
|
@echo $<
|
2000-06-14 21:14:47 +00:00
|
|
|
@$(AS) $(basename $<).s
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Rules how to make each one of the binaries
|
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
EXELIST=ascii fire gunzip65 hello mousedemo nachtm plasma sieve tgidemo
|
2001-09-26 17:55:09 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.PHONY: all
|
2001-09-26 17:55:09 +00:00
|
|
|
all: $(EXELIST)
|
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
ascii: $(CRT0) ascii.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2003-02-16 14:43:00 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
fire: $(CRT0) fire.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2002-11-25 14:20:33 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
gunzip65: $(CRT0) gunzip65.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
|
|
|
|
|
|
|
hello: $(CRT0) hello.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2001-09-26 17:55:09 +00:00
|
|
|
|
2004-10-08 20:10:58 +00:00
|
|
|
mandelbrot: $(CRT0) mandelbrot.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
mousedemo: $(CRT0) mousedemo.o $(CLIB)
|
2003-10-06 10:54:46 +00:00
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
nachtm: $(CRT0) nachtm.o $(CLIB)
|
2004-10-08 20:10:58 +00:00
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -Ln $(basename $@).lbl -o $@ $^
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
plasma: $(CRT0) plasma.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
sieve: $(CRT0) sieve.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2003-10-06 10:54:46 +00:00
|
|
|
tgidemo: $(CRT0) tgidemo.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m $(basename $@).map -o $@ $^
|
2002-10-03 17:36:18 +00:00
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Rule to make a disk with all samples. Needs the c1541 program that comes
|
|
|
|
# with the VICE emulator.
|
2001-09-13 15:58:32 +00:00
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.PHONY: disk
|
2001-09-13 15:58:32 +00:00
|
|
|
disk: samples.d64
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-13 15:58:32 +00:00
|
|
|
samples.d64: all
|
2002-11-25 14:20:33 +00:00
|
|
|
@$(C1541) -format samples,AA d64 $@ > /dev/null
|
|
|
|
@for exe in $(EXELIST); do\
|
|
|
|
$(C1541) -attach $@ -write $$exe > /dev/null;\
|
|
|
|
done;\
|
2002-12-13 00:24:22 +00:00
|
|
|
for tgi in ../libsrc/$(SYS)*.tgi; do\
|
2002-11-25 14:20:33 +00:00
|
|
|
$(C1541) -attach $@ -write $$tgi > /dev/null;\
|
|
|
|
done;
|
2001-09-26 17:55:09 +00:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Cleanup rules
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2003-08-20 11:51:44 +00:00
|
|
|
$(RM) *~ *.map *.o *.s *.lbl
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.PHONY: zap
|
|
|
|
zap: clean
|
2003-08-20 11:51:44 +00:00
|
|
|
$(RM) $(EXELIST) samples.d64
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|