* header.am (install-@DIR@HEADERS): Use INSTALL_HEADER.
[platform/upstream/automake.git] / lib / am / header-vars.am
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
3 ## 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
18 ## 02111-1307, USA.
19 SHELL = @SHELL@
20
21 srcdir = @srcdir@
22 top_srcdir = @top_srcdir@
23 VPATH = @srcdir@
24 prefix = @prefix@
25 exec_prefix = @exec_prefix@
26
27 bindir = @bindir@
28 sbindir = @sbindir@
29 libexecdir = @libexecdir@
30 datadir = @datadir@
31 sysconfdir = @sysconfdir@
32 sharedstatedir = @sharedstatedir@
33 localstatedir = @localstatedir@
34 libdir = @libdir@
35 infodir = @infodir@
36 mandir = @mandir@
37 includedir = @includedir@
38 oldincludedir = /usr/include
39
40 @SET_MAKE@
41
42 ## We used to define this.  However, we don't because vendor makes
43 ## (e.g., Solaris, Irix) won't correctly propagate variables that are
44 ## defined in Makefile.  This particular variable can't be correctly
45 ## defined by configure (at least, not the current configure), so we
46 ## simply avoid defining it to allow the user to use this feature with
47 ## a vendor make.
48 ## DESTDIR =
49
50 ## Some derived variables that have been found to be useful.
51 pkgdatadir = $(datadir)/@PACKAGE@
52 pkglibdir = $(libdir)/@PACKAGE@
53 pkgincludedir = $(includedir)/@PACKAGE@
54
55 ## Location of top build directory relative to this one.
56 top_builddir = @top_builddir@
57
58 ACLOCAL = @ACLOCAL@
59 AUTOCONF = @AUTOCONF@
60 AUTOMAKE = @AUTOMAKE@
61 AUTOHEADER = @AUTOHEADER@
62
63 INSTALL = @INSTALL@
64 INSTALL_PROGRAM = @INSTALL_PROGRAM@
65 INSTALL_DATA = @INSTALL_DATA@
66 INSTALL_SCRIPT = @INSTALL_SCRIPT@
67 INSTALL_STRIP_FLAG =
68 INSTALL_HEADER = $(INSTALL_DATA)
69 transform = @program_transform_name@
70
71 ## These are defined because otherwise make on NetBSD V1.1 will print
72 ## (eg): $(NORMAL_INSTALL) expands to empty string.
73 NORMAL_INSTALL = :
74 PRE_INSTALL = :
75 POST_INSTALL = :
76 NORMAL_UNINSTALL = :
77 PRE_UNINSTALL = :
78 POST_UNINSTALL = :