From c465066a6caef616cac62bc899c86a8142ff67bf Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Fri, 16 Apr 2004 15:57:02 +0000 Subject: [PATCH] As a part of the bootstrapping process, the top-level tools-only target should not build projects. llvm-svn: 12984 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7146bfbef52..57cbeb5fa9b 100644 --- a/Makefile +++ b/Makefile @@ -8,10 +8,10 @@ ##===----------------------------------------------------------------------===## LEVEL = . DIRS = lib/Support utils lib tools -OPTIONAL_DIRS = projects ifneq ($(MAKECMDGOALS),tools-only) DIRS += runtime +OPTIONAL_DIRS = projects endif include $(LEVEL)/Makefile.common