John Criswell | c2bc2f1 | 2003-10-21 15:31:36 +0000 | [diff] [blame] | 1 | ##===- projects/sample/Makefile ----------------------------*- Makefile -*-===## |
John Criswell | 723ccd6 | 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 | c2bc2f1 | 2003-10-21 15:31:36 +0000 | [diff] [blame] | 5 | ##===----------------------------------------------------------------------===## |
John Criswell | 723ccd6 | 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 = . |
Andrew Lenharth | 3027321 | 2005-07-05 16:36:18 +0000 | [diff] [blame] | 11 | DIRS = lib tools |
Reid Spencer | c4ea7d8 | 2004-10-26 07:03:39 +0000 | [diff] [blame] | 12 | EXTRA_DIST = include |
John Criswell | 723ccd6 | 2003-06-30 22:13:48 +0000 | [diff] [blame] | 13 | |
| 14 | # |
| 15 | # Include the Master Makefile that knows how to build all. |
| 16 | # |
| 17 | include $(LEVEL)/Makefile.common |
| 18 | |