Rename NextPowerOfTwo to RoundUpToPowerOfTwo.
[oota-llvm.git] / examples / Makefile
index fc3a7d4ea3fffd01828df5db22a67db2e2de4a27..5594c05fa3a083e3e3a26e182933ee8d8e2e10d2 100644 (file)
@@ -17,7 +17,16 @@ PARALLEL_DIRS += ParallelJIT
 endif
 
 ifeq ($(LLVM_ON_UNIX),1)
-PARALLEL_DIRS += ExceptionDemo
+    ifeq ($(ARCH),x86)
+       PARALLEL_DIRS += ExceptionDemo
+    endif
+    ifeq ($(ARCH),x86_64)
+       PARALLEL_DIRS += ExceptionDemo
+    endif
+endif
+
+ifeq ($(filter $(BINDINGS_TO_BUILD),ocaml),ocaml)
+       PARALLEL_DIRS += OCaml-Kaleidoscope
 endif
 
 include $(LEVEL)/Makefile.common