Private
Public Access
1
0
Files
BASIC10Liner2026/Makefile

18 lines
859 B
Makefile
Raw Normal View History

2026-02-08 22:48:17 +00:00
all: game.tap listing.txt
2026-02-08 15:27:03 +00:00
2026-02-08 22:48:17 +00:00
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 "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
2026-02-08 15:27:03 +00:00
2026-02-07 22:01:44 +00:00
game.tap: pac.bas
zmakebas -l -i 1 -s 1 -n pac -a 1 -o game.tap pac.bas
2026-02-07 22:01:44 +00:00
clean:
2026-02-08 15:27:03 +00:00
rm -f *.tap list.txt
2026-02-07 22:01:44 +00:00
.PHONY: all clean