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
This commit is contained in:
Reid Spencer 2004-12-17 07:59:53 +00:00
parent f13a269179
commit 691b3a195b

View File

@ -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
ifneq ($(OS),Win32)
PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
endif
include $(LEVEL)/Makefile.config
ifeq ($(ARCH), Sparc)
PARALLEL_DIRS := $(filter-out llee, $(PARALLEL_DIRS))
endif
include $(LEVEL)/Makefile.common
include $(BUILD_SRC_ROOT)/Makefile.rules