summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2013-06-11 08:19:56 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2013-06-11 08:19:56 (GMT)
commit8aa1ab62e1501d779f07a7c0df073f852b5dce4d (patch)
tree0a9b5a6c169615e6e9b9dae2591a2976e0975d33 /win/makefile.vc
parent7585d9a6fde12d67972b07247cb3e527ad224f51 (diff)
downloadtcl-8aa1ab62e1501d779f07a7c0df073f852b5dce4d.zip
tcl-8aa1ab62e1501d779f07a7c0df073f852b5dce4d.tar.gz
tcl-8aa1ab62e1501d779f07a7c0df073f852b5dce4d.tar.bz2
Move the disassembler to its own file.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc7
1 files changed, 6 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index cddb253..09a1135 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -1,4 +1,4 @@
-#------------------------------------------------------------- -*- makefile -*-
+#-------------------------------------------------------------
# makefile.vc --
#
# Microsoft Visual C++ makefile for use with nmake.exe v1.62+ (VC++ 5.0+)
@@ -281,6 +281,7 @@ COREOBJS = \
$(TMP_DIR)\tclConfig.obj \
$(TMP_DIR)\tclDate.obj \
$(TMP_DIR)\tclDictObj.obj \
+ $(TMP_DIR)\tclDisassemble.obj \
$(TMP_DIR)\tclEncoding.obj \
$(TMP_DIR)\tclEnsemble.obj \
$(TMP_DIR)\tclEnv.obj \
@@ -1221,3 +1222,7 @@ realclean: hose
hose:
@echo Hosing $(OUT_DIR)\* ...
@if exist $(OUT_DIR)\nul $(RMDIR) $(OUT_DIR)
+
+# Local Variables:
+# mode: makefile
+# End: