[llvm-commits] [test-suite] r125145 - in /test-suite/trunk: Makefile autoconf/configure.ac tools/ tools/Makefile

Daniel Dunbar daniel at zuster.org
Tue Feb 8 16:37:55 PST 2011


Author: ddunbar
Date: Tue Feb  8 18:37:55 2011
New Revision: 125145

URL: http://llvm.org/viewvc/llvm-project?rev=125145&view=rev
Log:
test-suite: Sketch an empty tools directory.

Added:
    test-suite/trunk/tools/
    test-suite/trunk/tools/Makefile
Modified:
    test-suite/trunk/Makefile
    test-suite/trunk/autoconf/configure.ac

Modified: test-suite/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile?rev=125145&r1=125144&r2=125145&view=diff
==============================================================================
--- test-suite/trunk/Makefile (original)
+++ test-suite/trunk/Makefile Tue Feb  8 18:37:55 2011
@@ -20,3 +20,7 @@
 build-for-llvm-top:
 	./configure --with-llvmsrc=$(LLVM_TOP)/llvm --with-llvmobj=$(LLVM_TOP)/llvm --srcdir=$(LLVM_TOP)/test-suite --with-llvmgccdir=$(LLVM_TOP)/install --with-externals=$(LLVM_TOP)/externals
 	$(MAKE)
+
+tools:
+	$(MAKE) -C tools
+.PHONY: tools

Modified: test-suite/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/autoconf/configure.ac?rev=125145&r1=125144&r2=125145&view=diff
==============================================================================
--- test-suite/trunk/autoconf/configure.ac (original)
+++ test-suite/trunk/autoconf/configure.ac Tue Feb  8 18:37:55 2011
@@ -46,6 +46,7 @@
 AC_CONFIG_MAKEFILE(MultiSource/Makefile.multisrc)
 AC_CONFIG_MAKEFILE(SingleSource/Makefile)
 AC_CONFIG_MAKEFILE(SingleSource/Makefile.singlesrc)
+AC_CONFIG_MAKEFILE(tools/Makefile)
 
 dnl **************************************************************************
 dnl * Get command line options

Added: test-suite/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/tools/Makefile?rev=125145&view=auto
==============================================================================
--- test-suite/trunk/tools/Makefile (added)
+++ test-suite/trunk/tools/Makefile Tue Feb  8 18:37:55 2011
@@ -0,0 +1,2 @@
+LEVEL=..
+include $(LEVEL)/Makefile.programs





More information about the llvm-commits mailing list