summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-03 22:56:40 +0000
committerChris Lattner <sabre@nondot.org>2004-02-03 22:56:40 +0000
commit9cf662b367795f07ddf2c6deca33839b6581548b (patch)
tree6174ae4fe18c01314a296ff26ad41baeb3d9bd55 /Makefile
parente47f78ed124b35dbd03df9b1471bbc3c7b88898f (diff)
downloadllvm-9cf662b367795f07ddf2c6deca33839b6581548b.tar.gz
Apply Michael Kahl's patch to fix the 'make tools-only' target when OBJDIR != SRCDIR.
See PR222. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11102 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f574193388ac..f9b834b79dce 100644
--- a/Makefile
+++ b/Makefile
@@ -22,8 +22,8 @@ distclean:: clean
$(LEVEL)/config.log \
$(LEVEL)/TAGS
-tools-only:
- @for dir in lib/Support utils lib tools; do $(MAKE) -C $$dir; done
+tools-only: DIRS = $(DIRS:runtime=)
+tools-only: all
configure: autoconf/configure.ac autoconf/aclocal.m4
cd autoconf && aclocal && autoconf -o ../configure configure.ac