[llvm-commits] CVS: reopt/Makefile.common.in

Tanya Brethour tbrethou at cs.uiuc.edu
Sat Jan 15 21:50:21 PST 2005



Changes in directory reopt:

Makefile.common.in updated: 1.4 -> 1.5
---
Log message:

Reid changed the Makefiles which forced project Makefiles to be changed. 


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

Index: reopt/Makefile.common.in
diff -u reopt/Makefile.common.in:1.4 reopt/Makefile.common.in:1.5
--- reopt/Makefile.common.in:1.4	Sat Sep 13 16:15:21 2003
+++ reopt/Makefile.common.in	Sat Jan 15 23:50:10 2005
@@ -1,3 +1,7 @@
+# Set the name of the project here
+PROJECT_NAME := reopt 
+PROJ_VERSION := 0.9
+
 #
 # Set this variable to the top of the LLVM source tree.
 #
@@ -9,20 +13,15 @@
 #
 LLVM_OBJ_ROOT = @LLVM_OBJ@
 
-#
-# Include LLVM's Master Makefile.
-#
-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_objdir@)i
 
-BUILD_SRC_ROOT := $(subst //,/, at abs_top_srcdir@)
+# Set the root directory of this project's install prefix
+PROJ_INSTALL_ROOT := @prefix@
 
-#
 # Include LLVM's Master Makefile.
-#
-include $(LLVM_SRC_ROOT)/Makefile.rules
+include $(LLVM_OBJ_ROOT)/Makefile.common
 






More information about the llvm-commits mailing list