]> Dogcows Code - chaz/tar/blob - doc/Makefile.am
(tar_TEXINFOS): Add dumpdir.texi
[chaz/tar] / doc / Makefile.am
1 # Makefile for GNU tar documentation.
2
3 # Copyright (C) 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2003 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 header.texi\
28 rendition.texi\
29 snapshot.texi\
30 value.texi
31 EXTRA_DIST = convtexi.pl gendocs_template
32 DISTCLEANFILES=*.info*
33
34 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
35 # Just call `make RENDITION=PROOF [target]' if you want PROOF rendition.
36 RENDITION = DISTRIB
37
38 MAKEINFOFLAGS=-D$(RENDITION)
39
40 header.texi: $(top_srcdir)/src/tar.h
41 sed -n '/Archive Format/,/End of Format/p' $(top_srcdir)/src/tar.h \
42 | expand | sed 's/\([{}]\)/@\1/g' >$@
43
44 clean-local:
45 rm -rf manual
46
47 GENDOCS=gendocs.sh
48
49 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
50
51 # Make sure you set TEXINPUTS
52 # Usual value is:
53 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
54 manual:
55 TEXINPUTS=$(srcdir):$(top_srcdir)/config:$(TEXINPUTS) \
56 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
57 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
58 $(GENDOCS) tar 'GNU tar manual'
59
This page took 0.046658 seconds and 5 git commands to generate.