diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-23 10:57:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-07-23 10:57:22 (GMT) |
commit | 542b57cf21284e1bd707e32f5238422e8c368205 (patch) | |
tree | 24e533c8f9d473777791f3dbf3da84cb98ecee4f /win/makefile.bc | |
parent | 07d10b8a58badcd2bcd882286b3f1caec5bc3476 (diff) | |
parent | e36fd891e4b0918267e7cfdd7172a4f96fe01aac (diff) | |
download | tcl-542b57cf21284e1bd707e32f5238422e8c368205.zip tcl-542b57cf21284e1bd707e32f5238422e8c368205.tar.gz tcl-542b57cf21284e1bd707e32f5238422e8c368205.tar.bz2 |
rebase
Diffstat (limited to 'win/makefile.bc')
-rw-r--r-- | win/makefile.bc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/win/makefile.bc b/win/makefile.bc index 0b17cea..4d97d85 100644 --- a/win/makefile.bc +++ b/win/makefile.bc @@ -280,7 +280,8 @@ TCLOBJS = \ TCLSTUBOBJS = \ $(TMPDIR)\tclStubLib.obj \ $(TMPDIR)\tclTomMathStubLib.obj \ - $(TMPDIR)\tclOOStubLib.obj + $(TMPDIR)\tclOOStubLib.obj \ + $(TMPDIR)\tclWinPanic.obj WINDIR = $(ROOT)\win GENERICDIR = $(ROOT)\generic @@ -534,6 +535,9 @@ $(TMPDIR)\tclTomMathStubLib.obj : $(GENERICDIR)\tclTomMathStubLib.c $(TMPDIR)\tclOOStubLib.obj : $(GENERICDIR)\tclOOStubLib.c $(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -o$(TMPDIR)\$@ $? +$(TMPDIR)\tclWinPanic.obj : $(WINDIR)\tclWinPanic.c + $(cc32) $(TCL_CFLAGS) -DSTATIC_BUILD -o$(TMPDIR)\$@ $? + # Dedependency rules |