blob: d6b3c626ac1a186245e6e5cb7c2fbe49b29ab9b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
all:
for ext in py sh; do \
m4 -D DELTA=1 puzzles.$$ext >puzzle-1.$$ext; \
m4 -D DELTA=3 puzzles.$$ext >puzzle-2.$$ext; \
done
chmod +x puzzle-[12].{py,sh}
.PHONY: clean
clean:
rm -f puzzle-[12].{py,sh}
|