summaryrefslogtreecommitdiff
path: root/Makefile
blob: 43c8d80baaad0579760ec0aaea4e66f437e195cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:
	go build

clean:
	go clean

install:
	install blog /usr/local/bin/
	install template/*.tmpl /var/www/htdocs/template/
	install static/*.css /var/www/htdocs/static/
	install static/*.woff /var/www/htdocs/static/

restart:
	/etc/rc.d/blog restart