summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-17 07:59:53 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-17 07:59:53 +0000
commit691b3a195bb3978cc6ab082822403fd445e8fce7 (patch)
treefac835da807c1c5c6503358513fd3b72bc75286d /tools/Makefile
parentf13a269179e38ad39a7c2911cbe9e222263057a9 (diff)
downloadllvm-691b3a195bb3978cc6ab082822403fd445e8fce7.tar.gz
llvm-691b3a195bb3978cc6ab082822403fd445e8fce7.tar.bz2
llvm-691b3a195bb3978cc6ab082822403fd445e8fce7.tar.xz
Fix this file to actually work. ifneq was incorrectly used. Subtract out
llvm-db and bugpoint for Win32 rather than add them in subtr git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19014 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 83c54e274d..cdfdacb08e 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -10,20 +10,17 @@
LEVEL := ..
PARALLEL_DIRS := llvm-as llvm-dis opt gccas llc llvm-link lli gccld llvm-stub \
analyze extract llvm-nm llvm-prof llvm-ar llvm-ranlib \
- llvm-bcanalyzer llvmc llvm-ld
+ llvm-bcanalyzer llvmc llvm-ld llvm-db bugpoint
+
+include $(LEVEL)/Makefile.config
# 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.
-ifneq($(OS),Win32)
-PARALLEL_DIRS += bugpoint llvm-db
-endif
-
-include $(LEVEL)/Makefile.config
-ifeq ($(ARCH), Sparc)
-PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
+ifneq ($(OS),Win32)
+PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
endif
-include $(LEVEL)/Makefile.common
+include $(BUILD_SRC_ROOT)/Makefile.rules