New testcase
[oota-llvm.git] / runtime / Makefile
index 8398c1f8122cf6f9360196bdf4226df17df7a2a9..2adc08999293f5aec1a3c25c20f24b3ac06e702a 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 libpng zlib
+PARALLEL_DIRS  := GCCLibraries  libdummy  libprofile  libtrace GC
 else
 PARALLEL_DIRS  := 
 install all ::
@@ -22,13 +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 'bytecode-libs' subdirectory
-# of LLVMGCCDIR.  (On the UIUC machines, this is in Chris's home directory.)
+# Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs
 #
 install::
-
-clean::
-       rm -f $(DESTLIBBYTECODE)/*
-