From ea0ac1fbb3d7d274e54aa157d02383db7c50b563 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 8 Dec 2003 17:52:32 +0000 Subject: [PATCH] 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 --- runtime/GCCLibraries/Makefile | 3 ++- runtime/Makefile | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/runtime/GCCLibraries/Makefile b/runtime/GCCLibraries/Makefile index f624250cab8..745dc05ddfe 100644 --- a/runtime/GCCLibraries/Makefile +++ b/runtime/GCCLibraries/Makefile @@ -9,7 +9,8 @@ # llvm/runtime/GCCLibraries Makefile: Build all subdirectories automatically LEVEL = ../.. -PARALLEL_DIRS := $(sort $(filter-out Output/, $(filter-out CVS/, $(wildcard */)))) +include $(LEVEL)/Makefile.config +PARALLEL_DIRS := $(sort $(filter-out README.txt, $(filter-out Makefile, $(filter-out Output, $(filter-out CVS, $(notdir $(wildcard $(SourceDir)/*))))))) PARALLEL_DIRS := $(filter-out libexception/, $(PARALLEL_DIRS)) include $(LEVEL)/Makefile.common diff --git a/runtime/Makefile b/runtime/Makefile index 30d96a755c9..d8bc24a6f12 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 :: -- 2.34.1