From 691b3a195bb3978cc6ab082822403fd445e8fce7 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 17 Dec 2004 07:59:53 +0000 Subject: [PATCH] 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 --- tools/Makefile | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index 83c54e274d0..cdfdacb08ea 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 -- 2.34.1