aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 177060071b7e90c79ce85257b188f15f52d3c474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: build

build:
	go generate
	go build -tags=deploy_build .

install:
	go generate
	go install -tags=deploy_build .

test: build
	go test ./...

pack-webui:
	npm run --prefix webui build
	go run webui/pack_webui.go

clean-local-bugs:
	git for-each-ref refs/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d
	git for-each-ref refs/remotes/origin/bugs/ | cut -f 2 | xargs -r -n 1 git update-ref -d

.PHONY: build install test pack-webui clean-local-bugs