12 lines
147 B
Makefile
12 lines
147 B
Makefile
.PHONY: run
|
|
run:
|
|
go run main.go
|
|
|
|
.PHONY: build
|
|
build:
|
|
CGO_ENABLED=0 go build -ldflags="-w -s" -o build/router
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test ./...
|