]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - doc/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / doc / Makefile
index 5562d2a8b8c1916477a356fd9dc98b9535518b31..e0e03f1f31b524c69d7b835f9a9680d4106134e9 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: Makefile 5328 2006-03-23 20:23:19Z mike $"
+# "$Id: Makefile 5735 2006-07-13 19:58:43Z mike $"
 #
 #   Documentation makefile for the Common UNIX Printing System (CUPS).
 #
@@ -153,13 +153,16 @@ HELPFILES =       \
                        help/network.html \
                        help/options.html \
                        help/overview.html \
+                       help/policies.html \
                        help/ref-access_log.html \
                        help/ref-classes-conf.html \
                        help/ref-client-conf.html \
                        help/ref-cupsd-conf.html \
                        help/ref-error_log.html \
+                       help/ref-mailto-conf.html \
                        help/ref-page_log.html \
                        help/ref-printers-conf.html \
+                       help/ref-snmp-conf.html \
                        help/ref-subscriptions-conf.html \
                        help/security.html \
                        help/spec-cmp.html \
@@ -200,7 +203,7 @@ depend:
 # Install all documentation files...
 #
 
-install:       all
+install:       all $(INSTALL_LANGUAGES)
        $(INSTALL_DIR) -m 755 $(DOCDIR)
        for file in $(WEBPAGES); do \
                $(INSTALL_MAN) $$file $(DOCDIR); \
@@ -213,6 +216,8 @@ install:    all
        for file in $(WEBIMAGES) $(WEBBUTTONS); do \
                $(INSTALL_MAN) $$file $(DOCDIR)/images; \
        done
+
+install-languages:
        for lang in $(LANGUAGES); do \
                $(INSTALL_DIR) -m 755 $(DOCDIR)/$$lang/images; \
                if test -f $$lang/index.html; then \
@@ -230,7 +235,7 @@ install:    all
 # Unnstall all documentation files...
 #
 
-uninstall:
+uninstall: $(UNINSTALL_LANGUAGES)
        for file in $(WEBPAGES); do \
                $(RM) $(DOCDIR)/$$file; \
        done
@@ -240,6 +245,11 @@ uninstall:
        for file in $(WEBIMAGES) $(WEBBUTTONS); do \
                $(INSTALL_MAN) $(DOCDIR)/images/$$file; \
        done
+       -$(RMDIR) $(DOCDIR)/images
+       -$(RMDIR) $(DOCDIR)/help
+       -$(RMDIR) $(DOCDIR)
+
+uninstall-languages:
        -for lang in $(LANGUAGES); do \
                $(RM) $(DOCDIR)/$$lang/index.html; \
                for file in $(WEBBUTTONS); do \
@@ -248,9 +258,6 @@ uninstall:
                $(RMDIR) $(DOCDIR)/$$lang/images; \
                $(RMDIR) $(DOCDIR)/$$lang; \
        done
-       -$(RMDIR) $(DOCDIR)/images
-       -$(RMDIR) $(DOCDIR)/help
-       -$(RMDIR) $(DOCDIR)
 
 
 #