]> Dogcows Code - chaz/tar/blob - doc/Makefile.am
(check-options): New goal
[chaz/tar] / doc / Makefile.am
1 # Makefile for GNU tar documentation.
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006 Free
4 # 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 2, 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 fdl.texi\
24 freemanuals.texi\
25 genfile.texi\
26 getdate.texi\
27 intern.texi\
28 header.texi\
29 rendition.texi\
30 snapshot.texi\
31 value.texi
32 EXTRA_DIST = gendocs_template mastermenu.el texify.sed
33 DISTCLEANFILES=*.info*
34
35 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
36 # Just call `make RENDITION=PROOF [target]' if you want PROOF rendition.
37 RENDITION = DISTRIB
38
39 MAKEINFOFLAGS=-D$(RENDITION)
40
41 header.texi: $(top_srcdir)/src/tar.h
42 sed -f $(srcdir)/texify.sed $(top_srcdir)/src/tar.h \
43 | expand >$@
44
45 master-menu: $(tar_TEXINFOS)
46 emacs -batch -l mastermenu.el -f make-master-menu $(info_TEXINFOS)
47
48 check-options:
49 @ARGP_HELP_FMT='usage-indent=0,short-opt-col=0,long-opt-col=0,\
50 doc-opt-col=0,opt-doc-col=0,header-col=0,rmargin=1' \
51 $(top_builddir)/src/tar --usage | \
52 sed -n 's/^\[--\([^]\=\[]*\).*/\1/p' | sort | uniq > opts.$$$$;\
53 sed -n 's/@opindex *\([^,]*\)$$/\1/p;s/@opindex *\(.*\),.*/\1/p' \
54 $(info_TEXINFOS) | sort | uniq > docs.$$$$;\
55 (echo 'Not documented options:';\
56 join -v1 opts.$$$$ docs.$$$$;\
57 echo 'Non-existing options:';\
58 join -v2 opts.$$$$ docs.$$$$) > report.$$$$;\
59 rm opts.$$$$ docs.$$$$;\
60 if [ -n "`sed '1,2d' report.$$$$`" ]; then \
61 cat report.$$$$;\
62 rm report.$$$$;\
63 exit 1;\
64 fi;\
65 rm report.$$$$
66
67
68 clean-local:
69 rm -rf manual
70
71 GENDOCS=gendocs.sh
72
73 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
74
75 # Make sure you set TEXINPUTS
76 # Usual value is:
77 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
78 manual:
79 TEXINPUTS=$(srcdir):$(top_srcdir)/config:$(TEXINPUTS) \
80 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
81 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
82 $(GENDOCS) tar 'GNU tar manual'
83
This page took 0.043654 seconds and 5 git commands to generate.