From 61b98f1f543d00d94c0d911aca27f0b51efd57dc Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Mon, 8 Mar 2010 03:57:15 +0100 Subject: [PATCH] Makefile needs install for debian/rules; fixed non-existent path while building --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 + -- 2.20.1