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:
Rahil Bhimjiani 2023-11-06 09:00:00 +05:30 committed by GitHub
parent 282b2da5fa
commit 2c0a74fc5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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