diff options
author | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-08 20:07:32 +0000 |
---|---|---|
committer | Erick Tryzelaar <idadesub@users.sourceforge.net> | 2010-03-08 20:07:32 +0000 |
commit | 65695b9d36a77f2958dce57e397ac14a0953d3a1 (patch) | |
tree | 6fe1fddc32bc323fb593125787827f24201975d6 | |
parent | 71e71a0c2adca8e5dfb89ed2f61af82fa690228f (diff) | |
download | external_llvm-65695b9d36a77f2958dce57e397ac14a0953d3a1.zip external_llvm-65695b9d36a77f2958dce57e397ac14a0953d3a1.tar.gz external_llvm-65695b9d36a77f2958dce57e397ac14a0953d3a1.tar.bz2 |
Don't always run the ocaml kaleidoscope tutorials.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97973 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | examples/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/examples/Makefile b/examples/Makefile index 162a94e..5594c05f 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -10,8 +10,7 @@ LEVEL=.. include $(LEVEL)/Makefile.config -PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker \ - OCaml-Kaleidoscope +PARALLEL_DIRS:= BrainF Fibonacci HowToUseJIT Kaleidoscope ModuleMaker ifeq ($(HAVE_PTHREAD),1) PARALLEL_DIRS += ParallelJIT @@ -26,4 +25,8 @@ ifeq ($(LLVM_ON_UNIX),1) endif endif +ifeq ($(filter $(BINDINGS_TO_BUILD),ocaml),ocaml) + PARALLEL_DIRS += OCaml-Kaleidoscope +endif + include $(LEVEL)/Makefile.common |