Files
iqudo-top1/Makefile
Eric 1549169735@qq.com 602b567d22 update
2026-08-08 21:26:47 +08:00

21 lines
262 B
Makefile

WEB_DIR := web
.PHONY: web-install web-build build test vet check
web-install:
cd $(WEB_DIR) && npm install
web-build:
cd $(WEB_DIR) && npm run build
build: web-build
go build -o bin/iqudo-top1 .
test:
go test ./...
vet:
go vet ./...
check: test vet