1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-09-28 00:15:34 +02:00

Version: add revision only if git is available

This commit is contained in:
Ansa89 2014-10-15 09:52:13 +02:00
parent d2008aa92f
commit 0a1457acde

View File

@ -1,7 +1,11 @@
# Version
TOXIC_VERSION = 0.5.2
REV = $(shell git rev-list HEAD --count)
VERSION = $(TOXIC_VERSION)_r$(REV)
REV = $(shell if which git &>/dev/null ; then git rev-list HEAD --count 2>/dev/null || echo -n "error" ; else echo -n "error" ; fi)
ifneq ($(REV), error)
VERSION = $(TOXIC_VERSION)_r$(REV)
else
VERSION = $(TOXIC_VERSION)
endif
# Project directories
DOC_DIR = $(BASE_DIR)/doc