Add forgotten top-level Makefile entries
authorNick Downing <nick@ndcode.org>
Wed, 29 Jun 2022 08:27:57 +0000 (18:27 +1000)
committerNick Downing <nick@ndcode.org>
Wed, 29 Jun 2022 08:48:13 +0000 (18:48 +1000)
Makefile

index 8fad249..0443475 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,13 @@
 all: \
 asxv5pxx \
 dos33fsprogs \
-disasm \
 emu_65c02 \
+galaxian \
 linapple-pie \
 loader \
 orig \
 shape \
+star_blazer \
 util \
 test
 
@@ -15,10 +16,6 @@ test
 asxv5pxx:
        ${MAKE} ${MAKEFLAGS} -C asxv5pxx/asxmak/linux/build as6500 aslink
 
-.PHONY: disasm
-disasm: asxv5pxx loader shape
-       ${MAKE} ${MAKEFLAGS} -C disasm
-
 .PHONY: dos33fsprogs
 dos33fsprogs:
        ${MAKE} ${MAKEFLAGS} -C dos33fsprogs/utils/dos33fs-utils dos33 mkdos33fs
@@ -27,6 +24,10 @@ dos33fsprogs:
 emu_65c02: asxv5pxx
        ${MAKE} ${MAKEFLAGS} -C emu_65c02
 
+.PHONY: galaxian
+galaxian: asxv5pxx loader
+       ${MAKE} ${MAKEFLAGS} -C galaxian
+
 .PHONY: linapple-pie
 linapple-pie:
        ${MAKE} ${MAKEFLAGS} -C linapple-pie/src
@@ -43,6 +44,10 @@ orig:
 shape: loader
        ${MAKE} ${MAKEFLAGS} -C shape
 
+.PHONY: star_blazer
+star_blazer: asxv5pxx loader shape
+       ${MAKE} ${MAKEFLAGS} -C star_blazer
+
 .PHONY: util
 util: dos33fsprogs linapple-pie orig
        ${MAKE} ${MAKEFLAGS} -C util
@@ -56,8 +61,10 @@ clean:
        ${MAKE} ${MAKEFLAGS} -C asxv5pxx/asxmak/linux/build clean
        # avoid git complaining of changes in subrepo:
        touch asxv5pxx/asxmak/linux/exe/_exe
-       ${MAKE} ${MAKEFLAGS} -C disasm clean
        ${MAKE} ${MAKEFLAGS} -C dos33fsprogs/utils/dos33fs-utils clean
        ${MAKE} ${MAKEFLAGS} -C emu_65c02 clean
+       ${MAKE} ${MAKEFLAGS} -C galaxian clean
        ${MAKE} ${MAKEFLAGS} -C loader clean
+       ${MAKE} ${MAKEFLAGS} -C star_blazer clean
+       ${MAKE} ${MAKEFLAGS} -C shape clean
        ${MAKE} ${MAKEFLAGS} -C test clean