ootw: more Makefiles

This commit is contained in:
Vince Weaver 2021-03-29 18:45:46 -04:00
parent 68a805d0c3
commit a93bf9114b
9 changed files with 60 additions and 0 deletions

View File

@ -48,6 +48,11 @@ ootw_c1.o: ootw_c1.s \
graphics/l1_slug_end/ootw_slug_end.inc
ca65 -o ootw_c1.o ootw_c1.s -l ootw_c1.lst
#####
graphics/l1_pool/ootw_pool.inc:
cd graphics && make
#####

View File

@ -46,6 +46,10 @@ ootw_c2.o: ootw_c2.s \
graphics/l2_laser/ootw_c2_laser.inc
ca65 -o ootw_c2.o ootw_c2.s -l ootw_c2.lst
#####
graphics/l2_cage/ootw_c2_cage.inc:
cd graphics && make
#####

View File

@ -0,0 +1,14 @@
all:
cd l2_cage && make
cd l2_city && make
cd l2_intro && make
cd l2_jail && make
cd l2_laser && make
clean:
cd l2_cage && make clean
cd l2_city && make clean
cd l2_intro && make clean
cd l2_jail && make clean
cd l2_laser && make clean

View File

@ -26,6 +26,10 @@ ootw_c3.o: ootw_c3.s \
graphics/l3_vent/ootw_c3_vent.inc
ca65 -o ootw_c3.o ootw_c3.s -l ootw_c3.lst
#####
graphics/l3_vent/ootw_c3_vent.inc:
cd graphics && make
#####

View File

@ -0,0 +1,6 @@
all:
cd l3_vent && make
clean:
cd l3_vent && make clean

View File

@ -40,7 +40,15 @@ ootw_c4.o: ootw_c4.s \
###
graphics/l4_city/ootw_c4_city.inc:
cd graphics && make
###
clean:
rm -f *~ *.o *.lst *.lz4 OOTW_C4
distclean:
cd graphics && make clean

View File

@ -0,0 +1,7 @@
all:
cd l4_city && make
clean:
rm -f *~
cd l4_city && make clean

View File

@ -36,6 +36,11 @@ ootw_c5.o: ootw_c5.s \
###
graphics/l5_cave/ootw_c5_cave.inc:
cd graphics && make
###
clean:
rm -f *~ *.o *.lst OOTW_C5

View File

@ -0,0 +1,7 @@
all:
cd l5_cave && make
clean:
rm -f *~
cd l5_cave && make clean