mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-01 10:05:56 +00:00
32 lines
608 B
Makefile
32 lines
608 B
Makefile
|
|
CC65 = ~/dev/cc65/bin
|
|
CAFLAGS = --target apple2enh --list-bytes 0
|
|
CCFLAGS = --config apple2-asm.cfg
|
|
|
|
OUTDIR = out
|
|
|
|
HEADERS = $(wildcard ../*.inc)
|
|
|
|
TARGETS = $(OUTDIR)/desktop.system.SYS
|
|
|
|
.PHONY: clean all
|
|
all: $(OUTDIR) $(TARGETS)
|
|
|
|
$(OUTDIR):
|
|
mkdir -p $(OUTDIR)
|
|
|
|
clean:
|
|
rm -f $(OUTDIR)/*.o
|
|
rm -f $(OUTDIR)/*.list
|
|
rm -f $(OUTDIR)/*.inc
|
|
rm -f $(OUTDIR)/*.built
|
|
rm -f $(OUTDIR)/*.SYS
|
|
|
|
$(OUTDIR)/%.o: %.s $(HEADERS)
|
|
$(CC65)/ca65 $(CAFLAGS) --listing $(basename $@).list -o $@ $<
|
|
|
|
# System Files .SYS
|
|
$(OUTDIR)/%.SYS: $(OUTDIR)/%.o
|
|
$(CC65)/ld65 $(CCFLAGS) -o '$@' $<
|
|
xattr -wx prodos.AuxType '00 20' $@
|