aboutsummaryrefslogtreecommitdiff
path: root/2015/10/Makefile
blob: 8d258e12b057b19f590218dfafcd63a66f75784c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
all:
	m4 -D INPUT=\"$$(cat input)\" -D LOOPS=40 -U len puzzles.go >tmp1.go
	m4 -D INPUT=\"$$(cat input)\" -D LOOPS=50 -U len puzzles.go >tmp2.go
	go build tmp1.go
	go build tmp2.go
	mv tmp1 puzzle-1
	mv tmp2 puzzle-2
	rm tmp[12].go

.PHONY: clean
clean:
	rm -f puzzle-[12] tmp[12].go