blob: fad7acfbe6acd613f1c9e74df445513704665810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: prebuild fmt
build: templates
mkdir -p bin
go build -o bin/walrss github.com/codemicro/walrss/walrss
run: build
mkdir -p run
cd run && ../bin/walrss
fmt:
go fmt github.com/codemicro/walrss/...
templates:
qtc -skipLineComments -ext qtpl.html -dir walrss/internal/http/views
|