* aclocal.in (obsolete_macros): Update AM_EXEEXT message.
[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 = %TOPDIR%
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_HEADER = $(INSTALL_DATA)
68 transform = @program_transform_name@
69
70 ## These are defined because otherwise make on NetBSD V1.1 will print
71 ## (eg): $(NORMAL_INSTALL) expands to empty string.
72 NORMAL_INSTALL = :
73 PRE_INSTALL = :
74 POST_INSTALL = :
75 NORMAL_UNINSTALL = :
76 PRE_UNINSTALL = :
77 POST_UNINSTALL = :
78
79 ## FIXME: Why the heck are _triplet variables not defined from the
80 ## _triplet values?
81 ## FIXME: this should probably use generic %configure_vars method.
82 ## Let's wait until we rely upon traces.
83 ?BUILD?build_alias = @build_alias@
84 ?BUILD?build_triplet = @build@
85 ?HOST?host_alias = @host_alias@
86 ?HOST?host_triplet = @host@
87 ?TARGET?target_alias = @target_alias@
88 ?TARGET?target_triplet = @target@
89
90 EXEEXT = @EXEEXT@
91 OBJEXT = @OBJEXT@
92 PATH_SEPARATOR = @PATH_SEPARATOR@