Makefile revision 563ff1cc92416b64942cef457d459fe1b87dabd3
1##===- tools/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
10LEVEL := ..
11PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \
12                 analyze llvm-extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
13                 llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint
14
15include $(LEVEL)/Makefile.config
16
17# The bugpoint and llvm-db tools are not portable to Win32 because they depend
18# on fork(2) behavior that Win32 doesn't have. At some point they'll be 
19# rewritten to not depend on fork at which time they should be added back to
20# the list above.
21ifneq ($(LLVM_ON_UNIX),1)
22PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
23endif
24
25include $(LLVM_SRC_ROOT)/Makefile.rules
26