From: Roland Hieber Date: Mon, 8 Mar 2010 02:57:15 +0000 (+0100) Subject: Makefile needs install for debian/rules; fixed non-existent path while building X-Git-Tag: REL_10.03.08~5 X-Git-Url: https://git.rohieb.name/iserv-mod-error-reporter.git/commitdiff_plain/61b98f1f543d00d94c0d911aca27f0b51efd57dc Makefile needs install for debian/rules; fixed non-existent path while building --- diff --git a/Makefile b/Makefile index a5fa08f..2ebe088 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ MKDIR=mkdir -p links: sourcedoc # documentation $(MKDIR) $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/source/ - $(MKDIR) $(DESTDIR)/usr/share/doc/iserv/mod/ + $(MKDIR) $(DESTDIR)/usr/share/doc/iserv/mod/error-reporter/ $(LN) doc/TODO $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/ $(LN) doc/changelog.old.html $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/ $(LN) doc/source/* $(DESTDIR)/usr/share/doc/iserv-mod-error-reporter/source/ @@ -96,9 +96,12 @@ sourcedoc: doxygen mv doc/source/html/* doc/source/ && rm -rf doc/source/html +install: sourcedoc links + # clean up clean: if [ -e Doxyfile ]; then rm Doxyfile; fi; $(RM) doc/source .PHONY: clean install +