dnsupdater/Makefile
2020-10-26 14:32:00 +04:00

11 lines
327 B
Makefile

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)
.PHONY: all dep build
all: build
build: ## Build the binary file
@go build -i -v $(PKG)/cmd/dnsupdater