aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7bcf3dabe47d62c8c3ee8b9cb9865f2d1f0a80fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
rtiaw: $(wildcard *.go)
	go build

out.ppm : rtiaw
	./$< > $@

.phony: view clean

view: out.ppm
	xv out.ppm

clean:
	rm -f rtiaw out.ppm