diff options
Diffstat (limited to 'projects/sample/Makefile')
-rw-r--r-- | projects/sample/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/projects/sample/Makefile b/projects/sample/Makefile new file mode 100644 index 0000000..f96f1ab --- /dev/null +++ b/projects/sample/Makefile @@ -0,0 +1,18 @@ +##===- projects/sample/Makefile ----------------------------*- Makefile -*-===## +# +# 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 = . +DIRS = lib tools +EXTRA_DIST = include + +# +# Include the Master Makefile that knows how to build all. +# +include $(LEVEL)/Makefile.common + |