2020-08-26 19:28:19 +00:00
|
|
|
|
2022-02-05 15:55:57 +00:00
|
|
|
# Run 'make SYS=<target>'; or, set a SYS env.
|
|
|
|
# var. to build for another target system.
|
|
|
|
SYS ?= pce
|
|
|
|
|
2020-08-26 19:28:19 +00:00
|
|
|
# Just the usual way to find out if we're
|
|
|
|
# using cmd.exe to execute make rules.
|
|
|
|
ifneq ($(shell echo),)
|
|
|
|
CMD_EXE = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CMD_EXE
|
|
|
|
NULLDEV = nul:
|
|
|
|
DEL = -del /f
|
|
|
|
RMDIR = rmdir /s /q
|
|
|
|
else
|
|
|
|
NULLDEV = /dev/null
|
|
|
|
DEL = $(RM)
|
|
|
|
RMDIR = $(RM) -r
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef CC65_HOME
|
|
|
|
AS = $(CC65_HOME)/bin/ca65
|
|
|
|
CC = $(CC65_HOME)/bin/cc65
|
|
|
|
CL = $(CC65_HOME)/bin/cl65
|
|
|
|
LD = $(CC65_HOME)/bin/ld65
|
|
|
|
else
|
2022-01-30 01:07:50 +00:00
|
|
|
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)
|
2020-08-26 19:28:19 +00:00
|
|
|
endif
|
|
|
|
|
2015-11-02 22:04:46 +00:00
|
|
|
.PHONY: all clean test
|
2015-07-12 14:40:52 +00:00
|
|
|
|
2018-02-23 21:06:49 +00:00
|
|
|
# Size of cartridge to generate.
|
|
|
|
# Possible values:
|
|
|
|
# 8K = 0x2000
|
|
|
|
# 16K = 0x4000
|
|
|
|
# 32K = 0x8000
|
|
|
|
CARTSIZE := 0x2000
|
|
|
|
|
|
|
|
ifeq (${CARTSIZE},0x8000)
|
|
|
|
COUNT := 3
|
|
|
|
else
|
|
|
|
COUNT := 1
|
|
|
|
endif
|
|
|
|
|
2022-01-30 18:50:13 +00:00
|
|
|
EXELIST_pce = \
|
|
|
|
conio.bin
|
|
|
|
|
|
|
|
ifneq ($(EXELIST_$(SYS)),)
|
|
|
|
testcode: $(EXELIST_$(SYS))
|
|
|
|
else
|
|
|
|
testcode: notavailable
|
|
|
|
endif
|
|
|
|
|
|
|
|
# empty target used to skip systems that will not work with any program in this dir
|
|
|
|
notavailable:
|
|
|
|
ifeq ($(MAKELEVEL),0)
|
|
|
|
@echo "info: pce tests not available for" $(SYS)
|
|
|
|
else
|
|
|
|
# suppress the "nothing to be done for 'testcode' message
|
|
|
|
@echo > $(NULLDEV)
|
|
|
|
endif
|
2021-09-28 20:37:34 +00:00
|
|
|
|
|
|
|
%.bin: %.c
|
|
|
|
$(CL) -t pce $< -Wl -D__CARTSIZE__=${CARTSIZE} -m $*.map -o $@
|
|
|
|
@echo "use 'make conio.pce' to produce a .pce file using dd"
|
2015-07-12 14:40:52 +00:00
|
|
|
|
2018-02-23 21:06:49 +00:00
|
|
|
%.pce: %.bin
|
|
|
|
dd if=$< bs=8K skip=${COUNT} > $@
|
|
|
|
dd if=$< bs=8K count=${COUNT} >> $@
|
|
|
|
|
2015-07-12 14:40:52 +00:00
|
|
|
clean:
|
2022-11-05 18:41:02 +00:00
|
|
|
@$(DEL) conio.o 2>$(NULLDEV)
|
|
|
|
@$(DEL) conio.pce 2>$(NULLDEV)
|
|
|
|
@$(DEL) conio.bin 2>$(NULLDEV)
|
|
|
|
@$(DEL) conio.map 2>$(NULLDEV)
|