Generates the githash file in bin so that not visible in git staging area
This commit is contained in:
parent
e4ee46366d
commit
4bd91c26af
19
makefile
19
makefile
|
@ -25,8 +25,8 @@ INCLUDE_PATHS = \
|
||||||
-Istdx-allocator/source
|
-Istdx-allocator/source
|
||||||
VERSIONS =
|
VERSIONS =
|
||||||
DEBUG_VERSIONS = -version=dparse_verbose
|
DEBUG_VERSIONS = -version=dparse_verbose
|
||||||
DMD_FLAGS = -w -inline -release -O -J. -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
DMD_FLAGS = -w -inline -release -O -Jbin -od${OBJ_DIR} -version=StdLoggerDisableWarning
|
||||||
DMD_TEST_FLAGS = -w -g -J. -version=StdLoggerDisableWarning
|
DMD_TEST_FLAGS = -w -g -Jbin -version=StdLoggerDisableWarning
|
||||||
override LDC_FLAGS += -O5 -release -oq
|
override LDC_FLAGS += -O5 -release -oq
|
||||||
override GDC_FLAGS += -O3 -frelease
|
override GDC_FLAGS += -O3 -frelease
|
||||||
SHELL:=/bin/bash
|
SHELL:=/bin/bash
|
||||||
|
@ -36,23 +36,20 @@ ldc: ldcbuild
|
||||||
gdc: gdcbuild
|
gdc: gdcbuild
|
||||||
|
|
||||||
githash:
|
githash:
|
||||||
git describe --tags > githash.txt
|
mkdir -p bin && git describe --tags > bin/githash.txt
|
||||||
|
|
||||||
debug:
|
debug: githash
|
||||||
${DC} -w -g -J. -ofdsc ${VERSIONS} ${DEBUG_VERSIONS} ${INCLUDE_PATHS} ${SRC}
|
${DC} -w -g -Jbin -ofdsc ${VERSIONS} ${DEBUG_VERSIONS} ${INCLUDE_PATHS} ${SRC}
|
||||||
|
|
||||||
dmdbuild: githash $(SRC)
|
dmdbuild: githash
|
||||||
mkdir -p bin
|
|
||||||
${DC} ${DMD_FLAGS} -ofbin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC}
|
${DC} ${DMD_FLAGS} -ofbin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC}
|
||||||
rm -f bin/dscanner.o
|
rm -f bin/dscanner.o
|
||||||
|
|
||||||
gdcbuild: githash
|
gdcbuild: githash
|
||||||
mkdir -p bin
|
${GDC} ${GDC_FLAGS} -obin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -Jbin
|
||||||
${GDC} ${GDC_FLAGS} -obin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
|
||||||
|
|
||||||
ldcbuild: githash
|
ldcbuild: githash
|
||||||
mkdir -p bin
|
${LDC} ${LDC_FLAGS} -of=bin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -Jbin
|
||||||
${LDC} ${LDC_FLAGS} -of=bin/dscanner ${VERSIONS} ${INCLUDE_PATHS} ${SRC} -J.
|
|
||||||
|
|
||||||
# compile the dependencies separately, s.t. their unittests don't get executed
|
# compile the dependencies separately, s.t. their unittests don't get executed
|
||||||
bin/dscanner-unittest-lib.a: ${LIB_SRC}
|
bin/dscanner-unittest-lib.a: ${LIB_SRC}
|
||||||
|
|
Loading…
Reference in New Issue