]> Dogcows Code - chaz/tar/blob - doc/Makefile.am
Use texi2html and the CVS version of gendocs.sh to create HTML versions of the manual
[chaz/tar] / doc / Makefile.am
1 # Makefile for GNU tar documentation.
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006,
4 # 2007 Free Software Foundation, Inc.
5
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 3, or (at your option)
9 ## any later version.
10
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ## GNU General Public License for more details.
15
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software Foundation,
18 ## Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20 info_TEXINFOS = tar.texi
21 tar_TEXINFOS = \
22 dumpdir.texi\
23 tar-snapshot-edit.texi\
24 fdl.texi\
25 freemanuals.texi\
26 genfile.texi\
27 getdate.texi\
28 header.texi\
29 intern.texi\
30 rendition.texi\
31 snapshot.texi\
32 sparse.texi\
33 value.texi
34 EXTRA_DIST = gendocs_template mastermenu.el texify.sed
35
36 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
37 # Just call `make RENDITION=PROOF [target]' if you want PROOF rendition.
38 RENDITION = DISTRIB
39
40 MAKEINFOFLAGS=-D$(RENDITION)
41
42 header.texi: $(top_srcdir)/src/tar.h
43 sed -f $(srcdir)/texify.sed $(top_srcdir)/src/tar.h \
44 | expand >$@
45
46 master-menu: $(tar_TEXINFOS)
47 emacs -batch -l mastermenu.el -f make-master-menu $(info_TEXINFOS)
48
49 check-options:
50 @ARGP_HELP_FMT='usage-indent=0,short-opt-col=0,long-opt-col=0,\
51 doc-opt-col=0,opt-doc-col=0,header-col=0,rmargin=1' \
52 $(top_builddir)/src/tar --usage | \
53 sed -n 's/^\[--\([^]\=\[]*\).*/\1/p' | sort | uniq > opts.$$$$;\
54 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -E - \
55 $(info_TEXINFOS) | \
56 sed -n '/^@macro/,/^@end macro/d;s/@opindex *\([^@,]*\).*/\1/p' \
57 | sort | uniq > docs.$$$$;\
58 (echo 'Not documented options:';\
59 join -v1 opts.$$$$ docs.$$$$;\
60 echo 'Non-existing options:';\
61 join -v2 opts.$$$$ docs.$$$$) > report.$$$$;\
62 rm opts.$$$$ docs.$$$$;\
63 if [ -n "`sed '1,2d' report.$$$$`" ]; then \
64 cat report.$$$$;\
65 rm report.$$$$;\
66 exit 1;\
67 fi;\
68 rm report.$$$$
69
70
71 clean-local:
72 rm -rf manual
73
74 GENDOCS=gendocs.sh
75
76 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
77
78 # Make sure you set TEXINPUTS
79 # Usual value is:
80 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
81 manual:
82 TEXINPUTS=$(srcdir):$(top_srcdir)/build-tex:$(TEXINPUTS) \
83 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
84 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
85 $(GENDOCS) --texi2html tar 'GNU tar manual'
86
This page took 0.051163 seconds and 5 git commands to generate.