Revert "Update to 7.44.0"
[platform/upstream/curl.git] / docs / Makefile.am
index 26a1713..1f92911 100644 (file)
@@ -1,77 +1,62 @@
+#***************************************************************************
+#                                  _   _ ____  _
+#  Project                     ___| | | |  _ \| |
+#                             / __| | | | |_) | |
+#                            | (__| |_| |  _ <| |___
+#                             \___|\___/|_| \_\_____|
 #
-# $Id$
+# Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
 #
+# This software is licensed as described in the file COPYING, which
+# you should have received as part of this distribution. The terms
+# are also available at http://curl.haxx.se/docs/copyright.html.
+#
+# You may opt to use, copy, modify, merge, publish, distribute and/or sell
+# copies of the Software, and permit persons to whom the Software is
+# furnished to do so, under the terms of the COPYING file.
+#
+# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+# KIND, either express or implied.
+#
+###########################################################################
 
 AUTOMAKE_OPTIONS = foreign no-dependencies
 
-man_MANS = \
-       curl.1 \
-       curl-config.1 \
-       curl_easy_cleanup.3 \
-       curl_easy_getinfo.3 \
-       curl_easy_init.3 \
-       curl_easy_perform.3 \
-       curl_easy_setopt.3 \
-       curl_easy_duphandle.3 \
-       curl_formparse.3 \
-       curl_formadd.3 \
-       curl_formfree.3 \
-       curl_getdate.3 \
-       curl_getenv.3 \
-       curl_slist_append.3 \
-       curl_slist_free_all.3 \
-       curl_version.3 \
-       curl_escape.3 \
-       curl_unescape.3 \
-       curl_strequal.3 \
-       curl_strnequal.3 \
-       curl_mprintf.3 \
-       curl_global_init.3 \
-       curl_global_cleanup.3 \
-       libcurl.3
+man_MANS = curl.1 curl-config.1
+noinst_man_MANS = mk-ca-bundle.1
+GENHTMLPAGES = curl.html curl-config.html mk-ca-bundle.html
+PDFPAGES = curl.pdf curl-config.pdf mk-ca-bundle.pdf
+
+HTMLPAGES = $(GENHTMLPAGES) index.html
 
-SUBDIRS = examples
+SUBDIRS = examples libcurl
 
-HTMLPAGES = \
-       curl.html \
-       curl-config.html \
-       curl_easy_cleanup.html \
-       curl_easy_getinfo.html \
-       curl_easy_init.html \
-       curl_easy_perform.html \
-       curl_easy_setopt.html \
-       curl_easy_duphandle.html \
-       curl_formadd.html \
-       curl_formparse.html \
-       curl_formfree.html \
-       curl_getdate.html \
-       curl_getenv.html \
-       curl_slist_append.html \
-       curl_slist_free_all.html \
-       curl_version.html \
-       curl_escape.html \
-       curl_unescape.html \
-       curl_strequal.html \
-       curl_strnequal.html \
-       curl_mprintf.html \
-       curl_global_init.html \
-       curl_global_cleanup.html \
-       libcurl.html \
-       index.html
+CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES)
 
-EXTRA_DIST = $(man_MANS) \
-       MANUAL BUGS CONTRIBUTE FAQ FEATURES INTERNALS \
-       README.win32 RESOURCES TODO TheArtOfHttpScripting THANKS \
-       VERSIONS $(HTMLPAGES)
+EXTRA_DIST = MANUAL BUGS CONTRIBUTE FAQ FEATURES INTERNALS SSLCERTS     \
+ README.win32 RESOURCES TODO TheArtOfHttpScripting THANKS VERSIONS      \
+ KNOWN_BUGS BINDINGS $(man_MANS) $(HTMLPAGES) HISTORY INSTALL           \
+ $(PDFPAGES) LICENSE-MIXING README.netware DISTRO-DILEMMA INSTALL.devcpp \
+ MAIL-ETIQUETTE HTTP-COOKIES LIBCURL-STRUCTS SECURITY RELEASE-PROCEDURE  \
+ SSL-PROBLEMS
 
-MAN2HTML= gnroff -man $< | man2html >$@
+MAN2HTML= roffit < $< >$@
 
-SUFFIXES = .1 .3 .html
+SUFFIXES = .1 .html .pdf
 
 html: $(HTMLPAGES)
+       cd libcurl; make html
 
-.3.html:
-       $(MAN2HTML)
+pdf: $(PDFPAGES)
+       cd libcurl; make pdf
 
 .1.html:
        $(MAN2HTML)
+
+.1.pdf:
+       @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
+       groff -Tps -man $< >$$foo.ps; \
+       ps2pdf $$foo.ps $@; \
+       rm $$foo.ps; \
+       echo "converted $< to $@")
+