summaryrefslogtreecommitdiff
path: root/Makefile
blob: f7f04f29414d8f187b293c4a21b217881a9db056 (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/*.css /var/www/htdocs/static/

restart:
	/etc/rc.d/blog restart