diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-19 21:57:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-19 21:57:09 (GMT) |
commit | b8bb091e43904fa2897b72f1853d1d9f298d26ac (patch) | |
tree | 2e1c470dd2a4ee3ac2773f9bd6ee3feb8668be63 /win | |
parent | 9c8731a3a9259e66d93d399531844eebc954544e (diff) | |
parent | 7f4b300e2a1f846f1aff77518a22caf720b83725 (diff) | |
download | tcl-b8bb091e43904fa2897b72f1853d1d9f298d26ac.zip tcl-b8bb091e43904fa2897b72f1853d1d9f298d26ac.tar.gz tcl-b8bb091e43904fa2897b72f1853d1d9f298d26ac.tar.bz2 |
(Bad idea)tcl_nosize
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 4 | ||||
-rw-r--r-- | win/makefile.vc | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index dacbbb5..6b9685d 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -378,6 +378,7 @@ REG_OBJS = tclWinReg.$(OBJEXT) STUB_OBJS = \ tclStubLib.$(OBJEXT) \ + tclStubLibCompat.$(OBJEXT) \ tclTomMathStubLib.$(OBJEXT) \ tclOOStubLib.$(OBJEXT) @@ -505,6 +506,9 @@ tclPkgConfig.${OBJEXT}: tclPkgConfig.c # The following objects are part of the stub library and should not be built # as DLL objects but none of the symbols should be exported +tclStubLibCompat.${OBJEXT}: tclStubLibCompat.c + $(CC) -c $(CC_SWITCHES) -DSTATIC_BUILD @DEPARG@ $(CC_OBJNAME) + tclStubLib.${OBJEXT}: tclStubLib.c $(CC) -c $(CC_SWITCHES) -DSTATIC_BUILD @DEPARG@ $(CC_OBJNAME) diff --git a/win/makefile.vc b/win/makefile.vc index 2784140..823142f 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -448,6 +448,7 @@ TCLOBJS = $(COREOBJS) $(ZLIBOBJS) $(TOMMATHOBJS) $(PLATFORMOBJS) TCLSTUBOBJS = \ $(TMP_DIR)\tclStubLib.obj \ + $(TMP_DIR)\tclStubLibCompat.obj \ $(TMP_DIR)\tclTomMathStubLib.obj \ $(TMP_DIR)\tclOOStubLib.obj |