Makefile: allow to use custom GITCOMMIT & BUILDOPTS (#6384)
?= means If GITCOMMIT/BUILDOPTS is defined then use that otherwise fallback to default Signed-off-by: Rahil Bhimjiani <rahil3108@gmail.com>
This commit is contained in:
parent
282b2da5fa
commit
2c0a74fc5c
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,9 +1,9 @@
|
|||
# Makefile for building CoreDNS
|
||||
GITCOMMIT:=$(shell git describe --dirty --always)
|
||||
GITCOMMIT?=$(shell git describe --dirty --always)
|
||||
BINARY:=coredns
|
||||
SYSTEM:=
|
||||
CHECKS:=check
|
||||
BUILDOPTS:=-v
|
||||
BUILDOPTS?=-v
|
||||
GOPATH?=$(HOME)/go
|
||||
MAKEPWD:=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
||||
CGO_ENABLED?=0
|
||||
|
|
Loading…
Add table
Reference in a new issue