aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2014-01-02 14:26:19 +0100
committerGravatar Christian Hesse <mail@eworm.de>2014-01-02 14:26:19 +0100
commitf5c2bc9fa415bb47772b76fc8765c6ac5e954f81 (patch)
treea5f8baeadf508d6b56b5d16cf4545cee45b8c273 /Makefile
parente88f533d13743151a01f63a135a25ed7d2372c06 (diff)
downloadnetlink-notify-f5c2bc9fa415bb47772b76fc8765c6ac5e954f81.tar.gz
netlink-notify-f5c2bc9fa415bb47772b76fc8765c6ac5e954f81.tar.zst
write version to header file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index d21430a..0e40484 100644
--- a/Makefile
+++ b/Makefile
@@ -7,18 +7,19 @@ INSTALL := install
RM := rm
CFLAGS += -O2 -Wall -Werror
CFLAGS += $(shell pkg-config --cflags --libs libnotify)
-VERSION := $(shell git describe --tags --long 2>/dev/null)
# this is just a fallback in case you do not use git but downloaded
# a release tarball...
-ifeq ($(VERSION),)
VERSION := 0.6.3
-endif
all: netlink-notify icons README.html
-netlink-notify: netlink-notify.c
- $(CC) $(CFLAGS) -o netlink-notify netlink-notify.c \
- -DVERSION="\"$(VERSION)\""
+netlink-notify: netlink-notify.c version.h
+ $(CC) $(CFLAGS) -o netlink-notify netlink-notify.c
+
+version.h: $(wildcard .git/HEAD .git/index .git/refs/tags/*) Makefile
+ echo "#ifndef VERSION" > $@
+ echo "#define VERSION \"$(shell git describe --tags --long 2>/dev/null || echo ${VERSION})\"" >> $@
+ echo "#endif" >> $@
icons: netlink-notify-up.png netlink-notify-down.png netlink-notify-address.png netlink-notify-away.png
@@ -61,4 +62,4 @@ install-doc: README.html
$(INSTALL) -D -m0644 screenshot-up.png $(DESTDIR)/usr/share/doc/netlink-notify/screenshot-up.png
clean:
- $(RM) -f *.o *~ netlink-notify-*.png README.html netlink-notify
+ $(RM) -f *.o *~ netlink-notify-*.png README.html netlink-notify version.h