46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
![]() |
PROJECT_NAME := "snmp-mqtt"
|
||
|
PKG := "github.com/dchote/$(PROJECT_NAME)"
|
||
|
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
|
||
|
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
|
||
|
|
||
|
.PHONY: all dep lint vet test test-coverage build clean
|
||
|
|
||
|
all: build
|
||
|
|
||
|
dep: ## Get the dependencies
|
||
|
@echo Installing dependencies
|
||
|
@go mod download
|
||
|
|
||
|
lint: ## Lint Golang files
|
||
|
@golint -set_exit_status ${PKG_LIST}
|
||
|
|
||
|
vet: ## Run go vet
|
||
|
@go vet ${PKG_LIST}
|
||
|
|
||
|
test: ## Run unittests
|
||
|
@go test -short ${PKG_LIST}
|
||
|
|
||
|
test-coverage: ## Run tests with coverage
|
||
|
@go test -short -coverprofile cover.out -covermode=atomic ${PKG_LIST}
|
||
|
@cat cover.out >> coverage.txt
|
||
|
|
||
|
build: dep ## Build the binary file
|
||
|
@echo Building native binary
|
||
|
@go build -i -o build/snmp-mqtt $(PKG)
|
||
|
|
||
|
linux: build
|
||
|
@echo Building Linux binary
|
||
|
@env CC=x86_64-linux-musl-gcc GOOS=linux GOARCH=amd64 CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static" -o build/snmp-mqtt
|
||
|
|
||
|
raspi: build
|
||
|
@echo Building Rasperry Pi Linux binary
|
||
|
@env GOOS=linux GOARCH=arm GOARM=6 CGO_ENABLED=0 go build -o build/snmp-mqtt
|
||
|
|
||
|
|
||
|
clean: ## Remove previous build
|
||
|
@rm -f $(PROJECT_NAME)/build
|
||
|
|
||
|
help: ## Display this help screen
|
||
|
@grep -h -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
||
|
|