Fix a bug in previous checkin
[oota-llvm.git] / runtime / Makefile
index a5d3d81e3cbcfb0d85294728a556f0da1bf80619..9a448c395efdbe6ccafc63aca87ea3775b1a2c90 100644 (file)
@@ -1,4 +1,4 @@
-##===- runtime/Makefile ------------------------------*- Makefile -*-===##
+##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
 # 
 #                     The LLVM Compiler Infrastructure
 #
@@ -6,13 +6,12 @@
 # the University of Illinois Open Source License. See LICENSE.TXT for details.
 # 
 ##===----------------------------------------------------------------------===##
-# llvm/runtime Makefile:  Build all subdirectories automatically
 
 LEVEL = ..
 include $(LEVEL)/Makefile.config
 
 ifneq ($(wildcard $(LLVMGCCDIR)),)
-PARALLEL_DIRS  := GCCLibraries  libdummy  libprofile  libtrace
+PARALLEL_DIRS  := GCCLibraries  libdummy libprofile libtrace GC
 else
 PARALLEL_DIRS  := 
 install all ::
@@ -22,11 +21,14 @@ install all ::
        @echo '********' Warning: and re-run configure if it does not.
 endif
 
+# Disable libprofile: a faulty libtool is generated by autoconf which breaks the
+# build on Sparc
+ifeq ($(ARCH), Sparc)
+PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
+endif
+
 include $(LEVEL)/Makefile.common
 
-# Install target for libraries: Copy into the gcc install directory in chris's
-# tree...
+# Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs
 #
 install::
-
-clean::