diff --git a/games/ootw/ootw_c1/Makefile b/games/ootw/ootw_c1/Makefile index 2835f8aa..bcc3e651 100644 --- a/games/ootw/ootw_c1/Makefile +++ b/games/ootw/ootw_c1/Makefile @@ -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 + ##### diff --git a/games/ootw/ootw_c2/Makefile b/games/ootw/ootw_c2/Makefile index 8ccabb88..c5e56769 100644 --- a/games/ootw/ootw_c2/Makefile +++ b/games/ootw/ootw_c2/Makefile @@ -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 + ##### diff --git a/games/ootw/ootw_c2/graphics/Makefile b/games/ootw/ootw_c2/graphics/Makefile new file mode 100644 index 00000000..82728019 --- /dev/null +++ b/games/ootw/ootw_c2/graphics/Makefile @@ -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 + diff --git a/games/ootw/ootw_c3/Makefile b/games/ootw/ootw_c3/Makefile index f05b2e7e..9e8f3f18 100644 --- a/games/ootw/ootw_c3/Makefile +++ b/games/ootw/ootw_c3/Makefile @@ -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 ##### diff --git a/games/ootw/ootw_c3/graphics/Makefile b/games/ootw/ootw_c3/graphics/Makefile new file mode 100644 index 00000000..83d623bd --- /dev/null +++ b/games/ootw/ootw_c3/graphics/Makefile @@ -0,0 +1,6 @@ +all: + cd l3_vent && make + +clean: + cd l3_vent && make clean + diff --git a/games/ootw/ootw_c4/Makefile b/games/ootw/ootw_c4/Makefile index 88f3aede..bb5f3571 100644 --- a/games/ootw/ootw_c4/Makefile +++ b/games/ootw/ootw_c4/Makefile @@ -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 diff --git a/games/ootw/ootw_c4/graphics/Makefile b/games/ootw/ootw_c4/graphics/Makefile new file mode 100644 index 00000000..28dc0d26 --- /dev/null +++ b/games/ootw/ootw_c4/graphics/Makefile @@ -0,0 +1,7 @@ +all: + cd l4_city && make + +clean: + rm -f *~ + cd l4_city && make clean + diff --git a/games/ootw/ootw_c5/Makefile b/games/ootw/ootw_c5/Makefile index 28fb705f..c2e60937 100644 --- a/games/ootw/ootw_c5/Makefile +++ b/games/ootw/ootw_c5/Makefile @@ -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 diff --git a/games/ootw/ootw_c5/graphics/Makefile b/games/ootw/ootw_c5/graphics/Makefile new file mode 100644 index 00000000..9515145d --- /dev/null +++ b/games/ootw/ootw_c5/graphics/Makefile @@ -0,0 +1,7 @@ +all: + cd l5_cave && make + +clean: + rm -f *~ + cd l5_cave && make clean +