Add functions for determining if the stdin/out/err is connected to a
[oota-llvm.git] / Makefile.config.in
1 #===-- Makefile.config - Local configuration for LLVM ------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 #===------------------------------------------------------------------------===#
9 #
10 # This file is included by Makefile.common.  It defines paths and other
11 # values specific to a particular installation of LLVM.
12 #
13 #===------------------------------------------------------------------------===#
14
15 # Define LLVM speific info and directories
16 PACKAGE_NAME      := @PACKAGE_NAME@
17 PACKAGE_VERSION   := @PACKAGE_VERSION@
18 LLVM_PREFIX       := @LLVM_PREFIX@
19 LLVM_BINDIR       := @LLVM_BINDIR@
20 LLVM_LIBDIR       := @LLVM_LIBDIR@
21 LLVM_DATADIR      := @LLVM_DATADIR@
22 LLVM_DOCSDIR      := @LLVM_DOCSDIR@
23 LLVM_ETCDIR       := @LLVM_ETCDIR@
24 LLVM_INCLUDEDIR   := @LLVM_INCLUDEDIR@
25 LLVM_INFODIR      := @LLVM_INFODIR@
26 LLVM_MANDIR       := @LLVM_MANDIR@
27 LLVM_CONFIGTIME   := @LLVM_CONFIGTIME@
28 LLVM_TARBALL_NAME := @PACKAGE_NAME@-@PACKAGE_VERSION@
29
30 # Determine if we're on a unix type operating system
31 LLVM_ON_UNIX:=@LLVM_ON_UNIX@
32 LLVM_ON_WIN32:=@LLVM_ON_WIN32@
33
34 # Target operating system for which LLVM will be compiled.
35 OS=@OS@
36
37 # Target hardware architecture
38 ARCH=@ARCH@
39
40 # Target triple (cpu-vendor-os) for which we should generate code
41 TARGET_TRIPLE=@target@
42
43 # Endian-ness of the target
44 ENDIAN=@ENDIAN@
45
46 # Path to the C++ compiler to use.  This is an optional setting, which defaults
47 # to whatever your gmake defaults to.
48 CXX = @CXX@
49
50 # Path to the CC binary, which use used by testcases for native builds.
51 CC := @CC@
52
53 # Linker flags.
54 LDFLAGS+=@LDFLAGS@
55
56 # Libraries needed by tools
57 TOOLLINKOPTS=@LIBS@
58
59 # Path to the library archiver program.
60 AR_PATH = @AR@
61
62 # The pathnames of the programs we require to build
63 BISON      := @BISON@
64 CMP        := @CMP@
65 CP         := @CP@
66 DATE       := @DATE@
67 FIND       := @FIND@
68 FLEX       := @LEX@
69 GREP       := @GREP@
70 INSTALL    := @INSTALL@
71 INSTALL_SH := $(BUILD_SRC_ROOT)/autoconf/install-sh
72 INSTALL_PROGRAM = @INSTALL_PROGRAM@
73 INSTALL_SCRIPT = @INSTALL_SCRIPT@
74 INSTALL_DATA = @INSTALL_DATA@
75 MKDIR      := @abs_top_srcdir@/autoconf/mkinstalldirs
76 MV         := @MV@
77 PAX        := @PAX@
78 RANLIB     := @RANLIB@
79 RM         := @RM@
80 SED        := @SED@
81 TAR        := @TAR@
82 YACC       := @YACC@
83
84 # Paths to miscellaneous programs we hope are present but might not be
85 BZIP2      := @BZIP2@
86 DOT        := @DOT@
87 DOXYGEN    := @DOXYGEN@
88 ETAGS      := @ETAGS@
89 ETAGSFLAGS := @ETAGSFLAGS@
90 GROFF      := @GROFF@
91 GZIP       := @GZIP@
92 POD2HTML   := @POD2HTML@
93 POD2MAN    := @POD2MAN@
94 RUNTEST    := @RUNTEST@
95 TCLSH      := @TCLSH@
96 ZIP        := @ZIP@
97
98 # Paths to miscellaneous programs we assume are present
99 RPWD       := pwd
100 ECHO       := echo
101
102 # Path to location for LLVM C/C++ front-end. You can modify this if you
103 # want to override the value set by configure.
104 LLVMGCCDIR := @LLVMGCCDIR@
105
106 # Determine the target for which LLVM should generate code.
107 LLVMGCCARCH := @target@/3.4-llvm
108
109 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
110 LLVMGCC  := @LLVMGCC@
111 LLVMGXX  := @LLVMGXX@
112 LLVMCC1  := @LLVMCC1@
113 LLVMCC1PLUS := @LLVMCC1PLUS@
114
115 # Path to directory where object files should be stored during a build.
116 # Set OBJ_ROOT to "." if you do not want to use a separate place for
117 # object files.
118 OBJ_ROOT := .
119
120 # These are options that can either be enabled here, or can be enabled on the
121 # make command line (ie, make ENABLE_PROFILING=1):
122
123 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
124 # turned on, and Debug builds are turned off.
125 #ENABLE_OPTIMIZED = 1
126 @ENABLE_OPTIMIZED@
127
128 # When ENABLE_PROFILING is enabled, the llvm source base is built with profile
129 # information to allow gprof to be used to get execution frequencies.
130 #ENABLE_PROFILING = 1
131
132 # When ENABLE_DOXYGEN is enabled, the doxygen documentation will be built
133 ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
134
135 # This option tells the Makefiles to produce verbose output.
136 # It essentially prints the commands that make is executing
137 #VERBOSE = 1
138
139 # Enable JIT for this platform
140 @JIT@
141
142 # Shared library extension for this platform.
143 SHLIBEXT = @SHLIBEXT@
144
145 # Executable file extension for this platform.
146 EXEEXT = @EXEEXT@
147
148 ###########################################################################
149 # Directory Configuration
150 #       This section of the Makefile determines what is where.  To be
151 #       specific, there are several locations that need to be defined:
152 #
153 #       o LLVM_SRC_ROOT  : The root directory of the LLVM source code.
154 #       o LLVM_OBJ_ROOT  : The root directory containing the built LLVM code.
155 #
156 #       o BUILD_SRC_DIR  : The directory containing the code to build.
157 #       o BUILD_SRC_ROOT : The root directory of the code to build.
158 #
159 #       o BUILD_OBJ_DIR  : The directory in which compiled code will be placed.
160 #       o BUILD_OBJ_ROOT : The root directory in which compiled code is placed.
161 #
162 ###########################################################################
163
164 # Set the object build directory.  By default, it is the current directory.
165 ifndef BUILD_OBJ_DIR
166 BUILD_OBJ_DIR := $(subst //,/,$(shell $(RPWD)))
167 endif
168
169 # Set the root of the object directory.
170 ifndef BUILD_OBJ_ROOT
171 BUILD_OBJ_ROOT := $(subst //,/,$(shell cd $(BUILD_OBJ_DIR)/$(LEVEL); $(RPWD)))
172 endif
173
174 # Set the source build directory.  That is almost always the current directory.
175 ifndef BUILD_SRC_DIR
176 BUILD_SRC_DIR := $(subst //,/,@abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
177 endif
178
179 # Set the source root directory.
180 ifndef BUILD_SRC_ROOT
181 BUILD_SRC_ROOT := $(subst //,/,@abs_top_srcdir@)
182 endif
183
184 # Set the LLVM object directory.
185 ifndef LLVM_OBJ_ROOT
186 ifdef LLVM_SRC_ROOT
187 LLVM_OBJ_ROOT := $(shell cd $(LLVM_SRC_ROOT); $(RPWD))
188 else
189 LLVM_OBJ_ROOT := $(BUILD_OBJ_ROOT)
190 endif
191 endif
192
193 # Set the LLVM source directory.
194 # It is typically the root directory of what we're compiling now.
195 ifndef LLVM_SRC_ROOT
196 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
197 endif
198
199 # Installation directories, as provided by the configure script.
200 abs_top_srcdir = @abs_top_srcdir@
201 abs_top_builddir = @abs_top_builddir@
202 exec_prefix = @exec_prefix@
203 prefix = @prefix@
204 program_transform_name = @program_transform_name@
205 bindir = @bindir@
206 sbindir = @sbindir@
207 libexecdir = @libexecdir@
208 datadir = @datadir@
209 sysconfdir = @sysconfdir@
210 sharedstatedir = @sharedstatedir@ 
211 localstatedir = @localstatedir@
212 libdir = @libdir@
213 includedir = @includedir@
214 infodir = @infodir@
215 mandir = @mandir@