From: John Criswell Date: Tue, 25 Nov 2003 20:37:45 +0000 (+0000) Subject: Adjusted the projects Makefile so that it picks up the name of projects X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=9b3b5dee7e836ab42eb71613ecc75b0840256382;p=oota-llvm.git Adjusted the projects Makefile so that it picks up the name of projects by scanning the source tree (not the object tree). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10223 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/projects/Makefile b/projects/Makefile index 16ee42e4754..5465268ecf1 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -8,7 +8,9 @@ ##===----------------------------------------------------------------------===## LEVEL=.. +include $(LEVEL)/Makefile.config + DIRS= -OPTIONAL_DIRS:=$(shell ls | grep -v CVS) +OPTIONAL_DIRS:=$(basename $(shell ls $(SourceDir) | grep -v CVS | grep -v Makefile)) -include $(LEVEL)/Makefile.common +include $(BUILD_SRC_ROOT)/Makefile.rules