[llvm-commits] [llvm] r97973 - /llvm/trunk/examples/Makefile

Erick Tryzelaar idadesub at users.sourceforge.net
Mon Mar 8 12:07:32 PST 2010


Author: erickt
Date: Mon Mar  8 14:07:32 2010
New Revision: 97973

URL: http://llvm.org/viewvc/llvm-project?rev=97973&view=rev
Log:
Don't always run the ocaml kaleidoscope tutorials.

Modified:
    llvm/trunk/examples/Makefile

Modified: llvm/trunk/examples/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/Makefile?rev=97973&r1=97972&r2=97973&view=diff
==============================================================================
--- llvm/trunk/examples/Makefile (original)
+++ llvm/trunk/examples/Makefile Mon Mar  8 14:07:32 2010
@@ -10,8 +10,7 @@
 
 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 @@
     endif
 endif
 
+ifeq ($(filter $(BINDINGS_TO_BUILD),ocaml),ocaml)
+	PARALLEL_DIRS += OCaml-Kaleidoscope
+endif
+
 include $(LEVEL)/Makefile.common





More information about the llvm-commits mailing list