hgr: always forget the Makefile changes

This commit is contained in:
Vince Weaver 2020-12-08 11:24:15 -05:00
parent 0eb1d0d84f
commit c194ca0087
2 changed files with 20 additions and 10 deletions

View File

@ -104,15 +104,6 @@ LOAD: load.o
load.o: load.s
ca65 -o load.o load.s -l load.lst
###
FASTAR2: fastar2.o
ld65 -o FASTAR2 fastar2.o -C ../linker_scripts/apple2_c00.inc
fastar2.o: fastar2.s
ca65 -o fastar2.o fastar2.s -l fastar2.lst
####
QKUMBA2.BAS: qkumba_seasons.bas

View File

@ -5,11 +5,30 @@ TOKENIZE = ../asoft_basic-utils/tokenize_asoft
all: hgr.dsk
hgr.dsk: SNOW SNOW2 SNOW3
hgr.dsk: SNOW SNOW2 SNOW3 STARS FASTAR
cp empty.dsk hgr.dsk
$(DOS33) -y hgr.dsk BSAVE -a 0x0300 SNOW
$(DOS33) -y hgr.dsk BSAVE -a 0x0300 SNOW2
$(DOS33) -y hgr.dsk BSAVE -a 0x0367 SNOW3
$(DOS33) -y hgr.dsk BSAVE -a 0x0300 STARS
$(DOS33) -y hgr.dsk BSAVE -a 0x0C00 FASTAR
###
FASTAR: fastar.o
ld65 -o FASTAR fastar.o -C ../linker_scripts/apple2_c00.inc
fastar.o: fastar.s
ca65 -o fastar.o fastar.s -l fastar.lst
###
STARS: stars.o
ld65 -o STARS stars.o -C ../linker_scripts/apple2_300.inc
stars.o: stars.s
ca65 -o stars.o stars.s -l stars.lst
###