Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2000-04-19 06:31:45 +0400
committerDJ Delorie <dj@redhat.com>2000-04-19 06:31:45 +0400
commitca271663abed495863bb01e097155d6fef951697 (patch)
tree6debde725c8ab41646506ef87c0fcd331947521a /winsup/doc/Makefile.in
parent05357ffef2e0c5c5715d868500bc001d6f39800a (diff)
add commands for building a doc kitchen-sink-tarball
Diffstat (limited to 'winsup/doc/Makefile.in')
-rw-r--r--winsup/doc/Makefile.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/winsup/doc/Makefile.in b/winsup/doc/Makefile.in
index 988f388a6..0ef5bcf72 100644
--- a/winsup/doc/Makefile.in
+++ b/winsup/doc/Makefile.in
@@ -71,6 +71,18 @@ cygwin-api-int.sgml : cygwin-api.in.sgml ./doctool Makefile
./doctool : doctool.c
gcc -g $< -o $@
+%.dvi: %.sgml
+ -db2dvi $<
+
+%.rtf: %.sgml
+ -db2rtf $<
+
+%.ps: %.sgml
+ -db2ps $<
+
+%.pdf: %.ps
+ -ps2pdf $< $@
+
%.info: %.texinfo
-$(MAKEINFO) -I$(srcdir) $<
@@ -91,3 +103,14 @@ faq.html: $(srcdir)/faq.texinfo $(srcdir)/*.texinfo
$(TEXI2HTML) -split_chapter -v ./faq.texinfo; \
rm -f *.texinfo; \
cp faq_toc.html faq.html
+
+TBFILES = cygwin-ug-net.dvi cygwin-ug-net.rtf cygwin-ug-net.ps \
+ cygwin-ug-net.pdf cygwin-ug-net.sgml \
+ cygwin-api-int.dvi cygwin-api-int.rtf cygwin-api-int.ps \
+ cygwin-api-int.pdf cygwin-api-int.sgml
+TBDIRS = cygwin-ug-net cygwin-api-int
+TBDEPS = cygwin-ug-net/cygwin-ug-net.html cygwin-api-int/cygwin-api-int.html
+
+tarball : cygwin-docs.tar.gz
+cygwin-docs.tar.gz : $(TBFILES) $(TBDEPS)
+ tar cf - $(TBFILES) $(TBDIRS) | gzip -9 > cygwin-docs.tar.gz