diff options
Diffstat (limited to 'contrib/llvm/examples/ParallelJIT/Makefile')
-rw-r--r-- | contrib/llvm/examples/ParallelJIT/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/llvm/examples/ParallelJIT/Makefile b/contrib/llvm/examples/ParallelJIT/Makefile new file mode 100644 index 0000000..8a49d42 --- /dev/null +++ b/contrib/llvm/examples/ParallelJIT/Makefile @@ -0,0 +1,17 @@ +##===- examples/ParallelJIT/Makefile -----------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL = ../.. +TOOLNAME = ParallelJIT +EXAMPLE_TOOL = 1 + +LINK_COMPONENTS := jit interpreter nativecodegen + +include $(LEVEL)/Makefile.common + +LIBS += -lpthread |