diff options
author | Christian Hesse <mail@eworm.de> | 2014-01-02 14:26:19 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-01-02 14:26:19 +0100 |
commit | f5c2bc9fa415bb47772b76fc8765c6ac5e954f81 (patch) | |
tree | a5f8baeadf508d6b56b5d16cf4545cee45b8c273 /Makefile | |
parent | e88f533d13743151a01f63a135a25ed7d2372c06 (diff) | |
download | netlink-notify-f5c2bc9fa415bb47772b76fc8765c6ac5e954f81.tar.gz netlink-notify-f5c2bc9fa415bb47772b76fc8765c6ac5e954f81.tar.zst |
write version to header file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -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 |