When evaluating an AA, pass in size info
[oota-llvm.git] / Makefile.config.in
index 4bf59635482f754bbbc8758c5a78249ee3ace3cd..c9b9442885dc7bc0c291f998f769cb69beab3be2 100644 (file)
@@ -18,6 +18,9 @@ OS=@OS@
 # Target hardware architecture
 ARCH=@ARCH@
 
+# Target triple (cpu-vendor-os) for which we should generate code
+TARGET_TRIPLE=@target@
+
 # Endian-ness of the target
 ENDIAN=@ENDIAN@
 
@@ -31,6 +34,9 @@ CC := @CC@
 # Path to the Python interpreter
 PYTHON := @PYTHON@
 
+# Path to the Deja-Gnu runtest program
+RUNTEST := @RUNTEST@
+
 # Linker flags.
 LDFLAGS+=@LDFLAGS@
 
@@ -40,23 +46,28 @@ TOOLLINKOPTS=@LIBS@
 # Path to the library archiver program.
 AR_PATH = @AR@
 
-# The pathnames of the Flex and Bison programs, respectively.
-YACC     = @YACC@
-BISON    = @BISON@
-FLEX     = @LEX@
+# The pathnames of the programs we require to build
+YACC    = @YACC@
+BISON   = @BISON@
+FLEX    = @LEX@
+TAR     = @TAR@
+INSTALL = @INSTALL@
+DOT     = @DOT@
+ETAGS   = @ETAGS@
+ETAGSFLAGS = @ETAGSFLAGS@
 
-# Paths to miscellaneous programs.
+# Paths to miscellaneous programs we assume are present
 RPWD    = pwd
 SED     = sed
 RM      = rm
 ECHO    = echo
 MKDIR   = @abs_top_srcdir@/autoconf/mkinstalldirs
+INSTALL_SH = $(BUILD_SRC_ROOT)/autoconf/install-sh
 DATE    = date
 MV      = mv
-INSTALL = @INSTALL@
-DOT     = @DOT@
-ETAGS   = @ETAGS@
-ETAGSFLAGS = @ETAGSFLAGS@
+GZIP    = gzip
+ZIP     = zip
+BZIP2   = bzip2
 
 # Determine the target for which LLVM should generate code.
 LLVMGCCARCH := @target@/3.4-llvm
@@ -150,15 +161,6 @@ ifndef LLVM_SRC_ROOT
 LLVM_SRC_ROOT := $(BUILD_SRC_ROOT)
 endif
 
-# Set SourceDir for backwards compatbility.
-ifndef SourceDir
-SourceDir=$(BUILD_SRC_DIR)
-endif
-
-# Handle configured libraries
-HAVE_BZIP2 := @HAVE_BZIP2@
-HAVE_ZLIB  := @HAVE_ZLIB@
-
 # Installation directories, as provided by the configure script.
 exec_prefix = @exec_prefix@
 prefix = @prefix@
@@ -178,4 +180,5 @@ mandir = @mandir@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
 INSTALL_DATA = @INSTALL_DATA@
+LLVM_TARBALL_NAME = @PACKAGE_NAME@-@PACKAGE_VERSION@