prodos-drivers/Makefile

31 lines
641 B
Makefile
Raw Normal View History

2017-11-24 23:47:28 +00:00
CC65 = ~/dev/cc65/bin
CAFLAGS = --target apple2enh --list-bytes 0
CCFLAGS = --config apple2-asm.cfg
TARGETS = prodos.mod.BIN ns.clock.system.SYS cricket.system.SYS \
2017-12-08 04:49:53 +00:00
test.BIN \
date.BIN set.time.BIN set.date.BIN
2017-11-24 23:47:28 +00:00
2017-12-02 04:17:14 +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-24 23:47:28 +00:00
.PHONY: clean all
all: $(TARGETS)
HEADERS = $(wildcard *.inc)
clean:
rm -f *.o
rm -f $(TARGETS)
%.o: %.s $(HEADERS)
2017-12-02 04:17:14 +00:00
$(CC65)/ca65 $(CAFLAGS) $(DEFINES) --listing $(basename $@).list -o $@ $<
2017-11-24 23:47:28 +00:00
%.BIN %.SYS: %.o
2017-11-24 23:47:28 +00:00
$(CC65)/ld65 $(CCFLAGS) -o $@ $<
2018-04-11 03:38:45 +00:00
xattr -wx prodos.AuxType '00 20' $@