11 lines
143 B
Makefile
11 lines
143 B
Makefile
|
build: lint
|
||
|
CGO_ENABLED=0 go build -v -trimpath -ldflags='-s -w'
|
||
|
|
||
|
lint:
|
||
|
golangci-lint run
|
||
|
|
||
|
clean:
|
||
|
rm -f httpserve
|
||
|
|
||
|
.PHONY: build clean lint
|