diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-11-23 16:09:33 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-11-23 16:09:33 (GMT) |
commit | bb110b19891f138458016add065c7dae4d7e2b39 (patch) | |
tree | d0e639f266469ceaee625f0ec97ad22b267558bb /unix | |
parent | 596d16d10b16b1c9bd2990e294c56303024de03b (diff) | |
download | tk-bb110b19891f138458016add065c7dae4d7e2b39.zip tk-bb110b19891f138458016add065c7dae4d7e2b39.tar.gz tk-bb110b19891f138458016add065c7dae4d7e2b39.tar.bz2 |
Better fix for the problem when someone tricks make into thinking 'test' is a
real target.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 26e3c42..317081a 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.163 2009/11/23 15:59:18 dkf Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.164 2009/11/23 16:09:33 dkf Exp $ # Current Tk version; used in various names. @@ -1711,4 +1711,15 @@ BUILD_HTML = \ "$${TCLSH}" $(TOOL_DIR)/tcltk-man2html.tcl --htmldir="$(HTML_INSTALL_DIR)" \ --srcdir=$(TOP_DIR)/.. $(BUILD_HTML_FLAGS) +# +# 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 doc tkLibObjs objs tktest-real test test-classic +.PHONY: test-ttk testlang runtest shell demo gdb install install-strip +.PHONY: install-binaries install-libraries install-demos install-doc +.PHONY: install-private-headers clean distclean depend genstubs checkstubs +.PHONY: checkuchar checkexports rpm dist alldist allpatch html html-tcl html-tk + # DO NOT DELETE THIS LINE -- make depend depends on it. |