aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/Makefile.am
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-03-04 10:09:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-03-04 10:09:48 +0000
commit01f04b9a4127aa2bfb9cdaa8b2d4114268f45514 (patch)
treea4245a962cd4878986473a539e08dac49c14364f /docs/libcurl/Makefile.am
parent34f9ab1046d178e6512c966f4aad5e6a5a46ad33 (diff)
ripped out from ../ and put in its own directory now
Diffstat (limited to 'docs/libcurl/Makefile.am')
-rw-r--r--docs/libcurl/Makefile.am68
1 files changed, 68 insertions, 0 deletions
diff --git a/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am
new file mode 100644
index 000000000..c6d6c9d46
--- /dev/null
+++ b/docs/libcurl/Makefile.am
@@ -0,0 +1,68 @@
+#
+# $Id$
+#
+
+AUTOMAKE_OPTIONS = foreign no-dependencies
+
+man_MANS = \
+ 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
+
+HTMLPAGES = \
+ 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
+
+EXTRA_DIST = $(man_MANS) $(HTMLPAGES)
+
+MAN2HTML= gnroff -man $< | man2html >$@
+
+SUFFIXES = .1 .3 .html
+
+html: $(HTMLPAGES)
+
+.3.html:
+ $(MAN2HTML)
+
+.1.html:
+ $(MAN2HTML)