Implement a function to print a warning if bytecode output is to be sent to
[oota-llvm.git] / Makefile.config.in
index aa36cda065fd6ab486034b9897703ce5dbb9b5a5..a1983ab8622cd8e9c15d390d9a6250bd9c0268ef 100644 (file)
@@ -27,6 +27,10 @@ LLVM_MANDIR       := @LLVM_MANDIR@
 LLVM_CONFIGTIME   := @LLVM_CONFIGTIME@
 LLVM_TARBALL_NAME := @PACKAGE_NAME@-@PACKAGE_VERSION@
 
+# Determine if we're on a unix type operating system
+LLVM_ON_UNIX:=@LLVM_ON_UNIX@
+LLVM_ON_WIN32:=@LLVM_ON_WIN32@
+
 # Target operating system for which LLVM will be compiled.
 OS=@OS@
 
@@ -57,6 +61,8 @@ AR_PATH = @AR@
 
 # The pathnames of the programs we require to build
 BISON      := @BISON@
+CMP        := @CMP@
+CP         := @CP@
 DATE       := @DATE@
 FIND       := @FIND@
 FLEX       := @LEX@
@@ -85,29 +91,32 @@ GROFF      := @GROFF@
 GZIP       := @GZIP@
 POD2HTML   := @POD2HTML@
 POD2MAN    := @POD2MAN@
-PYTHON     := @PYTHON@
 RUNTEST    := @RUNTEST@
+TCLSH      := @TCLSH@
 ZIP        := @ZIP@
 
 # Paths to miscellaneous programs we assume are present
 RPWD       := pwd
 ECHO       := echo
+
+# Path to location for LLVM C/C++ front-end. You can modify this if you
+# want to override the value set by configure.
+LLVMGCCDIR := @LLVMGCCDIR@
+
 # Determine the target for which LLVM should generate code.
 LLVMGCCARCH := @target@/3.4-llvm
 
 # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries:
-LCC1 = @LLVMCC1@
-LCC1XX = @LLVMCC1PLUS@
+LLVMGCC  := @LLVMGCC@
+LLVMGXX  := @LLVMGXX@
+LLVMCC1  := @LLVMCC1@
+LLVMCC1PLUS := @LLVMCC1PLUS@
 
 # Path to directory where object files should be stored during a build.
 # Set OBJ_ROOT to "." if you do not want to use a separate place for
 # object files.
 OBJ_ROOT := .
 
-# Path to location for LLVM C/C++ front-end. You can modify this if you
-# want to override the value set by configure.
-LLVMGCCDIR := @LLVMGCCDIR@
-
 # These are options that can either be enabled here, or can be enabled on the
 # make command line (ie, make ENABLE_PROFILING=1):
 
@@ -201,7 +210,6 @@ sysconfdir = @sysconfdir@
 sharedstatedir = @sharedstatedir@ 
 localstatedir = @localstatedir@
 libdir = @libdir@
-bytecode_libdir = $(LLVMGCCDIR)/bytecode-libs
 includedir = @includedir@
 infodir = @infodir@
 mandir = @mandir@