Private
Public Access
1
0
Files

21 lines
912 B
Makefile
Raw Permalink Normal View History

2026-02-09 10:53:19 +00:00
all: decman.tap listing.txt decman.wav
2026-02-08 15:27:03 +00:00
2026-02-08 22:59:59 +00:00
listing.txt: decman.tap
2026-02-08 22:48:17 +00:00
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 "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
2026-02-08 22:59:59 +00:00
listbasic $^ | sed 's/" /" €€€€/' >> $@
2026-02-08 22:48:17 +00:00
echo "....> ---------|---------|---------|---------|---------|---------|---------|---------|" >> $@
2026-02-08 15:27:03 +00:00
2026-02-08 22:59:59 +00:00
decman.tap: pac.bas
zmakebas -l -i 1 -s 1 -n DEC-Man -a 1 -o $@ $^
2026-02-07 22:01:44 +00:00
2026-02-09 10:53:19 +00:00
decman.wav: decman.tap
tape2wav $^ $@
2026-02-07 22:01:44 +00:00
clean:
2026-02-09 10:53:19 +00:00
rm -f *.tap listing.txt *.wav
2026-02-07 22:01:44 +00:00
.PHONY: all clean