]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - test/Makefile
Remove all of the Subversion keywords from various source files.
[thirdparty/cups.git] / test / Makefile
index f621fa66c39ee9add8dc2208f6252d1dc14e1f0b..4922d6ae9adecc13fbba77d940c14a6f61aba8a7 100644 (file)
@@ -1,16 +1,14 @@
 #
-# "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $"
+# IPP test makefile for CUPS.
 #
-#   IPP test makefile for CUPS.
+# Copyright 2007-2014 by Apple Inc.
+# Copyright 1997-2006 by Easy Software Products, all rights reserved.
 #
-#   Copyright 2007-2010 by Apple Inc.
-#   Copyright 1997-2006 by Easy Software Products, all rights reserved.
-#
-#   These coded instructions, statements, and computer programs are the
-#   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/".
+# These coded instructions, statements, and computer programs are the
+# 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/".
 #
 
 include ../Makedefs
@@ -20,24 +18,57 @@ include ../Makedefs
 # Sample test files.
 #
 
+DATAFILES      =       \
+                       color.jpg \
+                       document-a4.pdf \
+                       document-a4.ps \
+                       document-letter.pdf \
+                       document-letter.ps \
+                       gray.jpg \
+                       onepage-a4.pdf \
+                       onepage-a4.ps \
+                       onepage-letter.pdf \
+                       onepage-letter.ps \
+                       testfile.jpg \
+                       testfile.pcl \
+                       testfile.pdf \
+                       testfile.ps \
+                       testfile.txt
 TESTFILES      =       \
                        create-printer-subscription.test \
                        get-completed-jobs.test \
                        get-jobs.test \
+                       get-notifications.test \
+                       get-printer-attributes.test \
+                       get-subscriptions.test \
                        ipp-1.1.test \
                        ipp-2.0.test \
                        ipp-2.1.test \
-                       testfile.jpg \
-                       testfile.pdf \
-                       testfile.ps \
-                       testfile.txt
+                       ipp-2.2.test \
+                       ipp-everywhere.test \
+                       print-job.test \
+                       print-job-deflate.test \
+                       print-job-gzip.test \
+                       validate-job.test
+OBJS           =       \
+                       ippfind.o \
+                       ippinfra.o \
+                       ippproxy.o \
+                       ippserver.o \
+                       ipptool.o \
+                       xmltotest.o
+TARGETS                =       \
+                       $(IPPFIND_BIN) \
+                       ippserver \
+                       ipptool \
+                       ipptool-static
 
 
 #
 # Make all targets...
 #
 
-all:   ipptool ipptool-static
+all:           $(TARGETS)
 
 
 #
@@ -59,7 +90,7 @@ unittests:
 #
 
 clean:
-       $(RM) ipptool ipptool.o ipptool-static
+       $(RM) $(TARGETS) $(OBJS) ippfind-static ippinfra ippinfra-shared ippproxy ippproxy-shared ippserver-shared
 
 
 #
@@ -67,7 +98,7 @@ clean:
 #
 
 depend:
-       makedepend -Y -I.. -fDependencies ipptool.c >/dev/null 2>&1
+       $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
 
 
 #
@@ -84,6 +115,9 @@ install:     all install-data install-headers install-libs install-exec
 install-data:
        echo Installing sample ipptool files in $(DATADIR)/ipptool...
        $(INSTALL_DIR) -m 755 $(DATADIR)/ipptool
+       for file in $(DATAFILES); do \
+               $(INSTALL_COMPDATA) $$file $(DATADIR)/ipptool; \
+       done
        for file in $(TESTFILES); do \
                $(INSTALL_DATA) $$file $(DATADIR)/ipptool; \
        done
@@ -97,9 +131,15 @@ install-exec:
        echo Installing ipptool in $(BINDIR)...
        $(INSTALL_DIR) -m 755 $(BINDIR)
        $(INSTALL_BIN) ipptool $(BINDIR)
+       if test -x ippfind; then \
+               $(INSTALL_BIN) ippfind $(BINDIR); \
+       fi
        if test "x$(SYMROOT)" != "x"; then \
                $(INSTALL_DIR) $(SYMROOT); \
+               cp ippfind $(SYMROOT); \
+               dsymutil $(SYMROOT)/ippfind; \
                cp ipptool $(SYMROOT); \
+               dsymutil $(SYMROOT)/ipptool; \
        fi
 
 
@@ -122,6 +162,83 @@ install-libs:
 #
 
 uninstall:
+       echo Uninstalling sample ipptool files from $(DATADIR)/ipptool...
+       for file in $(DATAFILES); do \
+               $(RM) $(DATADIR)/ipptool/$$file; \
+       done
+       for file in $(TESTFILES); do \
+               $(RM) $(DATADIR)/ipptool/$$file; \
+       done
+       -$(RMDIR) $(DATADIR)/ipptool
+
+
+#
+# ippfind
+#
+
+ippfind:       ippfind.o ../cups/$(LIBCUPS) ../cups/$(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippfind.o $(LIBS)
+       echo Linking $@-static...
+       $(CC) $(LDFLAGS) -o $@-static ippfind.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# ippinfra
+#
+
+ippinfra:      ippinfra.o ../cups/$(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippinfra.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# ippinfra-shared
+#
+
+ippinfra-shared:       ippinfra.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippinfra.o $(LIBS)
+
+
+#
+# ippproxy
+#
+
+ippproxy:      ippproxy.o ../cups/$(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippproxy.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# ippproxy-shared
+#
+
+ippproxy-shared:       ippproxy.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippproxy.o $(LIBS)
+
+
+#
+# ippserver
+#
+
+ippserver:     ippserver.o ../cups/$(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippserver.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# ippserver-shared
+#
+
+ippserver-shared:      ippserver.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ippserver.o $(LIBS)
 
 
 #
@@ -144,12 +261,18 @@ ipptool-static:   ipptool.o ../cups/$(LIBCUPSSTATIC)
 
 
 #
-# Dependencies...
+# xmltotest
 #
 
-include Dependencies
+xmltotest: xmltotest.o ../cups/$(LIBUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ xmltotest.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ) \
+               $(LIBMXML)
 
 
 #
-# End of "$Id: Makefile 7871 2008-08-27 21:12:43Z mike $".
+# Dependencies...
 #
+
+include Dependencies