on request of Frederik Kammer
[iserv-mod-room-reservation.git] / Makefile
index 6026304..41d1775 100644 (file)
--- a/Makefile
+++ b/Makefile
 # THE SOFTWARE.
 #
 
+PACKAGENAME:=iserv-mod-room-reservation
+VERSION:=$(shell grep "^$(PACKAGENAME)" debian/changelog | head -1 | sed -e "s/$(PACKAGENAME) (\([0-9.]\+\).*).*/\1/ ")
+
+SHELL=/bin/bash
 DESTDIR?=
 LN=ln -f
 RM=rm -rf
@@ -85,6 +89,8 @@ endif
 
 # build doxygen documentation from source
 sourcedoc:
+       cat Doxyfile.in | sed -e "s/{{{VERSION}}}/$(VERSION)/" \
+               -e "s/{{{PACKAGENAME}}}/$(PACKAGENAME)/" > Doxyfile
        doxygen
        mv doc/source/html/* doc/source/ && rm -rf doc/source/html
 
@@ -122,8 +128,10 @@ uninstall:
 
 # clean up
 clean: distclean
+       if [ -e Doxyfile ]; then rm Doxyfile; fi
 
 distclean:
        $(RM) doc/source
 
 .PHONY: clean distclean install
+
This page took 0.021682 seconds and 4 git commands to generate.