7a92eb8887
This is a more descriptive name since this file only sets the gitver variable.
9 lines
197 B
Makefile
9 lines
197 B
Makefile
_GITVER_SH= if git rev-parse --short HEAD >/dev/null 2>&1; then \
|
|
printf "."; \
|
|
git rev-parse --short HEAD; \
|
|
else \
|
|
echo ""; \
|
|
fi
|
|
_GITVER:= $(shell ${_GITVER_SH})
|
|
GITVER= ${_GITVER}
|