]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - backend/Makefile
Merge changes from CUPS 1.3.1.
[thirdparty/cups.git] / backend / Makefile
index 26ce19b4f9d193696a68ef42062f32e8a39e0edc..e02c2753877429b7b2c05121ca65416bcc4355b4 100644 (file)
@@ -1,35 +1,28 @@
 #
-# "$Id: Makefile 4903 2006-01-10 20:02:46Z mike $"
+# "$Id: Makefile 6778 2007-08-08 19:27:51Z mike $"
 #
 #   Backend makefile for the Common UNIX Printing System (CUPS).
 #
-#   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+#   Copyright 2007 by Apple Inc.
+#   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
-#   property of Easy Software Products and are protected by Federal
-#   copyright law.  Distribution and use rights are outlined in the file
-#   "LICENSE.txt" which should have been included with this file.  If this
-#   file is missing or damaged please contact Easy Software Products
-#   at:
-#
-#       Attn: CUPS Licensing Information
-#       Easy Software Products
-#       44141 Airport View Drive, Suite 204
-#       Hollywood, Maryland 20636 USA
-#
-#       Voice: (301) 373-9600
-#       EMail: cups-info@cups.org
-#         WWW: http://www.cups.org
+#   property of Apple Inc. and are protected by Federal copyright
+#   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+#   which should have been included with this file.  If this file is
+#   file is missing or damaged, see the license at "http://www.cups.org/".
 #
 #   This file is subject to the Apple OS-Developed Software exception.
 #
 
 include ../Makedefs
 
-BACKENDS =     ipp lpd parallel scsi serial socket usb
-TARGETS        =       betest test1284 $(BACKENDS)
-OBJS   =       betest.o ipp.o lpd.o parallel.o scsi.o \
-               serial.o socket.o test1284.o usb.o
+RBACKENDS =    ipp lpd
+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
 
 
 #
@@ -44,7 +37,7 @@ all:  $(TARGETS)
 #
 
 clean:
-       $(RM) $(OBJS) $(TARGETS) http
+       $(RM) $(OBJS) $(TARGETS) $(LIBOBJS) http
 
 
 #
@@ -60,12 +53,34 @@ depend:
 #
 
 install:       all
-       $(INSTALL_DIR) $(SERVERBIN)/backend
-       for file in $(BACKENDS); do \
+       $(INSTALL_DIR) -m 755 $(SERVERBIN)/backend
+       for file in $(RBACKENDS); do \
+               $(LIBTOOL) $(INSTALL) -m 700 $$file $(SERVERBIN)/backend; \
+       done
+       for file in $(UBACKENDS); do \
                $(INSTALL_BIN) $$file $(SERVERBIN)/backend; \
        done
        $(RM) $(SERVERBIN)/backend/http
        $(LN) ipp $(SERVERBIN)/backend/http
+       if test "x$(SYMROOT)" != "x"; then \
+               $(INSTALL_DIR) $(SYMROOT); \
+               for file in $(TARGETS); do \
+                       cp $$file $(SYMROOT); \
+               done \
+       fi
+
+
+#
+# Uninstall all targets...
+#
+
+uninstall:
+       for file in $(RBACKENDS) $(UBACKENDS); do \
+               $(RM) $(SERVERBIN)/backend/$$file; \
+       done
+       $(RM) $(SERVERBIN)/backend/http
+       -$(RMDIR) $(SERVERBIN)/backend
+       -$(RMDIR) $(SERVERBIN)
 
 
 #
@@ -83,7 +98,19 @@ betest:      betest.o ../cups/$(LIBCUPS)
 
 test1284:      test1284.o ../cups/libcups.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a
+       $(CC) $(LDFLAGS) -o test1284 test1284.o ../cups/libcups.a \
+               $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# libbackend.a
+#
+
+libbackend.a:  $(LIBOBJS)
+       echo Archiving $@...
+       $(RM) $@
+       $(AR) $(ARFLAGS) $@ $(LIBOBJS)
+       $(RANLIB) $@
 
 
 #
@@ -118,13 +145,22 @@ lpd:      lpd.o ../cups/$(LIBCUPS)
        $(CC) $(LDFLAGS) -o lpd lpd.o $(LIBS)
 
 
+#
+# pap
+#
+
+pap:   pap.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o pap pap.o $(BACKLIBS) $(LIBS) -framework AppleTalk
+
+
 #
 # parallel
 #
 
-parallel:      parallel.o ../cups/$(LIBCUPS)
+parallel:      parallel.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o parallel parallel.o $(LIBS)
+       $(CC) $(LDFLAGS) -o parallel parallel.o libbackend.a $(LIBS)
 
 
 #
@@ -142,28 +178,37 @@ scsi.o:   scsi.c scsi-irix.c scsi-linux.c
 # serial
 #
 
-serial:        serial.o ../cups/$(LIBCUPS)
+serial:        serial.o ../cups/$(LIBCUPS) libbackend.a
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o serial serial.o libbackend.a $(BACKLIBS) $(LIBS)
+
+
+#
+# snmp
+#
+
+snmp:  snmp.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o serial serial.o $(BACKLIBS) $(LIBS)
+       $(CC) $(LDFLAGS) -o snmp snmp.o libbackend.a $(LIBS)
 
 
 #
 # socket
 #
 
-socket:        socket.o ../cups/$(LIBCUPS)
+socket:        socket.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o socket socket.o $(LIBS)
+       $(CC) $(LDFLAGS) -o socket socket.o libbackend.a $(LIBS)
 
 
 #
 # usb
 #
 
-usb:   usb.o ../cups/$(LIBCUPS)
+usb:   usb.o ../cups/$(LIBCUPS) libbackend.a
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o usb usb.o $(BACKLIBS) $(LIBS)
-usb.o: usb.c usb-darwin.c usb-unix.c ieee1284.c
+       $(CC) $(LDFLAGS) -o usb usb.o libbackend.a $(BACKLIBS) $(LIBS)
+usb.o: usb.c usb-darwin.c usb-unix.c
 
 
 #
@@ -174,5 +219,5 @@ include Dependencies
 
 
 #
-# End of "$Id: Makefile 4903 2006-01-10 20:02:46Z mike $".
+# End of "$Id: Makefile 6778 2007-08-08 19:27:51Z mike $".
 #