We actually don't have spiff anymore
[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 # llvm/runtime Makefile:  Build all subdirectories automatically
10
11 LEVEL = ..
12 include $(LEVEL)/Makefile.config
13
14 ifneq ($(wildcard $(LLVMGCCDIR)),)
15 PARALLEL_DIRS  := GCCLibraries  libdummy  libprofile  libtrace libpng zlib
16 else
17 PARALLEL_DIRS  := 
18 install all ::
19         @echo '********' Warning: Your LLVMGCCDIR is set incorrectly.  Double-check 
20         @echo '********' Warning: llvm/Makefile.config to make sure it matches
21         @echo '********' Warning: the directory where the C front-end is installed,
22         @echo '********' Warning: and re-run configure if it does not.
23 endif
24
25 include $(LEVEL)/Makefile.common
26
27 # Install target for libraries: Copy into the 'bytecode-libs' subdirectory
28 # of LLVMGCCDIR.  (On the UIUC machines, this is in Chris's home directory.)
29 #
30 install::
31
32 clean::
33         rm -f $(DESTLIBBYTECODE)/*
34