Overview
Comment: | Added 'make test' target for automated testing. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
110d20f9f47bdfdc13306154dcfe07c7 |
User & Date: | aborr on 2000-02-05 00:32:37 |
Other Links: | manifest | tags |
Context
2000-02-06
| ||
00:57 | Rearranged build/install files to use a shared config module check-in: 3c5ede3c8b user: wart tags: trunk | |
2000-02-05
| ||
00:32 | Added 'make test' target for automated testing. check-in: 110d20f9f4 user: aborr tags: trunk | |
00:31 | Initial check-in of the TEA standard script for automated testing. check-in: 2ea2db3866 user: aborr tags: trunk | |
Changes
Modified Makefile.in from [d300767a7d] to [689d08510d].
1 2 3 4 5 6 7 8 9 10 11 12 13 | # Makefile.in -- # # This file is a Makefile for the tls Tcl extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999-2000 Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Makefile.in -- # # This file is a Makefile for the tls Tcl extension. If it has the name # "Makefile.in" then it is a template for a Makefile; to generate the # actual Makefile, run "./configure", which is a configuration script # generated by the "autoconf" program (constructs like "@foo@" will get # replaced in the actual Makefile. # # Copyright (c) 1999-2000 Scriptics Corporation. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # RCS: @(#) $Id: Makefile.in,v 1.4 2000/02/05 00:32:37 aborr Exp $ lib_BINARIES=$(tls_LIB_FILE) BINARIES=$(lib_BINARIES) #======================================================================== # Enumerate the names of the source files included in this package. |
︙ | ︙ | |||
235 236 237 238 239 240 241 | # @for i in $(srcdir)/*.n; \ # do \ # echo "Installing $$i"; \ # rm -f $(mandir)/mann/$$i; \ # $(INSTALL_DATA) $$i $(mandir)/mann ; \ # done | | > > > > > > > > > | 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | # @for i in $(srcdir)/*.n; \ # do \ # echo "Installing $$i"; \ # rm -f $(mandir)/mann/$$i; \ # $(INSTALL_DATA) $$i $(mandir)/mann ; \ # done test: binaries libraries ( echo \ pkg_mkIndex . $(exampleA_LIB_FILE) \;\ exit; ) | \ $(TCLSH_PROG) TCL_LIBRARY=$(TCL_LIBRARY_DIR) \ LD_LIBRARY_PATH=$(BUILD_DIR):$(TCL_BIN_DIR):$(LD_LIBRARY_PATH) \ TCLLIBPATH=. \ PATH="$(BUILD_DIR)":"$(TCL_BIN_DIR)":"$(PATH)" \ $(TCLSH_PROG) `@CYGPATH@ $(srcdir)/tests/all.tcl` $(TCLTESTARGS) depend: #======================================================================== # Enumerate the names of the object files included in this package. # These objects are created and linked into the final library. In # most cases these object files will correspond to the source files |
︙ | ︙ |