diff --git a/Makefile b/Makefile index 3300e6e..5378c5a 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,18 @@ -all: game.tap listing.txt +all: decman.tap listing.txt -listing.txt: game.tap +listing.txt: decman.tap echo "DEC-Man Listing for the 2026 BASIC 10Liner Competition (PUR-80 Category) by mcphail (btl AT mcphail.uk)" > $@ echo "-------------------------------------------------------------------------------------------------------" >> $@ echo "\n (Note - Line 1 has 4 extra control characters before the line of dots for PAPER BLACK and INK GREEN." >> $@ echo " These characters are shown in the listing as € signs.)\n" >> $@ echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@ - listbasic game.tap | sed 's/" /" €€€€/' >> $@ + listbasic $^ | sed 's/" /" €€€€/' >> $@ echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@ -game.tap: pac.bas - zmakebas -l -i 1 -s 1 -n pac -a 1 -o game.tap pac.bas +decman.tap: pac.bas + zmakebas -l -i 1 -s 1 -n DEC-Man -a 1 -o $@ $^ clean: - rm -f *.tap list.txt + rm -f *.tap listing.txt .PHONY: all clean \ No newline at end of file diff --git a/game.tap b/decman.tap similarity index 88% rename from game.tap rename to decman.tap index 927a622..4739d23 100644 Binary files a/game.tap and b/decman.tap differ