Makefile: Allow setting git from the environment

This commit is contained in:
Florian 2019-11-28 12:06:08 +01:00 committed by GitHub
parent 31757b782b
commit 7831b19b37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
.PHONY: all test
DC ?= dmd
GIT ?= git
DMD := $(DC)
GDC := gdc
LDC := ldc2
@ -39,7 +40,7 @@ ldc: ldcbuild
gdc: gdcbuild
githash:
mkdir -p bin && git describe --tags > bin/githash.txt
mkdir -p bin && ${GIT} describe --tags > bin/githash.txt
debug: githash
${DC} -w -g -Jbin -ofdsc ${VERSIONS} ${DEBUG_VERSIONS} ${INCLUDE_PATHS} ${SRC}