From f5c2bc9fa415bb47772b76fc8765c6ac5e954f81 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Thu, 2 Jan 2014 14:26:19 +0100 Subject: write version to header file --- Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3-54-g00ecf