]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - monitor/Makefile
The web interface did not work on OpenBSD (STR #4496)
[thirdparty/cups.git] / monitor / Makefile
index 1b3def6004efdfce7d8a5e1f56ae61ecb562c234..7ba7c42307a5041d05e81f08efc3947f12be6e77 100644 (file)
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
+# "$Id$"
 #
-#   Port monitor makefile for the Common UNIX Printing System (CUPS).
+#   Port monitor makefile for CUPS.
 #
-#   Copyright 2007 by Apple Inc.
+#   Copyright 2007-2012 by Apple Inc.
 #   Copyright 2006 by Easy Software Products.
 #
 #   These coded instructions, statements, and computer programs are the
@@ -29,6 +29,20 @@ OBJS =       bcp.o tbcp.o
 all:   $(TARGETS)
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all object files...
 #
@@ -42,14 +56,28 @@ clean:
 #
 
 depend:
-       makedepend -Y -I.. -fDependencies $(OBJS:.o=.c) >/dev/null 2>&1
+       $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
 
 
 #
 # Install all targets...
 #
 
-install:       all
+install:       all install-data install-headers install-libs install-exec
+
+
+#
+# Install data files...
+#
+
+install-data:
+
+
+#
+# Install programs...
+#
+
+install-exec:
        $(INSTALL_DIR) -m 755 $(SERVERBIN)/monitor
        for file in $(TARGETS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/monitor; \
@@ -58,10 +86,25 @@ install:    all
                $(INSTALL_DIR) $(SYMROOT); \
                for file in $(TARGETS); do \
                        cp $$file $(SYMROOT); \
+                       dsymutil $(SYMROOT)/$$file; \
                done \
        fi
 
 
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
+
 #
 # Uninstall all targets...
 #
@@ -95,10 +138,10 @@ tbcp:      tbcp.o ../cups/$(LIBCUPS)
 #
 # Dependencies...
 #
-  
+
 include Dependencies
 
 
 #
-# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
+# End of "$Id$".
 #