1 # Makefile for GNU tar documentation.
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003, 2006 Free
4 # Software Foundation, Inc.
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)
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.
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.
20 info_TEXINFOS = tar.texi
23 tar-snapshot-edit.texi\
34 EXTRA_DIST = gendocs_template mastermenu.el texify.sed
35 DISTCLEANFILES=*.info*
37 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
38 # Just call `make RENDITION=PROOF [target]' if you want PROOF rendition.
41 MAKEINFOFLAGS=-D$(RENDITION)
43 header.texi: $(top_srcdir)/src/tar.h
44 sed -f $(srcdir)/texify.sed $(top_srcdir)/src/tar.h \
47 master-menu: $(tar_TEXINFOS)
48 emacs -batch -l mastermenu.el -f make-master-menu $(info_TEXINFOS)
51 @ARGP_HELP_FMT='usage-indent=0,short-opt-col=0,long-opt-col=0,\
52 doc-opt-col=0,opt-doc-col=0,header-col=0,rmargin=1' \
53 $(top_builddir)/src/tar --usage | \
54 sed -n 's/^\[--\([^]\=\[]*\).*/\1/p' | sort | uniq > opts.$$$$;\
55 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -E - \
57 sed -n '/^@macro/,/^@end macro/d;s/@opindex *\([^@,]*\).*/\1/p' \
58 | sort | uniq > docs.$$$$;\
59 (echo 'Not documented options:';\
60 join -v1 opts.$$$$ docs.$$$$;\
61 echo 'Non-existing options:';\
62 join -v2 opts.$$$$ docs.$$$$) > report.$$$$;\
63 rm opts.$$$$ docs.$$$$;\
64 if [ -n "`sed '1,2d' report.$$$$`" ]; then \
77 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
79 # Make sure you set TEXINPUTS
81 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
83 TEXINPUTS=$(srcdir):$(top_srcdir)/build-tex:$(TEXINPUTS) \
84 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
85 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
86 $(GENDOCS) tar 'GNU tar manual'