diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-09-20 12:37:19 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-09-20 12:37:19 (GMT) |
commit | c220fbe2ff72c2408a2e9c303975f80d04fd44e7 (patch) | |
tree | 924c0628c3e395cad796069cd9705d3d20155c45 /win | |
parent | fc7d1ca9fea4659cab0c374e75bfb7bb9f68c37e (diff) | |
parent | f521b724666bd391377bcc556d0f9103750931b7 (diff) | |
download | tcl-c220fbe2ff72c2408a2e9c303975f80d04fd44e7.zip tcl-c220fbe2ff72c2408a2e9c303975f80d04fd44e7.tar.gz tcl-c220fbe2ff72c2408a2e9c303975f80d04fd44e7.tar.bz2 |
Added a script-readable bytecode disassembler in tcl::unsupported.
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 1 | ||||
-rw-r--r-- | win/makefile.bc | 5 | ||||
-rw-r--r-- | win/makefile.vc | 7 |
3 files changed, 12 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 150f5b8..325b365 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -232,6 +232,7 @@ GENERIC_OBJS = \ tclConfig.$(OBJEXT) \ tclDate.$(OBJEXT) \ tclDictObj.$(OBJEXT) \ + tclDisassemble.$(OBJEXT) \ tclEncoding.$(OBJEXT) \ tclEnsemble.$(OBJEXT) \ tclEnv.$(OBJEXT) \ diff --git a/win/makefile.bc b/win/makefile.bc index a962bc6..f5196b6 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -207,6 +207,7 @@ TCLOBJS = \ $(TMPDIR)\tclConfig.obj \ $(TMPDIR)\tclDate.obj \ $(TMPDIR)\tclDictObj.obj \ + $(TMPDIR)\tclDisassemble.obj \ $(TMPDIR)\tclEncoding.obj \ $(TMPDIR)\tclEnsemble.obj \ $(TMPDIR)\tclEnv.obj \ @@ -587,3 +588,7 @@ clean: -@$(RM) $(TMPDIR)\*.exe -@$(RMDIR) $(OUTDIR) -@$(RMDIR) $(TMPDIR) + +# Local Variables: +# mode: makefile +# End: diff --git a/win/makefile.vc b/win/makefile.vc index e5f6c9b..8c65bd0 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 \ @@ -1229,3 +1230,7 @@ realclean: hose hose: @echo Hosing $(OUT_DIR)\* ... @if exist $(OUT_DIR)\nul $(RMDIR) $(OUT_DIR) + +# Local Variables: +# mode: makefile +# End: |