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
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
# Run 'make samples SYS=<target>' to build for another target system
|
2016-06-01 18:59:33 +00:00
|
|
|
SYS = c64
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-06-01 20:14:30 +00:00
|
|
|
ifneq ($(shell echo),)
|
|
|
|
CMD_EXE = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CMD_EXE
|
|
|
|
NULLDEV = nul:
|
|
|
|
DEL = -del /f
|
2016-06-18 23:22:59 +00:00
|
|
|
RMDIR = rmdir /s /q
|
2016-06-01 20:14:30 +00:00
|
|
|
else
|
|
|
|
NULLDEV = /dev/null
|
|
|
|
DEL = $(RM)
|
2016-06-18 23:22:59 +00:00
|
|
|
RMDIR = $(RM) -r
|
2016-06-01 20:14:30 +00:00
|
|
|
endif
|
|
|
|
|
2009-09-28 19:22:02 +00:00
|
|
|
ifdef CC65_HOME
|
2016-06-18 23:22:59 +00:00
|
|
|
AS = $(CC65_HOME)/bin/ca65
|
|
|
|
CC = $(CC65_HOME)/bin/cc65
|
|
|
|
CL = $(CC65_HOME)/bin/cl65
|
|
|
|
LD = $(CC65_HOME)/bin/ld65
|
|
|
|
else
|
|
|
|
AS := $(if $(wildcard ../bin/ca65*),../bin/ca65,ca65)
|
|
|
|
CC := $(if $(wildcard ../bin/cc65*),../bin/cc65,cc65)
|
|
|
|
CL := $(if $(wildcard ../bin/cl65*),../bin/cl65,cl65)
|
|
|
|
LD := $(if $(wildcard ../bin/ld65*),../bin/ld65,ld65)
|
2009-09-28 19:22:02 +00:00
|
|
|
endif
|
2016-05-30 15:42:01 +00:00
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
TARGET_PATH := $(shell $(CL) --print-target-path)
|
2004-11-07 11:33:30 +00:00
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
EMD := $(wildcard $(TARGET_PATH)/$(SYS)/drv/emd/*)
|
|
|
|
MOU := $(wildcard $(TARGET_PATH)/$(SYS)/drv/mou/*)
|
|
|
|
TGI := $(wildcard $(TARGET_PATH)/$(SYS)/drv/tgi/*)
|
2004-11-07 11:33:30 +00:00
|
|
|
|
|
|
|
# This one comes with VICE
|
2016-06-01 21:48:09 +00:00
|
|
|
C1541 ?= c1541
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
# For this one see http://applecommander.sourceforge.net/
|
|
|
|
AC ?= ac.jar
|
|
|
|
|
|
|
|
# For this one see http://www.horus.com/~hias/atari/
|
|
|
|
DIR2ATR ?= dir2atr
|
|
|
|
|
|
|
|
DISK_c64 = samples.d64
|
|
|
|
DISK_apple2 = samples.dsk
|
|
|
|
DISK_apple2enh = samples.dsk
|
|
|
|
DISK_atari = samples.atr
|
|
|
|
DISK_atarixl = samples.atr
|
|
|
|
|
2014-03-22 11:04:16 +00:00
|
|
|
# --------------------------------------------------------------------------
|
2015-07-16 19:31:35 +00:00
|
|
|
# System-dependent settings
|
2014-03-22 11:04:16 +00:00
|
|
|
|
|
|
|
# The Apple machines need the start address adjusted when using TGI
|
2016-06-18 23:22:59 +00:00
|
|
|
LDFLAGS_mandelbrot_apple2 = --start-addr 0x4000
|
2014-03-22 11:04:16 +00:00
|
|
|
LDFLAGS_mandelbrot_apple2enh = --start-addr 0x4000
|
2016-06-18 23:22:59 +00:00
|
|
|
LDFLAGS_tgidemo_apple2 = --start-addr 0x4000
|
|
|
|
LDFLAGS_tgidemo_apple2enh = --start-addr 0x4000
|
2014-03-22 11:04:16 +00:00
|
|
|
|
|
|
|
# The Apple ][ needs the start address adjusted for the mousetest
|
|
|
|
LDFLAGS_mousetest_apple2 = --start-addr 0x4000
|
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
# The Apple machines need the end address adjusted for large programs
|
|
|
|
LDFLAGS_gunzip65_apple2 = -D __HIMEM__=0xBF00
|
|
|
|
LDFLAGS_gunzip65_apple2enh = -D __HIMEM__=0xBF00
|
2014-03-22 11:04:16 +00:00
|
|
|
|
|
|
|
# The atari target needs to reserve some memory when using TGI
|
|
|
|
LDFLAGS_mandelbrot_atari = -D __RESERVED_MEMORY__=0x2000
|
2016-06-18 23:22:59 +00:00
|
|
|
LDFLAGS_tgidemo_atari = -D __RESERVED_MEMORY__=0x2000
|
|
|
|
|
|
|
|
# The atarixl target needs the start address adjusted when using TGI
|
|
|
|
LDFLAGS_mandelbrot_atarixl = --start-addr 0x4000
|
|
|
|
LDFLAGS_tgidemo_atarixl = --start-addr 0x4000
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Generic rules
|
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
.PHONY: all mostlyclean clean install zip samples disk
|
2016-06-01 19:08:47 +00:00
|
|
|
|
2013-06-27 14:01:47 +00:00
|
|
|
%: %.c
|
|
|
|
%: %.s
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.c.o:
|
2016-06-01 21:00:37 +00:00
|
|
|
$(CC) $(CFLAGS) -Oirs --codesize 500 -T -g -t $(SYS) $<
|
|
|
|
$(AS) $(<:.c=.s)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
.s.o:
|
2016-06-01 21:00:37 +00:00
|
|
|
$(AS) $(AFLAGS) -t $(SYS) $<
|
2009-09-28 19:22:02 +00:00
|
|
|
|
2014-03-22 11:04:16 +00:00
|
|
|
.PRECIOUS: %.o
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2014-03-22 11:04:16 +00:00
|
|
|
.o:
|
2016-06-18 23:22:59 +00:00
|
|
|
$(LD) $(LDFLAGS_$(@F)_$(SYS)) -o $@ -t $(SYS) -m $@.map $^ $(SYS).lib
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
# --------------------------------------------------------------------------
|
2016-06-18 23:22:59 +00:00
|
|
|
# List of executables
|
|
|
|
|
|
|
|
EXELIST_c64 = \
|
|
|
|
ascii \
|
|
|
|
enumdevdir \
|
|
|
|
fire \
|
|
|
|
gunzip65 \
|
|
|
|
hello \
|
|
|
|
mandelbrot \
|
|
|
|
mousetest \
|
|
|
|
multdemo \
|
|
|
|
nachtm \
|
|
|
|
ovrldemo \
|
|
|
|
plasma \
|
|
|
|
sieve \
|
|
|
|
tgidemo
|
|
|
|
|
|
|
|
EXELIST_apple2 = \
|
|
|
|
ascii \
|
|
|
|
diodemo \
|
|
|
|
enumdevdir \
|
|
|
|
gunzip65 \
|
|
|
|
hello \
|
|
|
|
mandelbrot \
|
|
|
|
mousetest \
|
|
|
|
multdemo \
|
|
|
|
ovrldemo \
|
|
|
|
sieve \
|
|
|
|
tgidemo
|
|
|
|
|
|
|
|
EXELIST_apple2enh = $(EXELIST_apple2)
|
|
|
|
|
|
|
|
EXELIST_atari = \
|
|
|
|
ascii \
|
|
|
|
gunzip65 \
|
|
|
|
hello \
|
|
|
|
mandelbrot \
|
|
|
|
mousetest \
|
|
|
|
multdemo \
|
|
|
|
ovrldemo \
|
|
|
|
sieve \
|
|
|
|
tgidemo
|
|
|
|
|
|
|
|
EXELIST_atarixl = $(EXELIST_atari)
|
2001-09-26 17:55:09 +00:00
|
|
|
|
2005-03-31 07:28:14 +00:00
|
|
|
# --------------------------------------------------------------------------
|
2016-06-18 23:22:59 +00:00
|
|
|
# Rules to make the binaries and the disk
|
2001-09-26 17:55:09 +00:00
|
|
|
|
2016-05-30 15:42:01 +00:00
|
|
|
all:
|
|
|
|
|
2016-06-18 23:22:59 +00:00
|
|
|
samples: $(EXELIST_$(SYS))
|
|
|
|
|
|
|
|
disk: $(DISK_$(SYS))
|
2001-09-26 17:55:09 +00:00
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
2015-07-16 19:31:35 +00:00
|
|
|
# Overlay rules. Overlays need special ld65 configuration files. Also, the
|
|
|
|
# overlay file-names are shortenned to fit the Atari's 8.3-character limit.
|
|
|
|
|
2016-06-01 18:59:33 +00:00
|
|
|
multdemo: multidemo.o
|
2016-06-18 23:22:59 +00:00
|
|
|
$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(SYS).lib
|
2015-07-16 19:31:35 +00:00
|
|
|
|
2016-06-01 18:59:33 +00:00
|
|
|
ovrldemo: overlaydemo.o
|
2016-06-18 23:22:59 +00:00
|
|
|
$(LD) -o $@ -C $(SYS)-overlay.cfg -m $@.map $^ $(SYS).lib
|
2015-07-16 19:31:35 +00:00
|
|
|
|
2016-06-02 18:49:10 +00:00
|
|
|
OVERLAYLIST := $(foreach I,1 2 3,multdemo.$I ovrldemo.$I)
|
|
|
|
|
2015-07-16 19:31:35 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Rule to make a CBM disk with all samples. Needs the c1541 program that comes
|
2001-09-26 17:55:09 +00:00
|
|
|
# with the VICE emulator.
|
2001-09-13 15:58:32 +00:00
|
|
|
|
2016-06-01 21:45:27 +00:00
|
|
|
define D64_WRITE_recipe
|
|
|
|
|
|
|
|
$(C1541) -attach $@ -write $(file) $(notdir $(file)) >$(NULLDEV)
|
|
|
|
|
|
|
|
endef # D64_WRITE_recipe
|
|
|
|
|
2016-06-01 18:59:33 +00:00
|
|
|
samples.d64: samples
|
2016-06-01 20:14:30 +00:00
|
|
|
@$(C1541) -format samples,AA d64 $@ >$(NULLDEV)
|
2016-06-18 23:22:59 +00:00
|
|
|
$(foreach file,$(EXELIST_$(SYS)),$(D64_WRITE_recipe))
|
2016-06-02 18:49:10 +00:00
|
|
|
$(foreach file,$(OVERLAYLIST),$(D64_WRITE_recipe))
|
2016-06-18 23:22:59 +00:00
|
|
|
$(foreach file,$(EMD) $(MOU) $(TGI),$(D64_WRITE_recipe))
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Rule to make an Apple II disk with all samples. Needs the Apple Commander
|
|
|
|
# program available at http://applecommander.sourceforge.net/ and a template
|
|
|
|
# disk named 'prodos.dsk'.
|
|
|
|
|
|
|
|
define DSK_WRITE_BIN_recipe
|
|
|
|
|
|
|
|
$(if $(findstring BF00,$(LDFLAGS_$(notdir $(file))_$(SYS))), \
|
|
|
|
java -jar $(AC) -p $@ $(notdir $(file)).system sys <$(TARGET_PATH)/$(SYS)/util/loader.system)
|
|
|
|
java -jar $(AC) -cc65 $@ $(notdir $(file)) bin <$(file)
|
|
|
|
|
|
|
|
endef # DSK_WRITE_BIN_recipe
|
|
|
|
|
|
|
|
define DSK_WRITE_REL_recipe
|
|
|
|
|
|
|
|
java -jar $(AC) -p $@ $(notdir $(file)) rel 0 <$(file)
|
|
|
|
|
|
|
|
endef # DSK_WRITE_REL_recipe
|
|
|
|
|
|
|
|
samples.dsk: samples
|
|
|
|
cp prodos.dsk $@
|
|
|
|
$(foreach file,$(EXELIST_$(SYS)),$(DSK_WRITE_BIN_recipe))
|
|
|
|
$(foreach file,$(OVERLAYLIST),$(DSK_WRITE_REL_recipe))
|
|
|
|
$(foreach file,$(EMD) $(MOU) $(TGI),$(DSK_WRITE_REL_recipe))
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Rule to make an Atari disk with all samples. Needs the dir2atr program
|
|
|
|
# available at http://www.horus.com/~hias/atari/ and the MyDos4534 variant
|
|
|
|
# of dos.sys and dup.sys.
|
|
|
|
|
|
|
|
define ATR_WRITE_recipe
|
|
|
|
|
|
|
|
cp $(file) atr/$(notdir $(file))
|
|
|
|
|
|
|
|
endef # ATR_WRITE_recipe
|
|
|
|
|
|
|
|
samples.atr: samples
|
|
|
|
@mkdir atr
|
|
|
|
cp dos.sys atr/dos.sys
|
|
|
|
cp dup.sys atr/dup.sys
|
|
|
|
@$(foreach file,$(EXELIST_$(SYS)),$(ATR_WRITE_recipe))
|
|
|
|
@$(foreach file,$(OVERLAYLIST),$(ATR_WRITE_recipe))
|
|
|
|
@$(foreach file,$(EMD) $(MOU) $(TGI),$(ATR_WRITE_recipe))
|
|
|
|
$(DIR2ATR) -d -b MyDos4534 3200 $@ atr
|
|
|
|
@$(RMDIR) atr
|
2001-09-26 17:55:09 +00:00
|
|
|
|
2016-05-30 15:42:01 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Installation rules
|
|
|
|
|
|
|
|
INSTALL = install
|
|
|
|
samplesdir = $(prefix)/share/cc65
|
2016-06-01 19:08:47 +00:00
|
|
|
|
2016-05-30 15:42:01 +00:00
|
|
|
install:
|
|
|
|
$(if $(prefix),,$(error variable `prefix' must be set))
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(samplesdir)
|
|
|
|
$(INSTALL) -d $(DESTDIR)$(samplesdir)/geos
|
|
|
|
$(INSTALL) -d $$(DESTDIR)$(samplesdir)/tutorial
|
|
|
|
$(INSTALL) -m0644 *.* $(DESTDIR)$(samplesdir)
|
|
|
|
$(INSTALL) -m0644 README $(DESTDIR)$(samplesdir)
|
|
|
|
$(INSTALL) -m0644 Makefile $(DESTDIR)$(samplesdir)
|
|
|
|
$(INSTALL) -m0644 geos/*.* $(DESTDIR)$(samplesdir)/geos
|
|
|
|
$(INSTALL) -m0644 tutorial/*.* $(DESTDIR)$(samplesdir)/tutorial
|
|
|
|
|
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# Packaging rules
|
|
|
|
|
|
|
|
zip:
|
|
|
|
@cd .. && zip -r cc65 samples/
|
|
|
|
|
2001-09-26 17:55:09 +00:00
|
|
|
# --------------------------------------------------------------------------
|
2015-07-16 19:31:35 +00:00
|
|
|
# Clean-up rules
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-05-30 15:42:01 +00:00
|
|
|
mostlyclean:
|
2016-06-01 21:04:46 +00:00
|
|
|
@$(DEL) *.map *.o *.s 2>$(NULLDEV)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2016-06-01 20:50:42 +00:00
|
|
|
clean: mostlyclean
|
2016-06-18 23:22:59 +00:00
|
|
|
@$(DEL) $(EXELIST_$(SYS)) $(DISK_$(SYS)) 2>$(NULLDEV)
|
2016-06-01 20:14:30 +00:00
|
|
|
@$(DEL) multdemo.? ovrldemo.? 2>$(NULLDEV)
|