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

