[llvm-commits] CVS: llvm/projects/ModuleMaker/Makefile Makefile.common

Chris Lattner lattner at cs.uiuc.edu
Thu Aug 21 17:30:02 PDT 2003


Changes in directory llvm/projects/ModuleMaker:

Makefile added (r1.1)
Makefile.common added (r1.1)

---
Log message:

Initial checkin of ModuleMaker project


---
Diffs of the changes:

Index: llvm/projects/ModuleMaker/Makefile
diff -c /dev/null llvm/projects/ModuleMaker/Makefile:1.1
*** /dev/null	Thu Aug 21 17:29:59 2003
--- llvm/projects/ModuleMaker/Makefile	Thu Aug 21 17:29:49 2003
***************
*** 0 ****
--- 1,19 ----
+ #
+ # This is a sample Makefile for a project that uses LLVM.
+ #
+ 
+ #
+ # Indicates our relative path to the top of the project's root directory.
+ #
+ LEVEL = .
+ 
+ #
+ # Directories that needs to be built.
+ #
+ DIRS = tools
+ 
+ #
+ # Include the Master Makefile that knows how to build all.
+ #
+ include $(LEVEL)/Makefile.common
+ 


Index: llvm/projects/ModuleMaker/Makefile.common
diff -c /dev/null llvm/projects/ModuleMaker/Makefile.common:1.1
*** /dev/null	Thu Aug 21 17:29:59 2003
--- llvm/projects/ModuleMaker/Makefile.common	Thu Aug 21 17:29:49 2003
***************
*** 0 ****
--- 1,10 ----
+ #
+ # Set this variable to the top of the LLVM source tree.
+ #
+ LLVM_SRC_ROOT = $(LEVEL)/../..
+ 
+ #
+ # Include LLVM's Master Makefile.
+ #
+ include $(LLVM_SRC_ROOT)/Makefile.common
+ 





More information about the llvm-commits mailing list