]> 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 87443fcfd6a59bb972a7d4a6b1c01a0c3dcf68b2..4922d6ae9adecc13fbba77d940c14a6f61aba8a7 100644 (file)
@@ -1,35 +1,88 @@
 #
-# "$Id$"
+# IPP test makefile for CUPS.
 #
-#   IPP test makefile for the Common UNIX Printing System (CUPS).
+# Copyright 2007-2014 by Apple Inc.
+# Copyright 1997-2006 by Easy Software Products, all rights reserved.
 #
-#   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 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
+
+include ../Makedefs
+
+
 #
-#       Voice: (301) 373-9600
-#       EMail: cups-info@cups.org
-#         WWW: http://www.cups.org
+# Sample test files.
 #
 
-include ../Makedefs
+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 \
+                       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:   ipptest
+all:           $(TARGETS)
+
+
+#
+# Make library targets...
+#
+
+libs:
+
+
+#
+# Make unit tests...
+#
+
+unittests:
 
 
 #
@@ -37,7 +90,7 @@ all:  ipptest
 #
 
 clean:
-       $(RM) ipptest ipptest.o
+       $(RM) $(TARGETS) $(OBJS) ippfind-static ippinfra ippinfra-shared ippproxy ippproxy-shared ippserver-shared
 
 
 #
@@ -45,14 +98,63 @@ clean:
 #
 
 depend:
-       makedepend -Y -I.. -fDependencies ipptest.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:
+       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
+
+
+#
+# Install programs...
+#
+
+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
+
+
+#
+# Install headers...
+#
+
+install-headers:
+
+
+#
+# Install libraries...
+#
+
+install-libs:
 
 
 #
@@ -60,25 +162,117 @@ install: all
 #
 
 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
 
 
 #
-# ipptest
+# ippfind
 #
 
-ipptest:       ipptest.o ../cups/libcups.a
+ippfind:       ippfind.o ../cups/$(LIBCUPS) ../cups/$(LIBCUPSSTATIC)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o ipptest ipptest.o  ../cups/libcups.a \
-               $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
+       $(CC) $(LDFLAGS) -o $@ ippfind.o $(LIBS)
+       echo Linking $@-static...
+       $(CC) $(LDFLAGS) -o $@-static ippfind.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
 
 
 #
-# Dependencies...
+# ippinfra
 #
 
-include Dependencies
+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)
 
 
 #
-# End of "$Id$".
+# 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)
+
+
+#
+# ipptool
+#
+
+ipptool:       ipptool.o ../cups/$(LIBCUPS)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ipptool.o $(LIBS)
+
+
+#
+# ipptool-static
+#
+
+ipptool-static:        ipptool.o ../cups/$(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ ipptool.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
+#
+# xmltotest
+#
+
+xmltotest: xmltotest.o ../cups/$(LIBUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(LDFLAGS) -o $@ xmltotest.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ) \
+               $(LIBMXML)
+
+
+#
+# Dependencies...
+#
+
+include Dependencies