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

John Criswell criswell at cs.uiuc.edu
Mon Dec 8 11:53:05 PST 2003


Changes in directory llvm/runtime:

Makefile updated: 1.9 -> 1.10

---
Log message:

Fixed the dynamic generation of the list of subdirectories to compile.



---
Diffs of the changes:  (+1 -1)

Index: llvm/runtime/Makefile
diff -u llvm/runtime/Makefile:1.9 llvm/runtime/Makefile:1.10
--- llvm/runtime/Makefile:1.9	Sun Nov 16 00:51:53 2003
+++ llvm/runtime/Makefile	Mon Dec  8 11:52:31 2003
@@ -11,7 +11,7 @@
 LEVEL = ..
 include $(LEVEL)/Makefile.config
 ifneq ($(wildcard $(LLVMGCCDIR)),)
-PARALLEL_DIRS  := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */))))
+PARALLEL_DIRS  := $(sort $(filter-out Makefile, $(filter-out README.txt, $(filter-out Output, $(filter-out CVS, $(notdir $(wildcard $(SourceDir)/*)))))))
 else
 PARALLEL_DIRS  := 
 all ::





More information about the llvm-commits mailing list