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
|
|
|
|
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
@echo $<
|
2001-09-13 15:58:32 +00:00
|
|
|
@$(CC) -Oirs -T --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
|
|
|
|
|
|
|
|
|
|
|
.PHONY: all
|
2001-09-13 15:58:32 +00:00
|
|
|
all: nachtm hello sieve mousedemo
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
nachtm: $(CRT0) nachtm.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m nachtm.map -Ln nachtm.lbl -o $@ $^
|
|
|
|
|
|
|
|
hello: $(CRT0) hello.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m hello.map -Ln hello.lbl -o $@ $^
|
|
|
|
|
|
|
|
sieve: $(CRT0) sieve.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m sieve.map -Ln sieve.lbl -o $@ $^
|
|
|
|
|
2001-09-13 15:58:32 +00:00
|
|
|
mousedemo: $(CRT0) mousedemo.o $(CLIB)
|
|
|
|
@$(LD) -t $(SYS) -m mousedemo.map -Ln mousedemo.lbl -o $@ $^
|
|
|
|
|
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
|
|
|
|
$(C1541) -format samples,AA d64 $@
|
|
|
|
$(C1541) -attach $@ -write nachtm -write hello -write sieve -write mousedemo
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f *~ *.map *.o *.s *.lbl
|
|
|
|
|
|
|
|
.PHONY: zap
|
|
|
|
zap: clean
|
2001-09-13 15:58:32 +00:00
|
|
|
rm -f nachtm hello sieve mousedemo samples.d64
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|