diff options
author | Christian Hesse <mail@eworm.de> | 2014-01-02 14:13:37 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2014-01-02 14:13:37 +0100 |
commit | 9929d74da19521284badb5e3b25083007981ee18 (patch) | |
tree | 9b7ecec2295474505581d89f689175e28529b211 /Makefile | |
parent | 9e12c450e5a7d27f46f8cea6ab2e4eba8785026f (diff) | |
download | pacredir-9929d74da19521284badb5e3b25083007981ee18.tar.gz pacredir-9929d74da19521284badb5e3b25083007981ee18.tar.zst |
write version to header file
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -13,25 +13,26 @@ CFLAGS += $(shell pkg-config --libs --cflags libcurl) CFLAGS += $(shell pkg-config --libs --cflags avahi-client) CFLAGS += $(shell pkg-config --libs --cflags libmicrohttpd) CFLAGS += -liniparser -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.1.1 -endif all: pacredir avahi/pacdbserve.service README.html arch: arch.c config.h $(CC) -o arch arch.c -pacredir: pacredir.c pacredir.h config.h - $(CC) $(CFLAGS) $(LDFLAGS) -o pacredir pacredir.c \ - -DVERSION="\"$(VERSION)\"" +pacredir: pacredir.c pacredir.h config.h version.h + $(CC) $(CFLAGS) $(LDFLAGS) -o pacredir pacredir.c config.h: $(CP) config.def.h config.h +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" >> $@ + avahi/pacdbserve.service: arch avahi/pacdbserve.service.in $(SED) 's/%ARCH%/$(shell ./arch)/' avahi/pacdbserve.service.in > avahi/pacdbserve.service @@ -58,7 +59,7 @@ install-doc: README.html $(INSTALL) -D -m0644 README.html $(DESTDIR)$(PREFIX)/share/doc/paccache/README.html clean: - $(RM) -f *.o *~ arch pacredir avahi/pacdbserve.service README.html + $(RM) -f *.o *~ arch pacredir avahi/pacdbserve.service README.html version.h distclean: - $(RM) -f *.o *~ arch pacredir avahi/pacdbserve.service README.html config.h + $(RM) -f *.o *~ arch pacredir avahi/pacdbserve.service README.html version.h config.h |