diff options
Diffstat (limited to 'sofort/core/version.mk')
-rw-r--r-- | sofort/core/version.mk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sofort/core/version.mk b/sofort/core/version.mk new file mode 100644 index 0000000..ad693ab --- /dev/null +++ b/sofort/core/version.mk @@ -0,0 +1,10 @@ +# version.mk: handling of shared library versioning schemes. +# this file is covered by COPYING.SOFORT. + +include $(PROJECT_DIR)/project/tagver.mk + +CFLAGS_VERSION += -D$(VER_NAMESPACE)_TAG_VER_MAJOR=$(VER_MAJOR) +CFLAGS_VERSION += -D$(VER_NAMESPACE)_TAG_VER_MINOR=$(VER_MINOR) +CFLAGS_VERSION += -D$(VER_NAMESPACE)_TAG_VER_PATCH=$(VER_PATCH) + +include $(PROJECT_DIR)/sofort/core/_version/version_$(VERSION_OPT).mk |