Rearrange the build order to better accommodate parallel build by reducing
[oota-llvm.git] / tools / Makefile
index 2c0040055082470ce613d9d03402bd10e1368eca..7a062e54f1eeabc45130ade4cfb88ec2e041f8a6 100644 (file)
@@ -8,24 +8,9 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL := ..
-PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \
-                 analyze extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
-                llvm-bcanalyzer llvmc llvm-ld 
-
-# The bugpoint and llvm-db tools are not portable to Win32 because they depend
-# on fork(2) behavior that Win32 doesn't have. At some point they'll be 
-# rewritten to not depend on fork at which time they should be added back to
-# the list above.
-ifneq($(OS),Win32)
-PARALLEL_DIRS += bugpoint llvm-db 
-endif
-
-EXTRA_DIST := Makefile.JIT
-
-include $(LEVEL)/Makefile.config
-
-ifeq ($(ARCH), Sparc)
-PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
-endif
+PARALLEL_DIRS := llvm-config opt llvm-as -llvm-dis llc llvm-bcanalyzer \
+                 llvm-extract lli llvm-db llvm-ar llvm-ld llvm-prof llvm-nm \
+                 gccas llvm-ranlib llvm-stub gccld llvm2cpp \
+                 bugpoint llvmc llvm-link
 
 include $(LEVEL)/Makefile.common