[llvm-commits] CVS: llvm/tools/Makefile

Reid Spencer reid at x10sys.com
Fri Dec 17 00:00:04 PST 2004



Changes in directory llvm/tools:

Makefile updated: 1.38 -> 1.39
---
Log message:

Fix this file to actually work. ifneq was incorrectly used. Subtract out
llvm-db and bugpoint for Win32 rather than add them in
subtr 


---
Diffs of the changes:  (+6 -9)

Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.38 llvm/tools/Makefile:1.39
--- llvm/tools/Makefile:1.38	Thu Dec 16 20:06:36 2004
+++ llvm/tools/Makefile	Fri Dec 17 01:59:53 2004
@@ -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






More information about the llvm-commits mailing list