]> Dogcows Code - chaz/tar/blob - doc/Makefile.am
Updated
[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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 info_TEXINFOS = tar.texi
21 tar_TEXINFOS = fdl.texi freemanuals.texi getdate.texi header.texi rendition.texi value.texi
22 EXTRA_DIST = convtexi.pl gendocs_template
23 DISTCLEANFILES=*.info*
24
25 # The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
26 # Just call `make RENDITION=PROOF [target]' if you want PROOF rendition.
27 RENDITION = DISTRIB
28
29 MAKEINFOFLAGS=-D$(RENDITION)
30
31 header.texi: $(top_srcdir)/src/tar.h
32 sed -n '/Archive Format/,/End of Format/p' $(top_srcdir)/src/tar.h \
33 | expand | sed 's/\([{}]\)/@\1/g' >$@
34
35 clean-local:
36 rm -rf manual
37
38 GENDOCS=gendocs.sh
39
40 TEXI2DVI=texi2dvi -t '@set $(RENDITION)' -E
41
42 # Make sure you set TEXINPUTS
43 # Usual value is:
44 # /usr/share/texmf/pdftex/plain/misc:/usr/share/texmf/pdftex/config
45 manual:
46 TEXINPUTS=$(srcdir):$(top_srcdir)/config:$(TEXINPUTS) \
47 MAKEINFO="$(MAKEINFO) $(MAKEINFOFLAGS)" \
48 TEXI2DVI="$(TEXI2DVI) -t @finalout" \
49 $(GENDOCS) tar 'GNU tar manual'
50
This page took 0.041585 seconds and 5 git commands to generate.