mirror of
https://github.com/mi57730/a2d.git
synced 2024-12-01 05:50:24 +00:00
44 lines
992 B
Makefile
44 lines
992 B
Makefile
|
|
CC65 = ~/dev/cc65/bin
|
|
CAFLAGS = --target apple2enh --list-bytes 0
|
|
CCFLAGS = --config apple2-asm.cfg
|
|
|
|
OUTDIR = out
|
|
|
|
HEADERS = $(wildcard ../*.inc) $(wildcard ../inc/*.inc) $(wildcard *.inc)
|
|
|
|
DAS = calculator show.text.file date puzzle sort.directory \
|
|
show.image.file this.apple eyes
|
|
|
|
TARGETS = $(patsubst %,$(OUTDIR)/%.$$F1,$(DAS))
|
|
|
|
.PHONY: clean all
|
|
all: $(OUTDIR) $(TARGETS)
|
|
|
|
$(OUTDIR):
|
|
mkdir -p $(OUTDIR)
|
|
|
|
clean:
|
|
rm -f $(OUTDIR)/*.o
|
|
rm -f $(OUTDIR)/*.list
|
|
rm -f $(OUTDIR)/*.built
|
|
rm -f $(OUTDIR)/*.\$$F1
|
|
rm -f $(OUTDIR)/*.sys
|
|
|
|
$(OUTDIR)/%.o: %.s $(HEADERS)
|
|
$(CC65)/ca65 $(CAFLAGS) --listing $(basename $@).list -o $@ $<
|
|
|
|
# Built DeskTop segments
|
|
$(OUTDIR)/%.built: $(OUTDIR)/%.o asm.cfg
|
|
$(CC65)/ld65 $(CCFLAGS) -o '$@' $<
|
|
|
|
# Desk Accessories .$F1
|
|
$(OUTDIR)/%.$$F1: $(OUTDIR)/%.o
|
|
$(CC65)/ld65 $(CCFLAGS) -o '$@' $<
|
|
xattr -wx prodos.AuxType '40 06' '$@'
|
|
|
|
# System Files .SYS
|
|
$(OUTDIR)/%.SYS: $(OUTDIR)/%.o
|
|
$(CC65)/ld65 $(CCFLAGS) -o '$@' $<
|
|
xattr -wx prodos.AuxType '00 20' $@
|