Merge pull request #784 from MoonlightSentinel/patch-1

Makefile: Allow setting git from the environment
This commit is contained in:
Sebastian Wilzbach 2019-11-28 12:18:28 +01:00 committed by GitHub
commit 3a7c231d1b
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 .PHONY: all test
DC ?= dmd DC ?= dmd
GIT ?= git
DMD := $(DC) DMD := $(DC)
GDC := gdc GDC := gdc
LDC := ldc2 LDC := ldc2
@ -39,7 +40,7 @@ ldc: ldcbuild
gdc: gdcbuild gdc: gdcbuild
githash: githash:
mkdir -p bin && git describe --tags > bin/githash.txt mkdir -p bin && ${GIT} describe --tags > bin/githash.txt
debug: githash debug: githash
${DC} -w -g -Jbin -ofdsc ${VERSIONS} ${DEBUG_VERSIONS} ${INCLUDE_PATHS} ${SRC} ${DC} -w -g -Jbin -ofdsc ${VERSIONS} ${DEBUG_VERSIONS} ${INCLUDE_PATHS} ${SRC}