]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - test/Makefile
Import CUPS v2.0.2
[thirdparty/cups.git] / test / Makefile
index f3e0fcf31270944037dd50c876eb10926ea9029f..cda505d315c3bccf057b041c5edae23b5eb7822e 100644 (file)
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $"
+# "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $"
 #
-#   IPP test makefile for the Common UNIX Printing System (CUPS).
+#   IPP test makefile for CUPS.
 #
-#   Copyright 2007-2008 by Apple Inc.
+#   Copyright 2007-2013 by Apple Inc.
 #   Copyright 1997-2006 by Easy Software Products, all rights reserved.
 #
 #   These coded instructions, statements, and computer programs are the
 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 \
+                       ipp-2.2.test \
+                       ipp-everywhere.test \
+                       print-job.test \
+                       print-job-deflate.test \
+                       print-job-gzip.test \
+                       validate-job.test
+OBJS           =       \
+                       ippfind.o \
+                       ippserver.o \
+                       ipptool.o \
+                       xmltotest.o
+TARGETS                =       \
+                       $(IPPFIND_BIN) \
+                       ippserver \
+                       ipptool \
+                       ipptool-static
+
+
 #
 # Make all targets...
 #
 
-all:   ipptest
+all:           $(TARGETS)
 
 
 #
@@ -42,7 +90,7 @@ unittests:
 #
 
 clean:
-       $(RM) ipptest ipptest.o
+       $(RM) $(TARGETS) $(OBJS) ippfind-static
 
 
 #
@@ -50,7 +98,7 @@ clean:
 #
 
 depend:
-       makedepend -Y -I.. -fDependencies ipptest.c >/dev/null 2>&1
+       $(CC) -MM $(ALL_CFLAGS) $(OBJS:.o=.c) >Dependencies
 
 
 #
@@ -65,6 +113,14 @@ 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
 
 
 #
@@ -72,6 +128,19 @@ install-data:
 #
 
 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
 
 
 #
@@ -93,16 +162,75 @@ 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)
+
+
+#
+# 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)
 
 
 #
-# ipptest
+# xmltotest
 #
 
-ipptest:       ipptest.o ../cups/libcups.a
+xmltotest: xmltotest.o ../cups/$(LIBUPSSTATIC)
        echo Linking $@...
-       $(CC) $(LDFLAGS) -o ipptest ipptest.o  ../cups/libcups.a \
-               $(LIBGSSAPI) $(SSLLIBS) $(COMMONLIBS) $(LIBZ)
+       $(CC) $(LDFLAGS) -o $@ xmltotest.o  ../cups/$(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ) \
+               $(LIBMXML)
 
 
 #
@@ -113,5 +241,5 @@ include Dependencies
 
 
 #
-# End of "$Id: Makefile 7558 2008-05-12 23:46:44Z mike $".
+# End of "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $".
 #