prodos-drivers/selectors/Makefile

38 lines
794 B
Makefile
Raw Normal View History

2017-11-12 04:44:15 +00:00
CAFLAGS = --target apple2enh --list-bytes 0
2019-09-23 04:34:47 +00:00
LDFLAGS = --config apple2-asm.cfg
2017-11-12 04:44:15 +00:00
2019-10-05 01:10:01 +00:00
OUTDIR = out
HEADERS = $(wildcard *.inc) $(wildcard ../inc/*.inc)
TARGETS = \
$(OUTDIR)/selector.system.SYS \
$(OUTDIR)/bye.system.SYS \
2020-12-22 05:37:48 +00:00
$(OUTDIR)/bbb.system.SYS \
2019-10-05 01:10:01 +00:00
$(OUTDIR)/buhbye.system.SYS
2017-11-12 04:44:15 +00:00
2019-10-02 05:08:21 +00:00
# For timestamps
MM = $(shell date "+%-m")
DD = $(shell date "+%-d")
YY = $(shell date "+%-y")
DEFINES = -D DD=$(DD) -D MM=$(MM) -D YY=$(YY)
2017-11-12 04:44:15 +00:00
.PHONY: clean all
2019-10-05 01:10:01 +00:00
all: $(OUTDIR) $(TARGETS)
2017-11-12 04:44:15 +00:00
2019-10-05 01:10:01 +00:00
$(OUTDIR):
mkdir -p $(OUTDIR)
2017-11-12 04:44:15 +00:00
clean:
2019-10-05 01:10:01 +00:00
rm -f $(OUTDIR)/*.o
rm -f $(OUTDIR)/*.list
2020-03-13 03:15:18 +00:00
rm -f $(TARGETS)
2017-11-12 04:44:15 +00:00
2019-10-05 01:10:01 +00:00
$(OUTDIR)/%.o: %.s $(HEADERS)
2019-10-02 05:08:21 +00:00
ca65 $(CAFLAGS) $(DEFINES) --listing $(basename $@).list -o $@ $<
2017-11-12 04:44:15 +00:00
2019-10-05 01:10:01 +00:00
$(OUTDIR)/%.SYS: $(OUTDIR)/%.o
2019-09-23 04:34:47 +00:00
ld65 $(LDFLAGS) -o $@ $<
2021-03-07 23:58:30 +00:00
command -v xattr &> /dev/null && xattr -wx prodos.AuxType '00 20' $@