diff options
author | John Criswell <criswell@uiuc.edu> | 2003-12-08 17:52:32 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-12-08 17:52:32 +0000 |
commit | ea0ac1fbb3d7d274e54aa157d02383db7c50b563 (patch) | |
tree | c295f7fab690dd376ccebb83d24a773bac2ea86e /runtime/Makefile | |
parent | e63fc8b46fb1c9627b1c84508e258070fe3567cf (diff) |
Fixed the dynamic generation of the list of subdirectories to compile.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/Makefile')
-rw-r--r-- | runtime/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/Makefile b/runtime/Makefile index 30d96a755c..d8bc24a6f1 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -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 :: |