From 7831b19b3709e2ffcdb8820180a1d5dde379e3b5 Mon Sep 17 00:00:00 2001 From: Florian Date: Thu, 28 Nov 2019 12:06:08 +0100 Subject: [PATCH] Makefile: Allow setting git from the environment --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 4387e3e..a96f092 100644 --- a/makefile +++ b/makefile @@ -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}