[llvm-commits] [llvm] r143148 - /llvm/trunk/projects/sample/Makefile.common.in
Daniel Dunbar
daniel at zuster.org
Thu Oct 27 14:25:09 PDT 2011
Author: ddunbar
Date: Thu Oct 27 16:25:09 2011
New Revision: 143148
URL: http://llvm.org/viewvc/llvm-project?rev=143148&view=rev
Log:
projects/sample: Switch over to imported Makefile setup.
- This will require you to manually reconfigure the projects/sample project (by running projects/config/sample/config.status --recheck) if you haven't updated/built since the 1st part of this commit went in.
Modified:
llvm/trunk/projects/sample/Makefile.common.in
Modified: llvm/trunk/projects/sample/Makefile.common.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/projects/sample/Makefile.common.in?rev=143148&r1=143147&r2=143148&view=diff
==============================================================================
--- llvm/trunk/projects/sample/Makefile.common.in (original)
+++ llvm/trunk/projects/sample/Makefile.common.in Thu Oct 27 16:25:09 2011
@@ -18,5 +18,9 @@
# Set the root directory of this project's install prefix
PROJ_INSTALL_ROOT := @prefix@
-# Include LLVM's Master Makefile.
-include $(LLVM_SRC_ROOT)/Makefile.common
+# Configuration file to set paths specific to local installation of LLVM
+include $(PROJ_OBJ_ROOT)/Makefile.llvm.config
+
+# Include all of the build rules used for making LLVM
+include $(PROJ_SRC_ROOT)/Makefile.llvm.rules
+
More information about the llvm-commits
mailing list