source: trunk/essentials/app-shells/bash/doc/Makefile.in@ 3263

Last change on this file since 3263 was 3254, checked in by bird, 19 years ago

VPATH

File size: 7.3 KB
Line 
1# This Makefile is for the Bash/documentation directory -*- text -*-.
2#
3# Copyright (C) 2003 Free Software Foundation, Inc.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2, or (at your option)
8# any later version.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
18
19PACKAGE = @PACKAGE_NAME@
20VERSION = @PACKAGE_VERSION@
21
22PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
23PACKAGE_NAME = @PACKAGE_NAME@
24PACKAGE_STRING = @PACKAGE_STRING@
25PACKAGE_VERSION = @PACKAGE_VERSION@
26
27#
28SHELL = @MAKE_SHELL@
29RM = rm -f
30
31topdir = @top_srcdir@
32srcdir = @srcdir@
33VPATH = .;@srcdir@
34
35prefix = @prefix@
36exec_prefix = @exec_prefix@
37
38infodir = @infodir@
39
40# set this to a directory name to have the HTML files installed
41htmldir = @htmldir@
42
43# Support an alternate destination root directory for package building
44DESTDIR =
45
46mandir = @mandir@
47manpfx = man
48
49man1ext = .1
50man1dir = $(mandir)/$(manpfx)1
51man3ext = .3
52man3dir = $(mandir)/$(manpfx)3
53
54INSTALL = @INSTALL@
55INSTALL_DATA = @INSTALL_DATA@
56BUILD_DIR = @BUILD_DIR@
57
58SUPPORT_SRCDIR = $(topdir)/support
59
60# bad style
61RL_LIBDIR = $(topdir)/lib/readline
62
63# unused
64TEXINDEX = texindex
65TEX = tex
66
67MAKEINFO = makeinfo
68TEXI2DVI = ${SUPPORT_SRCDIR}/texi2dvi
69TEXI2HTML = ${SUPPORT_SRCDIR}/texi2html
70MAN2HTML = ${BUILD_DIR}/support/man2html
71HTMLPOST = ${srcdir}/htmlpost.sh
72INFOPOST = ${srcdir}/infopost.sh
73QUIETPS = #set this to -q to shut up dvips
74PAPERSIZE = letter # change to a4 for A4-size paper
75PSDPI = 600 # could be 300 if you like
76DVIPS = dvips -D ${PSDPI} $(QUIETPS) -t ${PAPERSIZE} -o $@ # tricky
77
78TEXINPUTDIR = $(RL_LIBDIR)/doc
79SET_TEXINPUTS = TEXINPUTS=.:$(TEXINPUTDIR):$$TEXINPUTS
80
81# These tools might not be available; they're not required
82DVIPDF = dvipdfm -o $@ -p ${PAPERSIZE}
83PSPDF = gs -sPAPERSIZE=${PAPERSIZE} -sDEVICE=pdfwrite -dNOPAUSE -dBATCH -sOutputFile=$@
84
85MKDIRS = ${SUPPORT_SRCDIR}/mkdirs