summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index be9dc32..5c0e04a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1OPTIMIZE ?= -O3 1OPTIMIZE ?= -O3 -flto
2DEBUG ?= -g 2DEBUG ?= -g
3 3
4AR ?= ar 4AR ?= ar
@@ -21,9 +21,9 @@ endif
21$(info Version ${VERSION}) 21$(info Version ${VERSION})
22 22
23define GITTAGCPP = 23define GITTAGCPP =
24#include <string> 24#include "git-tag.h"
25 25
26std::string GIT_TAG = "$(subst ",\",${VERSION})"; 26const char *GIT_TAG = "$(subst ",\",${VERSION})";
27endef 27endef
28export GITTAGCPP 28export GITTAGCPP
29 29