[llvm-commits] CVS: llvm/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Tue Feb 3 16:57:01 PST 2004
Changes in directory llvm:
Makefile updated: 1.17 -> 1.18
---
Log message:
Apply Michael Kahl's patch to fix the 'make tools-only' target when OBJDIR != SRCDIR.
See PR222.
---
Diffs of the changes: (+2 -2)
Index: llvm/Makefile
diff -u llvm/Makefile:1.17 llvm/Makefile:1.18
--- llvm/Makefile:1.17 Thu Jan 22 15:54:51 2004
+++ llvm/Makefile Tue Feb 3 16:56:40 2004
@@ -22,8 +22,8 @@
$(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
More information about the llvm-commits
mailing list