Merge pull request #784 from MoonlightSentinel/patch-1
Makefile: Allow setting git from the environment
This commit is contained in:
commit
3a7c231d1b
3
makefile
3
makefile
|
@ -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}
|
||||||
|
|
Loading…
Reference in New Issue