# 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
# 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
# clean up
clean: distclean
+ rm Doxyfile
distclean:
$(RM) doc/source
.PHONY: clean distclean install
+