blob: b2e10e1fc154ab3f396ee9b1be074e5754138c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
.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
writeVersionNumber:
bash ./writeVersionNumber.sh
|