summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 11:15:29 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-05-20 11:15:29 +0000
commit7c303b5563f6b28f690ac5c8b62f56b44b0eca84 (patch)
tree2dc45751f697153738f29280aecc66e59b232e0a
parenta37b3fbed6c6d50e401d2a10df33a88ea91500c2 (diff)
downloadgnutls-7c303b5563f6b28f690ac5c8b62f56b44b0eca84.tar.gz
removed html version of the documentation
-rw-r--r--doc/tex/Makefile.am15
-rw-r--r--doc/tex/funcs.tex9
-rw-r--r--lib/Makefile.am6
3 files changed, 12 insertions, 18 deletions
diff --git a/doc/tex/Makefile.am b/doc/tex/Makefile.am
index 42476a1dc7..5773a5000f 100644
--- a/doc/tex/Makefile.am
+++ b/doc/tex/Makefile.am
@@ -1,7 +1,6 @@
-EXTRA_DIST = gnutls.tex gnutls.ps gnutls.html asn1.ps asn1.html \
+EXTRA_DIST = gnutls.tex gnutls.ps asn1.ps \
ex1.tex ex2.tex ex3.tex srp1.tex serv1.tex gnutls.css ex4.tex \
- fdl.tex cover.tex.in img1.png img3.png img5.png img2.png img4.png \
- img6.png img7.png gnutls-logo.ps layers.ps
+ fdl.tex cover.tex.in gnutls-logo.ps layers.ps
TEX_OBJECTS = gnutls.tex ../../lib/gnutls-api.tex serv1.tex ex1.tex ex2.tex ex3.tex fdl.tex \
macros.tex cover.tex ciphersuites.tex handshake.tex translayer.tex asn1.tex ../../lib/asn1-api.tex \
@@ -16,19 +15,11 @@ gnutls.ps: $(TEX_OBJECTS)
-$(LN_S) ../../lib/asn1-api.tex .
-latex gnutls.tex && latex gnutls.tex && dvips gnutls.dvi -o gnutls.ps
-gnutls.html: $(TEX_OBJECTS)
- -latex2html gnutls.tex -no_navigation -no_subdir 1 -split 0 -local_icons -html_version 3.2,math \
- -info "" -white
-
asn1.ps: $(ASN1_TEX_OBJECTS)
-$(LN_S) ../lib/asn1-api.tex .
-latex asn1.tex && latex asn1.tex && dvips asn1.dvi -o asn1.ps
-asn1.html: $(ASN1_TEX_OBJECTS)
- -latex2html asn1.tex -no_navigation -no_subdir 1 -split 0 -local_icons -html_version 3.2,math \
- -info "" -white
-
clean:
@-rm *.log *.aux *.toc
- @-rm *.pl index.html gnutls.dvi
+ @-rm *.pl gnutls.dvi
@-rm WARNINGS gnutls-api.tex gnutls-extra-api.tex
diff --git a/doc/tex/funcs.tex b/doc/tex/funcs.tex
index 48ddeabd35..ed012a5460 100644
--- a/doc/tex/funcs.tex
+++ b/doc/tex/funcs.tex
@@ -1,11 +1,14 @@
\chapter{Function reference}
\section{\gnutls{} library}
-\include{gnutls-api}
+\input{gnutls-api}
+
+\newpage
\section{\gnutlse{} library}
These functions are only available in the GPL version of the
-library called <gnutls-extra>. the prototypes are in <gnutls-extra.h>.
+library called ``gnutls-extra''. The prototypes for this library lie
+in ``gnutls-extra.h''.
-\include{gnutls-extra-api}
+\input{gnutls-extra-api}
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 815c42fda6..0f6d5bfbcf 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -59,21 +59,21 @@ gnutls_asn1_tab.c: gnutls.asn
-../src/asn1c gnutls.asn gnutls_asn1_tab.c
gnutls-api.tex: $(COBJECTS)
- @echo "\\newpage" > gnutls-api.tex
+ @echo "" > gnutls-api.tex
@for i in $(COBJECTS); \
do echo -n "Creating documentation for file $$i... " && ../doc/scripts/gdoc -tex $$i >> gnutls-api.tex \
&& echo "ok"; \
done
gnutls-extra-api.tex: $(COBJECTS_EXTRA)
- @echo "\\newpage" > gnutls-extra-api.tex
+ @echo "" > gnutls-extra-api.tex
@for i in $(COBJECTS_EXTRA); \
do echo -n "Creating documentation for file $$i... " && ../doc/scripts/gdoc -tex $$i >> gnutls-extra-api.tex \
&& echo "ok"; \
done
asn1-api.tex: $(COBJECTS2)
- @echo "\\newpage" > asn1-api.tex
+ @echo "" > asn1-api.tex
@for i in $(COBJECTS2); \
do echo -n "Creating documentation for file $$i... " && ../doc/scripts/gdoc -tex $$i >> asn1-api.tex \
&& echo "ok"; \