mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-03-11 21:37:37 +00:00
33 lines
532 B
Makefile
33 lines
532 B
Makefile
include ../../../Makefile.inc
|
|
|
|
LINKER_SCRIPTS = ../../../linker_scripts
|
|
|
|
all: WBOOT2 WBOOT3
|
|
|
|
###
|
|
|
|
WBOOT2: wrong_boot2.o
|
|
ld65 -o WBOOT2 wrong_boot2.o -C $(LINKER_SCRIPTS)/apple2_800.inc
|
|
|
|
wrong_boot2.o: wrong_boot2.s
|
|
ca65 -o wrong_boot2.o wrong_boot2.s -l wrong_boot2.lst
|
|
|
|
###
|
|
|
|
WBOOT3: wrong_boot3.o
|
|
ld65 -o WBOOT3 wrong_boot3.o -C $(LINKER_SCRIPTS)/apple2_800.inc
|
|
|
|
wrong_boot3.o: wrong_boot3.s
|
|
ca65 -o wrong_boot3.o wrong_boot3.s -l wrong_boot3.lst
|
|
|
|
|
|
###
|
|
|
|
distclean:
|
|
make clean
|
|
|
|
###
|
|
|
|
clean:
|
|
rm -f *~ *.o *.lst WBOOT2 WBOOT3
|