diff options
Diffstat (limited to 'contrib/llvm/tools/llvmc/Makefile')
-rw-r--r-- | contrib/llvm/tools/llvmc/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/llvm/tools/llvmc/Makefile b/contrib/llvm/tools/llvmc/Makefile new file mode 100644 index 0000000..7c03e2a --- /dev/null +++ b/contrib/llvm/tools/llvmc/Makefile @@ -0,0 +1,18 @@ +##===- tools/llvmc/Makefile --------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open +# Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. + +DIRS = src + +ifeq ($(BUILD_EXAMPLES),1) + OPTIONAL_DIRS += examples +endif + +include $(LEVEL)/Makefile.common |