]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - backend/Makefile
Import CUPS v1.7.1
[thirdparty/cups.git] / backend / Makefile
index 8287cb25e039c0960b364cc684a5a8bc52c30468..ec17c0a1342307913b32042a39c54713dfd2e5fa 100644 (file)
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile 7924 2008-09-10 17:36:13Z mike $"
+# "$Id: Makefile 11154 2013-07-17 15:21:18Z msweet $"
 #
 #   Backend makefile for CUPS.
 #
-#   Copyright 2007-2012 by Apple Inc.
+#   Copyright 2007-2013 by Apple Inc.
 #   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
@@ -21,6 +21,12 @@ include ../Makedefs
 # Object files...
 #
 
+# RBACKENDS are installed mode 0700 so cupsd will run them as root...
+#
+# UBACKENDS are installed mode 0755 so cupsd will run them as an unprivileged
+# user...
+#
+# See http://www.cups.org/documentation.php/api-filter.html for more info...
 RBACKENDS =    \
                ipp \
                lpd \
@@ -103,6 +109,11 @@ install:   all install-data install-headers install-libs install-exec
 #
 
 install-data:
+       if test "x$(USBQUIRKS)" != x; then \
+               echo Installing USB quirks in $(USBQUIRKS); \
+               $(INSTALL_DIR) -m 755 $(USBQUIRKS); \
+               $(INSTALL_DATA) org.cups.usb-quirks $(USBQUIRKS); \
+       fi
 
 
 #
@@ -122,14 +133,15 @@ install-exec:     $(INSTALLXPC)
                $(RM) $(SERVERBIN)/backend/$$file; \
                $(LN) ipp $(SERVERBIN)/backend/$$file; \
        done
-       if test "x$(DNSSD_BACKEND)" != x; then \
+       if test "x$(DNSSD_BACKEND)" != x -a `uname` = Darwin; then \
                $(RM) $(SERVERBIN)/backend/mdns; \
                $(LN) $(DNSSD_BACKEND) $(SERVERBIN)/backend/mdns; \
        fi
        if test "x$(SYMROOT)" != "x"; then \
                $(INSTALL_DIR) $(SYMROOT); \
-               for file in $(TARGETS); do \
+               for file in $(RBACKENDS) $(UBACKENDS); do \
                        cp $$file $(SYMROOT); \
+                       dsymutil $(SYMROOT)/$$file; \
                done \
        fi
 
@@ -226,8 +238,10 @@ libbackend.a:      $(LIBOBJS)
 dnssd: dnssd.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
        $(CC) $(LDFLAGS) -o dnssd dnssd.o libbackend.a $(LIBS)
-       $(RM) mdns
-       $(LN) dnssd mdns
+       if test `uname` = Darwin; then \
+               $(RM) mdns; \
+               $(LN) dnssd mdns; \
+       fi
 
 
 #
@@ -274,7 +288,7 @@ socket:     socket.o ../cups/$(LIBCUPS) libbackend.a
 
 usb:   usb.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o usb usb.o libbackend.a $(LIBUSB) \
+       $(CC) $(ARCHFLAGS) $(LDFLAGS) -o usb usb.o libbackend.a $(LIBUSB) \
                $(BACKLIBS) $(LIBS)
 usb.o: usb.c usb-darwin.c usb-libusb.c usb-unix.c
 
@@ -287,5 +301,5 @@ include Dependencies
 
 
 #
-# End of "$Id: Makefile 7924 2008-09-10 17:36:13Z mike $".
+# End of "$Id: Makefile 11154 2013-07-17 15:21:18Z msweet $".
 #