Files
dns-autoresolver/Makefile
T

17 lines
225 B
Makefile

.PHONY: test
test:
go test ./...
.PHONY: build
build:
go build ./...
.PHONY: web
web:
cd web && npm ci && npm run build
rm -rf internal/web/dist
cp -r web/dist internal/web/dist
.PHONY: build-all
build-all: web build