]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - man/Makefile
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / man / Makefile
index de0870cd9a5953b4d2617bca7863cb3d38c0080b..1e2bb0100526956b9531fb1965590bd69cb609a9 100644 (file)
@@ -1,5 +1,5 @@
 #
-# "$Id: Makefile 6657 2007-07-13 01:01:14Z mike $"
+# "$Id: Makefile 7601 2008-05-20 21:08:08Z mike $"
 #
 #   Man page makefile for the Common UNIX Printing System (CUPS).
 #
@@ -49,6 +49,7 @@ MAN5  =       classes.conf.$(MAN5EXT) \
 MAN7   =       backend.$(MAN7EXT) \
                commandtoescpx.$(MAN7EXT) \
                commandtopclx.$(MAN7EXT) \
+               drv.$(MAN7EXT) \
                filter.$(MAN7EXT) \
                rastertoescpx.$(MAN7EXT) \
                rastertopclx.$(MAN7EXT)
@@ -75,6 +76,20 @@ MAN8 =       accept.$(MAN8EXT) \
 all:   $(MAN1) $(MAN5) $(MAN7) $(MAN8) html
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all config and object files...
 #
@@ -104,10 +119,17 @@ depend:
 
 
 #
-# Install files...
+# Install all targets...
+#
+
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
 #
 
-install:       all
+install-data:
        $(INSTALL_DIR) -m 755 $(MANDIR)/man1
        for file in $(MAN1); do \
                echo Installing $$file in $(MANDIR)/man1...; \
@@ -134,6 +156,27 @@ install:   all
        $(LN) cupsenable.$(MAN8EXT) $(AMANDIR)/man$(MAN8DIR)/cupsdisable.$(MAN8EXT)
 
 
+#
+# Install programs...
+#
+
+install-exec:
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
+
 #
 # Uninstall files...
 #
@@ -183,9 +226,9 @@ html:       $(MAN1) $(MAN5) $(MAN7) $(MAN8) mantohtml
        done
 
 mantohtml:     mantohtml.o
-       $(CC) $(LDFLAGS) -o $@ mantohtml.o
+       $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ mantohtml.o
 
 
 #
-# End of "$Id: Makefile 6657 2007-07-13 01:01:14Z mike $".
+# End of "$Id: Makefile 7601 2008-05-20 21:08:08Z mike $".
 #