source: trunk/essentials/sys-devel/automake-1.10/lib/am/header-vars.am

Last change on this file was 3147, checked in by bird, 18 years ago

automake 1.10

File size: 2.0 KB
Line 
1## automake - create Makefile.in from Makefile.am
2## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2003, 2005
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., 51 Franklin Street, Fifth Floor, Boston, MA
18## 02110-1301, USA.
19
20VPATH = @srcdir@
21
22@SET_MAKE@
23
24## We used to define this. However, we don't because vendor makes
25## (e.g., Solaris, Irix) won't correctly propagate variables that are
26## defined in Makefile. This particular variable can't be correctly
27## defined by configure (at least, not the current configure), so we
28## simply avoid defining it to allow the user to use this feature with
29## a vendor make.
30## DESTDIR =
31
32## Some derived variables that have been found to be useful.
33pkgdatadir = $(datadir)/@PACKAGE@
34pkglibdir = $(libdir)/@PACKAGE@
35pkgincludedir = $(includedir)/@PACKAGE@
36
37am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
38install_sh_DATA = $(install_sh) -c -m 644
39install_sh_PROGRAM = $(install_sh) -c
40install_sh_SCRIPT = $(install_sh) -c
41INSTALL_HEADER = $(INSTALL_DATA)
42transform = $(program_transform_name)
43
44## These are defined because otherwise make on NetBSD V1.1 will print
45## (eg): $(NORMAL_INSTALL) expands to empty string.
46NORMAL_INSTALL = :
47PRE_INSTALL = :
48POST_INSTALL = :
49NORMAL_UNINSTALL = :
50PRE_UNINSTALL = :
51POST_UNINSTALL = :
52
53## dejagnu.am uses these variables. Some users might rely on them too.
54?BUILD?build_triplet = @build@
55?HOST?host_triplet = @host@
56?TARGET?target_triplet = @target@
Note: See TracBrowser for help on using the repository browser.