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
|
# Makefile for building CoreDNS
|
||||||
GITCOMMIT:=$(shell git describe --dirty --always)
|
GITCOMMIT?=$(shell git describe --dirty --always)
|
||||||
BINARY:=coredns
|
BINARY:=coredns
|
||||||
SYSTEM:=
|
SYSTEM:=
|
||||||
CHECKS:=check
|
CHECKS:=check
|
||||||
BUILDOPTS:=-v
|
BUILDOPTS?=-v
|
||||||
GOPATH?=$(HOME)/go
|
GOPATH?=$(HOME)/go
|
||||||
MAKEPWD:=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
MAKEPWD:=$(dir $(realpath $(firstword $(MAKEFILE_LIST))))
|
||||||
CGO_ENABLED?=0
|
CGO_ENABLED?=0
|
||||||
|
|
Loading…
Add table
Reference in a new issue