]> Dogcows Code - chaz/tar/blob - doc/Makefile.am
Update copyright years.
[chaz/tar] / doc / Makefile.am
1 # Makefile for GNU tar documentation.
2
3 # Copyright 1994-1997, 1999-2001, 2003, 2006-2007, 2013-2014 Free
4 # Software Foundation, Inc.
5
6 # This file is part of GNU tar.
7
8 # GNU tar is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12
13 # GNU tar is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
21 info_TEXINFOS = tar.texi
22 tar_TEXINFOS = \
23 dumpdir.texi\
24 tar-snapshot-edit.texi\
25 fdl.texi\
26 freemanuals.texi\
27 genfile.texi\
28 header.texi\
29 intern.texi\
30 parse-datetime.texi\
31 rendition.texi\
32 snapshot.texi\
33 sparse.texi\
34 value.texi
35
36 dist_man_MANS=tar.1 $(RMT_8)
37 if PU_RMT_COND
38 RMT_8=rmt.8
39 endif
40
41 EXTRA_DIST = gendocs_template mastermenu.el texify.sed untabify.el rmt.8
42
43 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
44 # Just call 'make RENDITION=PROOF [target]' if you want PROOF rendition.
45 RENDITION = DISTRIB
46
47 MAKEINFOFLAGS=-D$(RENDITION)
48
49 header.texi: $(top_srcdir)/src/tar.h
50 sed -f $(srcdir)/texify.sed $(top_srcdir)/src/tar.h \
51 | expand >$@
52
53 master-menu: $(tar_TEXINFOS)
54 emacs -batch -l mastermenu.el -f make-master-menu $(info_TEXINFOS)
55
56 untabify:
57 emacs -batch -l untabify.el $(info_TEXINFOS) $(tar_TEXINFOS)
58
59 final: untabify master-menu
60
61 # Checking
62 check-format:
63 @if test -n "`cat $(info_TEXINFOS) $(tar_TEXINFOS) | tr -d -c '\t'`"; then \
64 echo "Sources contain tabs; run make untabify"; \
65 false; \
66 fi
67
68 check-options:
69 @ARGP_HELP_FMT='usage-indent=0,short-opt-col=0,long-opt-col=0,doc-opt-col=0,opt-doc-col=0,header-col=0,rmargin=1' \
70 $(top_builddir)/src/tar --usage | \
71 sed -n 's/^\[--\([^]\=\[]*\).*/\1/p' | sort | uniq > opts.$$$$;\
72 $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -E - \
73 $(info_TEXINFOS) | \
74 sed -n '/^@macro/,/^@end macro/d;s/@opindex *\([^@,]*\).*/\1/p' \
75 | sort | uniq > docs.$$$$;\
76 status=0;\
77 join -v1 opts.$$$$ docs.$$$$ > report.$$$$;\
78 if test -s report.$$$$; then \
79 echo 'Not documented options:'; \
80 cat report.$$$$; \
81 status=1; \
82 fi; \
83 join -v2 opts.$$$$ docs.$$$$ > report.$$$$;\
84 if test -s report.$$$$; then \
85 echo 'Non-existing options:';\
86 cat report.$$$$; \
87 status=1; \
88 fi; \
89 rm opts.$$$$ docs.$$$$ report.$$$$;\
90 test $$status -ne 0 && exit $$status
91
92 check-refs:
93 @for file in $(info_TEXINFOS) $(tar_TEXINFOS); \
94 do \
95 sed -e = $$file | \
96 sed -n 'N;/@FIXME-.*ref/{s/\(^[0-9][0-9]*\).*@FIXME-.*ref{\([^}]*\).*/'$$file':\1: \2/gp}'; \
97 done > $@-t; \
98 if [ -s $@-t ]; then \
99 echo "Unresolved cross-references:"; \
100 cat $@-t;\
101 rm $@-t; \
102 else \
103 rm -f $@-t; \
104 fi
105
106 check-fixmes:
107 @for file in $(info_TEXINFOS); \
108 do \
109 sed -e = $$file | \
110 sed -n 'N;/@FIXME{/{s/\(^[0-9][0-9]*\).*@FIXME{\([^}]*\).*/'$$file':\1: \2/gp}'; \
111 done > $@-t; \
112 if [ -s $@-t ]; then \
113 echo "Unresolved FIXMEs:"; \
114 cat $@-t; \
115 rm $@-t; \
116 false; \
117 else \
118 rm -f $@-t; \
119 fi
120
121 check-unrevised:
122 @grep -Hn @UNREVISED $(info_TEXINFOS) > $@-t; \
123 if [ -s $@-t ]; then \
124 echo "Unrevised nodes:"; \
125 cat $@-t; \
126 rm $@-t; \
127 false;\
128 else \
129 rm $@-t; \
130 fi
131
132 all-check-docs: check-format check-options check-refs check-fixmes check-unrevised
133
134 check-docs:
135 $(MAKE) -k all-check-docs
136
137 #
138
139 clean-local:
140 rm -rf manual
141
142 GENDOCS=gendocs.sh
143
144 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
145
146 # Make sure you set TEXINPUTS
147 # Usual value is:
148 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
149 manual:
150 TEXINPUTS=$(srcdir):$(top_srcdir)/build-tex:$(TEXINPUTS) \
151 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
152 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
153 $(GENDOCS) --texi2html tar 'GNU tar manual'
This page took 0.035164 seconds and 4 git commands to generate.