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 |
|
---|
20 | VPATH = @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.
|
---|
33 | pkgdatadir = $(datadir)/@PACKAGE@
|
---|
34 | pkglibdir = $(libdir)/@PACKAGE@
|
---|
35 | pkgincludedir = $(includedir)/@PACKAGE@
|
---|
36 |
|
---|
37 | am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
---|
38 | install_sh_DATA = $(install_sh) -c -m 644
|
---|
39 | install_sh_PROGRAM = $(install_sh) -c
|
---|
40 | install_sh_SCRIPT = $(install_sh) -c
|
---|
41 | INSTALL_HEADER = $(INSTALL_DATA)
|
---|
42 | transform = $(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.
|
---|
46 | NORMAL_INSTALL = :
|
---|
47 | PRE_INSTALL = :
|
---|
48 | POST_INSTALL = :
|
---|
49 | NORMAL_UNINSTALL = :
|
---|
50 | PRE_UNINSTALL = :
|
---|
51 | POST_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@
|
---|