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

clean:
	go clean

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

restart:
	/etc/rc.d/blog restart