summaryrefslogtreecommitdiffstats
path: root/win/Makefile.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-25 08:00:31 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-25 08:00:31 (GMT)
commit4a6df05f757a4b54a41154e1ede8c06d2e038362 (patch)
treeae71bf382325029012cecd77dfb1f0848a6dc55c /win/Makefile.in
parentc370eb50ed9a97a37da7b5947f802024968fb6d0 (diff)
parentf182c12f4a885f158795c23c07ffbc23af91c41e (diff)
downloadtcl-4a6df05f757a4b54a41154e1ede8c06d2e038362.zip
tcl-4a6df05f757a4b54a41154e1ede8c06d2e038362.tar.gz
tcl-4a6df05f757a4b54a41154e1ede8c06d2e038362.tar.bz2
[Bug 473946]: special characters not correctly sent, now for XTYP_EXECUTE as well as XTYP_REQUEST.
Fix "make genstubs" when cross-compiling on UNIX
Diffstat (limited to 'win/Makefile.in')
-rw-r--r--win/Makefile.in22
1 files changed, 18 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 1b7d21f..17bb1aa 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -745,8 +745,22 @@ $(GENERIC_DIR)/tclStubInit.c: $(GENERIC_DIR)/tcl.decls \
@echo "This warning can be safely ignored, do not report as a bug!"
genstubs:
- $(TCL_EXE) "$(ROOT_DIR_NATIVE)\tools\genStubs.tcl" \
+ $(TCL_EXE) "$(ROOT_DIR_NATIVE)/tools/genStubs.tcl" \
"$(GENERIC_DIR_NATIVE)" \
- "$(GENERIC_DIR_NATIVE)\tcl.decls" \
- "$(GENERIC_DIR_NATIVE)\tclInt.decls" \
- "$(GENERIC_DIR_NATIVE)\tclTomMath.decls"
+ "$(GENERIC_DIR_NATIVE)/tcl.decls" \
+ "$(GENERIC_DIR_NATIVE)/tclInt.decls" \
+ "$(GENERIC_DIR_NATIVE)/tclTomMath.decls"
+
+#
+# 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 tcltest binaries libraries doc gendate gentommath_h install
+.PHONY: install-binaries install-libraries install-tzdata install-msgs
+.PHONY: install-doc install-private-headers test test-tcl runtest shell
+.PHONY: gdb depend cleanhelp clean distclean packages install-packages
+.PHONY: test-packages clean-packages distclean-packages genstubs html
+.PHONY: html-tcl html-tk
+
+# DO NOT DELETE THIS LINE -- make depend depends on it.