| John Criswell | f9924ce | 2003-10-21 15:31:36 +0000 | [diff] [blame] | 1 | ##===- projects/sample/Makefile ----------------------------*- Makefile -*-===## | 
| John Criswell | e17afeb | 2003-06-30 22:13:48 +0000 | [diff] [blame] | 2 | # | 
|  | 3 | # This is a sample Makefile for a project that uses LLVM. | 
|  | 4 | # | 
| John Criswell | f9924ce | 2003-10-21 15:31:36 +0000 | [diff] [blame] | 5 | ##===----------------------------------------------------------------------===## | 
| John Criswell | e17afeb | 2003-06-30 22:13:48 +0000 | [diff] [blame] | 6 |  | 
|  | 7 | # | 
|  | 8 | # Indicates our relative path to the top of the project's root directory. | 
|  | 9 | # | 
|  | 10 | LEVEL = . | 
|  | 11 |  | 
|  | 12 | # | 
|  | 13 | # Directories that needs to be built. | 
|  | 14 | # | 
| John Criswell | bc4511c | 2003-09-06 15:03:24 +0000 | [diff] [blame] | 15 | DIRS = lib tools | 
| John Criswell | e17afeb | 2003-06-30 22:13:48 +0000 | [diff] [blame] | 16 |  | 
|  | 17 | # | 
|  | 18 | # Include the Master Makefile that knows how to build all. | 
|  | 19 | # | 
|  | 20 | include $(LEVEL)/Makefile.common | 
|  | 21 |  |