fix make install/uninstall of libcrtend.
[oota-llvm.git] / runtime / Makefile
1 ##===- runtime/Makefile ------------------------------------*- Makefile -*-===##
2
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file was developed by the LLVM research group and is distributed under
6 # the University of Illinois Open Source License. See LICENSE.TXT for details.
7
8 ##===----------------------------------------------------------------------===##
9
10 LEVEL = ..
11 include $(LEVEL)/Makefile.config
12
13 ifneq ($(wildcard $(LLVMGCCDIR)),)
14 PARALLEL_DIRS  := GCCLibraries  libdummy libprofile libtrace GC
15 else
16 PARALLEL_DIRS  := 
17 install all ::
18         @echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Double-check 
19         @echo '********' Warning: llvm/Makefile.config to make sure it matches
20         @echo '********' Warning: the directory where the C front-end is installed,
21         @echo '********' Warning: and re-run configure if it does not.
22 endif
23
24 # Disable libprofile: a faulty libtool is generated by autoconf which breaks the
25 # build on Sparc
26 ifeq ($(ARCH), Sparc)
27 PARALLEL_DIRS := $(filter-out libprofile, $(PARALLEL_DIRS))
28 endif
29
30 include $(LEVEL)/Makefile.common
31
32 # Install target for libraries: Copy into $LLVMGCCDIR/bytecode-libs
33 #
34 install::