dnsupdater/Makefile

11 lines
327 B
Makefile
Raw Normal View History

2020-10-26 09:42:07 +00:00
PROJECT_NAME := "dnsupdater"
PKG := "gitlab.lehouerou.net/laurent/$(PROJECT_NAME)"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
2020-10-26 10:32:00 +00:00
.PHONY: all dep build
2020-10-26 09:48:25 +00:00
2020-10-26 09:42:07 +00:00
all: build
2020-10-26 10:32:00 +00:00
build: ## Build the binary file
@go build -i -v $(PKG)/cmd/dnsupdater