CAFLAGS = --target apple2enh --list-bytes 0 LDFLAGS = --config apple2-asm.cfg OUTDIR = ../out HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc) TARGETS = \ $(OUTDIR)/quit.system.SYS \ $(OUTDIR)/pause.system.SYS \ $(OUTDIR)/pause.setup.SYS \ $(OUTDIR)/me.first.system.SYS \ $(OUTDIR)/me.first.setup.SYS \ $(OUTDIR)/date.BIN # For timestamps MM = $(shell date "+%-m") DD = $(shell date "+%-d") YY = $(shell date "+%-y") DEFINES = -D DD=$(DD) -D MM=$(MM) -D YY=$(YY) XATTR := $(shell command -v xattr 2> /dev/null) .PHONY: clean all all: $(OUTDIR) $(TARGETS) $(OUTDIR): mkdir -p $(OUTDIR) clean: rm -f $(OUTDIR)/*.o rm -f $(OUTDIR)/*.list rm -f $(TARGETS) $(OUTDIR)/%.o: %.s $(HEADERS) ca65 $(CAFLAGS) $(DEFINES) --listing $(basename $@).list -o $@ $< $(OUTDIR)/%.setup.o: %.system.s $(HEADERS) ca65 $(CAFLAGS) $(DEFINES) -D BUILD_SETUP_FILE --listing $(basename $@).list -o $@ $< $(OUTDIR)/%.BIN $(OUTDIR)/%.SYS: $(OUTDIR)/%.o ld65 $(LDFLAGS) -o $@ $< ifdef XATTR xattr -wx prodos.AuxType '00 20' $@ endif