aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 592dc52451dd43fe2d4b1b0892ca91e25e98a32a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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

.PHONY: build install test pack-webui