diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-17 07:59:53 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-17 07:59:53 +0000 |
commit | 691b3a195bb3978cc6ab082822403fd445e8fce7 (patch) | |
tree | fac835da807c1c5c6503358513fd3b72bc75286d /tools/Makefile | |
parent | f13a269179e38ad39a7c2911cbe9e222263057a9 (diff) | |
download | external_llvm-691b3a195bb3978cc6ab082822403fd445e8fce7.zip external_llvm-691b3a195bb3978cc6ab082822403fd445e8fce7.tar.gz external_llvm-691b3a195bb3978cc6ab082822403fd445e8fce7.tar.bz2 |
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/Makefile | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/tools/Makefile b/tools/Makefile index 83c54e2..cdfdacb 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 |