2004-01-05 05:28:15 +00:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
2003-10-20 22:29:16 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2004-01-05 05:28:15 +00:00
|
|
|
|
2002-12-06 03:53:40 +00:00
|
|
|
LEVEL := ..
|
2004-10-28 03:53:02 +00:00
|
|
|
PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \
|
2004-12-17 01:46:41 +00:00
|
|
|
analyze extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
|
2004-12-17 07:59:53 +00:00
|
|
|
llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint
|
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.config
|
2004-12-17 01:46:41 +00:00
|
|
|
|
|
|
|
# The bugpoint and llvm-db tools are not portable to Win32 because they depend
|
|
|
|
# on fork(2) behavior that Win32 doesn't have. At some point they'll be
|
|
|
|
# rewritten to not depend on fork at which time they should be added back to
|
|
|
|
# the list above.
|
2004-12-31 22:56:14 +00:00
|
|
|
ifneq ($(LLVM_ON_UNIX),1)
|
2004-12-17 07:59:53 +00:00
|
|
|
PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
|
2004-09-13 01:18:30 +00:00
|
|
|
endif
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2005-01-16 02:21:29 +00:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|