summaryrefslogtreecommitdiff
path: root/version.make
diff options
context:
space:
mode:
Diffstat (limited to 'version.make')
-rw-r--r--version.make17
1 files changed, 17 insertions, 0 deletions
diff --git a/version.make b/version.make
new file mode 100644
index 0000000..04ba9c3
--- /dev/null
+++ b/version.make
@@ -0,0 +1,17 @@
+# TODO replace this file in tarballs
+# for now, only git builds will work.
+VERSION_FULL := $(shell cd ${SRC_DIR}; git describe --tags HEAD)
+VERSION_HASH := $(shell cd ${SRC_DIR}; git rev-parse HEAD)
+
+version_bits := $(subst v, ,$(subst -, ,$(subst ., ,${VERSION_FULL})))
+VERSION_MAJOR := $(word 1,${version_bits})
+VERSION_MINOR := $(word 2,${version_bits})
+VERSION_PATCH := $(word 3,${version_bits})
+VERSION_DEVEL := $(word 4,${version_bits})
+ifeq "${VERSION_DEVEL}" ""
+ VERSION_DEVEL := 0
+endif
+VERSION_FULL += $(shell cd ${SRC_DIR}; git diff --quiet HEAD || echo dirty)
+
+VENDOR := Vanilla
+VENDOR_VERSION := 0