[llvm-commits] CVS: llvm-test/Makefile.config.in

Reid Spencer reid at x10sys.com
Sat Jan 15 18:21:42 PST 2005



Changes in directory llvm-test:

Makefile.config.in updated: 1.8 -> 1.9
---
Log message:

Update to LLVM Makefile System requirements

---
Diffs of the changes:  (+11 -9)

Index: llvm-test/Makefile.config.in
diff -u llvm-test/Makefile.config.in:1.8 llvm-test/Makefile.config.in:1.9
--- llvm-test/Makefile.config.in:1.8	Thu Nov  4 10:54:15 2004
+++ llvm-test/Makefile.config.in	Sat Jan 15 20:21:30 2005
@@ -1,3 +1,5 @@
+PROJECT_NAME = @PACKAGE_NAME@
+PROJ_VERSION = @PACKAGE_VERSION@
 #
 # Set this variable to the top of the LLVM source tree.
 #
@@ -9,17 +11,17 @@
 #
 LLVM_OBJ_ROOT = @LLVM_OBJ@
 
-#
-# Include the LLVM configuration file
-#
-include $(LLVM_OBJ_ROOT)/Makefile.config
+# Set the directory root of this project's source files
+PROJ_SRC_ROOT := $(subst //,/, at abs_top_srcdir@)
 
-#
-# Set the source root and source directory pathnames
-#
-BUILD_SRC_DIR := $(subst //,/, at abs_top_srcdir@/$(patsubst $(BUILD_OBJ_ROOT)%,%,$(BUILD_OBJ_DIR)))
+# Set the root directory of this project's object files
+PROJ_OBJ_ROOT := $(subst //,/, at abs_top_builddir@)
+
+# Set the root directory of this project's install prefix
+PROJ_INSTALL_ROOT := @prefix@
 
-BUILD_SRC_ROOT := $(subst //,/, at abs_top_srcdir@)
+# Include LLVM's Master Makefile.
+include $(LLVM_OBJ_ROOT)/Makefile.config
 
 #Set SourceDir for backwards compatbility.
 ifndef SourceDir






More information about the llvm-commits mailing list