summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-01-06 10:28:28 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-01-06 10:28:28 (GMT)
commit1ccdd5f18672bc47517b020a1c65d861351fcfdd (patch)
treede226a118c5702aba957febd5ef2412e572b94f9 /unix/Makefile.in
parent158c112e03dcd064327688576f00d1d8150d2932 (diff)
downloadtcl-1ccdd5f18672bc47517b020a1c65d861351fcfdd.zip
tcl-1ccdd5f18672bc47517b020a1c65d861351fcfdd.tar.gz
tcl-1ccdd5f18672bc47517b020a1c65d861351fcfdd.tar.bz2
Don't assume/set LDFLAGS being "", it could be set on the "configure" command-line.
Remove "test-packages" test-target (which doesn't exist), but add "test-tcl" being the same as "test".
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in21
1 files changed, 20 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index ea89d11..f314862 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -601,7 +601,9 @@ tcltest-real:
# tcltest, ie:
# % make test TESTFLAGS="-verbose bps -file fileName.test"
-test: tcltest@EXEEXT@
+test: test-tcl
+
+test-tcl: tcltest@EXEEXT@
@LD_LIBRARY_PATH_VAR@="`pwd`:$${@LD_LIBRARY_PATH_VAR@}"; export @LD_LIBRARY_PATH_VAR@; \
TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \
./tcltest@EXEEXT@ $(TOP_DIR)/tests/all.tcl $(TESTFLAGS)
@@ -1862,4 +1864,21 @@ package-generate:
rm -rf $(PACKAGE)
#--------------------------------------------------------------------------
+# The list of all the targets that do not correspond to real files. This stops
+# 'make' from getting confused when someone makes an error in a rule.
+#--------------------------------------------------------------------------
+
+.PHONY: all binaries libraries objs doc html html-tcl html-tk test runtest
+.PHONY: install install-strip install-binaries install-libraries
+.PHONY: install-headers install-private-headers install-doc
+.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 checkdoc
+.PHONY: install-tzdata install-msgs
+.PHONY: packages configure-packages test-packages clean-packages
+.PHONY: dist-packages distclean-packages install-packages
+.PHONY: install-libraries-zipfs-shared install-libraries-zipfs-static tclzipfile
+
+#--------------------------------------------------------------------------
# DO NOT DELETE THIS LINE -- make depend depends on it.