18 lines
859 B
Makefile
18 lines
859 B
Makefile
all: game.tap listing.txt
|
|
|
|
listing.txt: game.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/" /" €€€€/' >> $@
|
|
echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
|
|
|
|
game.tap: pac.bas
|
|
zmakebas -l -i 1 -s 1 -n pac -a 1 -o game.tap pac.bas
|
|
|
|
clean:
|
|
rm -f *.tap list.txt
|
|
|
|
.PHONY: all clean |