Makefile needs install for debian/rules; fixed non-existent path while building
authorRoland Hieber <devnull@localhost>
Mon, 8 Mar 2010 02:57:15 +0000 (03:57 +0100)
committerRoland Hieber <devnull@localhost>
Mon, 8 Mar 2010 02:57:15 +0000 (03:57 +0100)
Makefile

index a5fa08f..2ebe088 100644 (file)
--- 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
+
This page took 0.028372 seconds and 4 git commands to generate.