aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: 3b2aa6e6914342d033bc4875426195bd37562016 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

          
      






                                       


                     
           
                                    
                                  
 
                          
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