Add textcolors to build/package

This commit is contained in:
Joshua Bell 2022-01-06 16:39:19 -08:00
parent 0cd347b737
commit 392ab0b7ef
2 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
targets := ns.clock cricket dclock romx selectors ram.drv util
targets := ns.clock cricket dclock romx selectors ram.drv util textcolors
.PHONY: all $(targets) package

View File

@ -34,6 +34,11 @@ add_file "util/out/quit.system.SYS" "quit.system#FF0000" "/$VOLNAME
add_file "util/out/pause.system.SYS" "pause.system#FF0000" "/$VOLNAME"
add_file "util/out/date.BIN" "date#062000" "/$VOLNAME"
cadius CREATEFOLDER "$IMGFILE" "/$VOLNAME/TEXTCOLORS" --no-case-bits --quiet
for file in a2green bw deepblue gray gsblue mint pink wb; do
add_file "textcolors/out/${file}.system.SYS" "${file}.system#FF0000" "/$VOLNAME/TEXTCOLORS"
done
rm -r "$PACKDIR"
cadius CATALOG "$IMGFILE"