blob: 948bf1e13ae311fb06a1e5d5d0fc4746359e0cb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: prebuild fmt
build: templates writeVersionNumber
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
|