Private
Public Access
1
0

Prepare submission

This commit is contained in:
2026-02-09 10:53:19 +00:00
parent 16054bcd23
commit 16cbf6c591
5 changed files with 129 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
all: decman.tap listing.txt
all: decman.tap listing.txt decman.wav
listing.txt: decman.tap
echo "DEC-Man Listing for the 2026 BASIC 10Liner Competition (PUR-80 Category) by mcphail (btl AT mcphail.uk)" > $@
@@ -12,7 +12,10 @@ listing.txt: decman.tap
decman.tap: pac.bas
zmakebas -l -i 1 -s 1 -n DEC-Man -a 1 -o $@ $^
decman.wav: decman.tap
tape2wav $^ $@
clean:
rm -f *.tap listing.txt
rm -f *.tap listing.txt *.wav
.PHONY: all clean