summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-08 09:21:37 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-02-08 09:21:37 (GMT)
commitfa2bb177ebd40bbd17d74535df0e5ba6769e3175 (patch)
treef6d804df4b1753afb4043f92fe7ab00efbd7d50e /win
parent00e0788723b72c953f9e8a31fdf16cad678b994b (diff)
downloadtcl-fa2bb177ebd40bbd17d74535df0e5ba6769e3175.zip
tcl-fa2bb177ebd40bbd17d74535df0e5ba6769e3175.tar.gz
tcl-fa2bb177ebd40bbd17d74535df0e5ba6769e3175.tar.bz2
Makefile cleanup: Remove *.zip and *.vfs files/directories as part of "make clean", which might be a leftover of a previous Tcl 8.7 build in this directory
Diffstat (limited to 'win')
-rw-r--r--win/Makefile.in5
-rw-r--r--win/makefile.vc3
2 files changed, 4 insertions, 4 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 9d82961..f7fe219 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -171,7 +171,7 @@ TCL_EXE = tclsh
# Setting the VPATH variable to a list of paths will cause the Makefile to
# look into these paths when resolving .c to .obj dependencies.
-VPATH = $(GENERIC_DIR):$(TOMMATH_DIR):$(WIN_DIR):$(COMPAT_DIR)
+VPATH = $(GENERIC_DIR):$(WIN_DIR):$(COMPAT_DIR):$(TOMMATH_DIR)
AR = @AR@
RANLIB = @RANLIB@
@@ -751,7 +751,8 @@ cleanhelp:
clean: cleanhelp
$(RM) *.lib *.a *.exp *.dll *.$(RES) *.${OBJEXT} *~ \#* TAGS a.out
$(RM) $(TCLSH) $(CAT32) $(TEST_EXE_FILE) tcltest.cmd tcltest.sh
- $(RM) *.pch *.ilk *.pdb
+ $(RM) *.pch *.ilk *.pdb *.zip
+ $(RMDIR) *.vfs
distclean: clean
$(RM) Makefile config.status config.cache config.log tclConfig.sh \
diff --git a/win/makefile.vc b/win/makefile.vc
index 692d209..4f657a5 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -1,7 +1,6 @@
#------------------------------------------------------------- -*- makefile -*-
-# makefile.vc --
#
-# Microsoft Visual C++ makefile for use with nmake.exe v1.62+ (VC++ 5.0+)
+# Microsoft Visual C++ makefile for building Tcl with nmake
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.