Index: Makefile.in ================================================================== --- Makefile.in +++ Makefile.in @@ -51,10 +51,14 @@ # Install the extension install: @EXTENSION_TARGET@ pkgIndex.tcl $(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' $(INSTALL) -t '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' @EXTENSION_TARGET@ pkgIndex.tcl + +# Test target, run the automated test suite +test: @EXTENSION_TARGET@ + cd tests && @TCLSH_PROG@ all.tcl # Clean the local build directory for rebuild against the same configuration clean: rm -f tls.o tlsBIO.o tlsIO.o tlsX509.o rm -f tcltls.@SHOBJEXT@ @@ -74,6 +78,6 @@ mrproper: distclean rm -f @srcdir@/configure @srcdir@/config.sub @srcdir@/config.guess @srcdir@/install-sh rm -f @srcdir@/aclocal.m4 rm -rf @srcdir@/autom4te.cache -.PHONY: all install clean distclean mrproper +.PHONY: all install clean distclean mrproper test