Adjusted the projects Makefile so that it picks up the name of projects
authorJohn Criswell <criswell@uiuc.edu>
Tue, 25 Nov 2003 20:37:45 +0000 (20:37 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Tue, 25 Nov 2003 20:37:45 +0000 (20:37 +0000)
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

projects/Makefile

index 16ee42e4754692955ab9f83bcc7ca99677fd0d57..5465268ecf1bb769f75ed1e10d4311be471f2749 100644 (file)
@@ -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