]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - backend/Makefile
Import CUPS 1.4svn-r7908.
[thirdparty/cups.git] / backend / Makefile
index d6e9aee77d52960ca3aa5dbc9221e17e2d4a9d45..79868f83bd8e6f89452ca731d6b878f6b5baf7be 100644 (file)
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $"
+# "$Id: Makefile 7687 2008-06-24 01:28:36Z mike $"
 #
 #   Backend makefile for the Common UNIX Printing System (CUPS).
 #
-#   Copyright 2007 by Apple Inc.
+#   Copyright 2007-2008 by Apple Inc.
 #   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
 
 include ../Makedefs
 
-RBACKENDS =    ipp lpd
+RBACKENDS =    ipp lpd $(DNSSD_BACKEND)
 UBACKENDS =    $(PAP) $(LEGACY_BACKENDS) serial snmp socket usb
-TARGETS        =       betest test1284 libbackend.a $(RBACKENDS) $(UBACKENDS)
-LIBOBJS        =       ieee1284.o runloop.o
-OBJS   =       betest.o ipp.o lpd.o pap.o parallel.o scsi.o \
-               serial.o snmp.o socket.o test1284.o usb.o
+TARGETS        =       test1284 testbackend testsupplies \
+               libbackend.a $(RBACKENDS) $(UBACKENDS)
+LIBOBJS        =       ieee1284.o network.o runloop.o snmp-supplies.o
+OBJS   =       ipp.o lpd.o dnssd.o pap.o parallel.o scsi.o serial.o snmp.o \
+               socket.o test1284.o testbackend.o testsupplies.o usb.o
 
 
 #
@@ -32,12 +33,26 @@ OBJS        =       betest.o ipp.o lpd.o pap.o parallel.o scsi.o \
 all:   $(TARGETS)
 
 
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
+
+
 #
 # Clean all object files...
 #
 
 clean:
-       $(RM) $(OBJS) $(TARGETS) $(LIBOBJS) http
+       $(RM) $(OBJS) $(TARGETS) $(LIBOBJS) http mdns
 
 
 #
@@ -52,10 +67,24 @@ depend:
 # 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)/backend
        for file in $(RBACKENDS); do \
-               $(LIBTOOL) $(INSTALL) -m 700 $$file $(SERVERBIN)/backend; \
+               $(LIBTOOL) $(INSTALL_BIN) -m 700 $$file $(SERVERBIN)/backend; \
        done
        for file in $(UBACKENDS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
@@ -70,6 +99,20 @@ install:     all
        fi
 
 
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
+
+
 #
 # Uninstall all targets...
 #
@@ -84,22 +127,33 @@ uninstall:
 
 
 #
-# betest
+# test1284
 #
 
-betest:        betest.o ../cups/$(LIBCUPS)
+test1284:      test1284.o ../cups/libcups.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o betest betest.o $(LIBS)
+       $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a \
+               $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
 
 
 #
-# test1284
+# testbackend
 #
 
-test1284:      test1284.o ../cups/libcups.a
+testbackend:   testbackend.o ../cups/libcups.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a \
-               $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
+       $(CC) $(LDFLAGS) -o testbackend testbackend.o ../cups/libcups.a \
+               $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# testsupplies
+#
+
+testsupplies:  testsupplies.o libbackend.a ../cups/libcups.a
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o testsupplies testsupplies.o libbackend.a \
+               ../cups/libcups.a $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
 
 
 #
@@ -114,24 +168,23 @@ libbackend.a:     $(LIBOBJS)
 
 
 #
-# ieee1394
+# dnssd
 #
 
-ieee1394:      ieee1394.o ieee1394-linux.o
+dnssd: dnssd.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o ieee1394 ieee1394.o ieee1394-linux.o -lraw1394 $(LIBS)
-
-ieee1394.o:            ieee1394.h
-ieee1394-linux.o:      ieee1394.h
+       $(CC) $(LDFLAGS) -o dnssd dnssd.o libbackend.a $(LIBS)
+       $(RM) mdns
+       $(LN) dnssd mdns
 
 
 #
 # ipp
 #
 
-ipp:   ipp.o ../cups/$(LIBCUPS)
+ipp:   ipp.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o ipp ipp.o $(LIBS)
+       $(CC) $(LDFLAGS) -o ipp ipp.o libbackend.a $(LIBS)
        $(RM) http
        $(LN) ipp http
 
@@ -140,9 +193,9 @@ ipp:        ipp.o ../cups/$(LIBCUPS)
 # lpd
 #
 
-lpd:   lpd.o ../cups/$(LIBCUPS)
+lpd:   lpd.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o lpd lpd.o $(LIBS)
+       $(CC) $(LDFLAGS) -o lpd lpd.o libbackend.a $(LIBS)
 
 
 #
@@ -207,8 +260,9 @@ socket:     socket.o ../cups/$(LIBCUPS) libbackend.a
 
 usb:   usb.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o usb usb.o libbackend.a $(BACKLIBS) $(LIBS)
-usb.o: usb.c usb-darwin.c usb-unix.c
+       $(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
 
 
 #
@@ -219,5 +273,5 @@ include Dependencies
 
 
 #
-# End of "$Id: Makefile 6649 2007-07-11 21:46:42Z mike $".
+# End of "$Id: Makefile 7687 2008-06-24 01:28:36Z mike $".
 #