aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 9c5bc80a1dfab81b67ba94ae0497602531707e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.POSIX:
.SUFFIXES:

outputs = gallery public/mithril.js
all: $(outputs)

gallery: main.go
	go build -o $@
public/mithril.js:
	curl -Lo $@ https://unpkg.com/mithril/mithril.js
clean:
	rm -f $(outputs)