aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2017-11-22 00:23:50 +0100
committerGravatar Christian Hesse <mail@eworm.de>2017-11-22 00:23:50 +0100
commit3eeca9f7818837ac866bfbce0ee08e5c0181529d (patch)
tree369a4502540cfafc21db543970df0bdb5a81a117
parente099f9fdf925b8c4522bba817807a2a9124c2b0a (diff)
downloadcqrlogo-3eeca9f7818837ac866bfbce0ee08e5c0181529d.tar.gz
cqrlogo-3eeca9f7818837ac866bfbce0ee08e5c0181529d.tar.zst
use printf to generate version.h
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 29c1b4b..0e309e9 100644
--- a/Makefile
+++ b/Makefile
@@ -61,9 +61,7 @@ cqrlogo.fcgi.static: lib/libcqrlogo.o cqrlogo.c cqrlogo.h config.h version.h
$(CC) $(CFLAGSSTATIC) -Ilib/ -lfcgi $(LDFLAGS) -DHAVE_FCGI=1 -o cqrlogo.fcgi.static cqrlogo.c lib/libcqrlogo.o
version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
- echo "#ifndef VERSION" > $@
- echo "#define VERSION \"$(shell git describe --long 2>/dev/null || echo ${VERSION})\"" >> $@
- echo "#endif" >> $@
+ printf "#ifndef VERSION\n#define VERSION \"%s\"\n#endif\n" $(shell git describe --long 2>/dev/null || echo ${VERSION}) > $@
config.h: config.def.h
$(CP) config.def.h config.h