diff options
Diffstat (limited to 'examples/ParallelJIT/Makefile')
-rw-r--r-- | examples/ParallelJIT/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/ParallelJIT/Makefile b/examples/ParallelJIT/Makefile new file mode 100644 index 0000000..1001166 --- /dev/null +++ b/examples/ParallelJIT/Makefile @@ -0,0 +1,16 @@ +##===- examples/HowToUseJIT/Makefile -----------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by Valery A. Khamenya and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## +LEVEL = ../.. +TOOLNAME = ParallelJIT +EXAMPLE_TOOL = 1 + +# Enable JIT support +LLVMLIBS := JIT + +include $(LEVEL)/Makefile.common |