]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/Makefile
Save work on documentation.
[thirdparty/cups.git] / cups / Makefile
index 473328b51f80f24ed15d2d5dadb0e65d405c068f..962bee636ca3c59f5bf3b550d002e906db7cc252 100644 (file)
@@ -1,16 +1,14 @@
 #
-# "$Id$"
-#
 # API library Makefile for CUPS.
 #
-# Copyright 2007-2015 by Apple Inc.
+# Copyright 2007-2016 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/".
+# missing or damaged, see the license at "http://www.cups.org/".
 #
 # This file is subject to the Apple OS-Developed Software exception.
 #
@@ -87,6 +85,7 @@ TESTOBJS      = \
                testarray.o \
                testcache.o \
                testconflicts.o \
+               testcreds.o \
                testcups.o \
                testdest.o \
                testfile.o \
@@ -155,6 +154,7 @@ UNITTARGETS =       \
                testarray \
                testcache \
                testconflicts \
+               testcreds \
                testcups \
                testdest \
                testfile \
@@ -367,7 +367,7 @@ libcups.a:  $(LIBOBJS)
 libcups2.def: $(LIBOBJS) Makefile
        echo Generating $@...
        echo "LIBRARY libcups2" >libcups2.def
-       echo "VERSION 2.11" >>libcups2.def
+       echo "VERSION 2.12" >>libcups2.def
        echo "EXPORTS" >>libcups2.def
        (nm $(LIBOBJS) 2>/dev/null | grep "T _" | awk '{print $$3}'; \
         echo __cups_strcpy; echo __cups_strlcat; echo __cups_strlcpy) | \
@@ -419,6 +419,16 @@ testconflicts:     testconflicts.o $(LIBCUPSSTATIC)
                $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
 
 
+#
+# testcreds (dependency on static CUPS library is intentional)
+#
+
+testcreds:     testcreds.o $(LIBCUPSSTATIC)
+       echo Linking $@...
+       $(CC) $(ARCHFLAGS) $(LDFLAGS) -o $@ testcreds.o $(LIBCUPSSTATIC) \
+               $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) $(COMMONLIBS) $(LIBZ)
+
+
 #
 # testcups (dependency on static CUPS library is intentional)
 #
@@ -561,49 +571,27 @@ tlscheck: tlscheck.o $(LIBCUPSSTATIC)
 
 apihelp:
        echo Generating CUPS API help files...
-       mxmldoc --section "Programming" \
-               --title "Introduction to CUPS Programming" \
-               --css ../doc/cups-printable.css \
-               --header api-overview.header --intro api-overview.shtml \
-               >../doc/help/api-overview.html
-       mxmldoc --section "Programming" --title "Array API" \
-               --css ../doc/cups-printable.css \
-               --header api-array.header --intro api-array.shtml \
-               api-array.xml \
-               array.h array.c >../doc/help/api-array.html
-       mxmldoc --tokens help/api-array.html api-array.xml >../doc/help/api-array.tokens
-       $(RM) api-array.xml
-       mxmldoc --section "Programming" --title "CUPS API" \
-               --css ../doc/cups-printable.css \
-               --header api-cups.header --intro api-cups.shtml \
-               api-cups.xml \
-               cups.h pwg.h adminutil.c dest*.c language.c notify.c \
-               options.c pwg-media.c tempfile.c usersys.c \
-               util.c >../doc/help/api-cups.html
-       mxmldoc --tokens help/api-cups.html api-cups.xml >../doc/help/api-cups.tokens
-       $(RM) api-cups.xml
-       mxmldoc --section "Programming" --title "File and Directory APIs" \
+       $(RM) cupspm.xml
+       mxmldoc --section "Programming" --body cupspm.md \
+               cupspm.xml \
+               auth.c cups.h dest*.c encode.c http.h http*.c ipp.h ipp*.c \
+               options.c tls-darwin.c usersys.c util.c \
+               --coverimage cupspm.png \
+               --epub ../doc/help/cupspm.epub
+       mxmldoc --section "Programming" --body cupspm.md \
+               cupspm.xml > ../doc/help/cupspm.html
+       $(RM) cupspm.xml
+       mxmldoc --section "Programming" --title "Administration APIs" \
                --css ../doc/cups-printable.css \
-               --header api-filedir.header --intro api-filedir.shtml \
-               api-filedir.xml \
-               file.h file.c dir.h dir.c >../doc/help/api-filedir.html
-       mxmldoc --tokens api-filedir.xml >../doc/help/api-filedir.tokens
-       $(RM) api-filedir.xml
+               --header api-admin.header --intro api-admin.shtml \
+               api-admin.xml \
+               adminutil.c adminutil.h getdevices.c >../doc/help/api-admin.html
+       $(RM) api-admin.xml
        mxmldoc --section "Programming" --title "PPD API (DEPRECATED)" \
                --css ../doc/cups-printable.css \
                --header api-ppd.header --intro api-ppd.shtml \
                api-ppd.xml ppd.h ppd-*.c >../doc/help/api-ppd.html
-       mxmldoc --tokens help/api-ppd.html api-ppd.xml >../doc/help/api-ppd.tokens
        $(RM) api-ppd.xml
-       mxmldoc --section "Programming" --title "HTTP and IPP APIs" \
-               --css ../doc/cups-printable.css \
-               --header api-httpipp.header --intro api-httpipp.shtml \
-               api-httpipp.xml \
-               http.h ipp.h auth.c getdevices.c getputfile.c encode.c \
-               http.c http-addr.c http-support.c ipp.c ipp-support.c \
-               md5passwd.c request.c >../doc/help/api-httpipp.html
-       mxmldoc --tokens help/api-httpipp.html api-httpipp.xml >../doc/help/api-httpipp.tokens
-       $(RM) api-httpipp.xml
        mxmldoc --section "Programming" \
                --title "Filter and Backend Programming" \
                --css ../doc/cups-printable.css \
@@ -611,61 +599,14 @@ apihelp:
                api-filter.xml \
                backchannel.c backend.h backend.c sidechannel.c sidechannel.h \
                >../doc/help/api-filter.html
-       mxmldoc --tokens help/api-filter.html api-filter.xml >../doc/help/api-filter.tokens
        $(RM) api-filter.xml
 
-framedhelp:
-       echo Generating CUPS API help files...
-       mxmldoc --framed api-overview \
-               --section "Programming" \
-               --title "Introduction to CUPS Programming" \
-               --css ../doc/cups-printable.css \
-               --header api-overview.header --intro api-overview.shtml
-       mxmldoc --framed api-array \
-               --section "Programming" --title "Array API" \
-               --css ../doc/cups-printable.css \
-               --header api-array.header --intro api-array.shtml \
-               array.h array.c
-       mxmldoc --framed api-cups \
-               --section "Programming" --title "CUPS API" \
-               --css ../doc/cups-printable.css \
-               --header api-cups.header --intro api-cups.shtml \
-               cups.h adminutil.c dest*.c language.c notify.c \
-               options.c tempfile.c usersys.c \
-               util.c
-       mxmldoc --framed api-filedir \
-               --section "Programming" --title "File and Directory APIs" \
-               --css ../doc/cups-printable.css \
-               --header api-filedir.header --intro api-filedir.shtml \
-               file.h file.c dir.h dir.c
-       mxmldoc --framed api-ppd \
-               --section "Programming" --title "PPD API (DEPRECATED)" \
-               --css ../doc/cups-printable.css \
-               --header api-ppd.header --intro api-ppd.shtml \
-               ppd.h attr.c conflicts.c custom.c emit.c localize.c mark.c \
-               page.c ppd.c
-       mxmldoc --framed api-httpipp \
-               --section "Programming" --title "HTTP and IPP APIs" \
-               --css ../doc/cups-printable.css \
-               --header api-httpipp.header --intro api-httpipp.shtml \
-               http.h ipp.h auth.c getdevices.c getputfile.c encode.c \
-               http.c http-addr.c http-support.c ipp.c ipp-support.c \
-               md5passwd.c request.c
-       mxmldoc --framed api-filter \
-               --section "Programming" \
-               --title "Filter and Backend Programming" \
-               --css ../doc/cups-printable.css \
-               --header api-filter.header --intro api-filter.shtml \
-               backchannel.c backend.h backend.c sidechannel.c sidechannel.h
-
 
 #
 # Lines of code computation...
 #
 
 sloc:
-       echo "libcupslite: \c"
-       sloccount $(LITEOBJS:.o=.c) 2>/dev/null | grep "Total Physical" | awk '{print $$9}'
        echo "libcups: \c"
        sloccount $(LIBOBJS:.o=.c) 2>/dev/null | grep "Total Physical" | awk '{print $$9}'
 
@@ -676,8 +617,3 @@ sloc:
 
 include Dependencies
 tls.o: tls-darwin.c tls-gnutls.c tls-sspi.c
-
-
-#
-# End of "$Id$".
-#