diff options
author | stwo <stwo> | 2010-12-17 23:49:37 (GMT) |
---|---|---|
committer | stwo <stwo> | 2010-12-17 23:49:37 (GMT) |
commit | bcf76985e02074220f86d2cb6e8bfedf6db60447 (patch) | |
tree | afa45c21f48d22f1ed002affc63d2e4bf48bd25c | |
parent | f66e89b0917da5d8b19cc757c2b408397f6d7947 (diff) | |
download | tcl-bcf76985e02074220f86d2cb6e8bfedf6db60447.zip tcl-bcf76985e02074220f86d2cb6e8bfedf6db60447.tar.gz tcl-bcf76985e02074220f86d2cb6e8bfedf6db60447.tar.bz2 |
Remove unwanted/obsolete 'ddd' target.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/Makefile.in | 9 |
2 files changed, 6 insertions, 7 deletions
@@ -1,5 +1,9 @@ 2010-12-17 Stuart Cassoff <stwo@users.sourceforge.net> + * unix/Makefile.in: Remove unwanted/obsolete 'ddd' target. + +2010-12-17 Stuart Cassoff <stwo@users.sourceforge.net> + * unix/Makefile.in: Clean up '.PHONY:' targets: Arrange those common to Tcl and Tk as in Tk's Makefile.in, add any missing ones and remove duplicates. diff --git a/unix/Makefile.in b/unix/Makefile.in index 29e8ab3..0d6d337 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.314 2010/12/17 23:14:41 stwo Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.315 2010/12/17 23:49:37 stwo Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -260,7 +260,6 @@ INSTALL_TZDATA = @INSTALL_TZDATA@ #-------------------------------------------------------------------------- GDB = gdb -DDD = ddd TRACE = strace TRACE_OPTS = VALGRIND = valgrind @@ -735,10 +734,6 @@ shell: ${TCL_EXE} gdb: ${TCL_EXE} $(SHELL_ENV) $(GDB) ./${TCL_EXE} -# This target can be used to run tclsh inside ddd -ddd: ${TCL_EXE} - $(SHELL_ENV) $(DDD) ./${TCL_EXE} - valgrind: ${TCL_EXE} ${TCLTEST_EXE} $(SHELL_ENV) $(VALGRIND) $(VALGRINDARGS) ./${TCLTEST_EXE} $(TOP_DIR)/tests/all.tcl -singleproc 1 $(TESTFLAGS) @@ -2056,7 +2051,7 @@ BUILD_HTML = \ .PHONY: clean distclean depend genstubs checkstubs checkexports checkuchar .PHONY: shell gdb valgrind valgrindshell dist alldist rpm .PHONY: tclLibObjs tcltest-real test-tcl gdb-test ro-test trace-test xttest -.PHONY: topDirName gendate gentommath_h trace-shell ddd checkdoc +.PHONY: topDirName gendate gentommath_h trace-shell checkdoc .PHONY: install-tzdata install-msgs .PHONY: packages configure-packages test-packages clean-packages .PHONY: dist-packages distclean-packages install-packages |