diff options
author | das <das@noemail.net> | 2005-12-09 00:48:50 (GMT) |
---|---|---|
committer | das <das@noemail.net> | 2005-12-09 00:48:50 (GMT) |
commit | 92ae2ea54ed97d923d89bb2985a59e08b2dcbdb7 (patch) | |
tree | d4cc4ad147a14ead3f76869e5fa86da611d8d993 /win/Makefile.in | |
parent | 47e29674830bf7de7e3f6eff86d12442605c95cb (diff) | |
download | tk-92ae2ea54ed97d923d89bb2985a59e08b2dcbdb7.zip tk-92ae2ea54ed97d923d89bb2985a59e08b2dcbdb7.tar.gz tk-92ae2ea54ed97d923d89bb2985a59e08b2dcbdb7.tar.bz2 |
* generic/tkInt.decls: move all platform test sources from tk lib into
* generic/tkTest.c: tktest directly, removes requirement to export
* macosx/tkMacOSXTest.c: TkplatformtestInit from internal stubs table.
* unix/Makefile.in:
* win/Makefile.in:
* win/makefile.vc:
* win/tkWinTest.c:
* generic/tkIntPlatDecls.h:
* generic/tkStubInit.c: regen.
FossilOrigin-Name: 6ef50d0bf4e64b8ac34e6ed5ba3a1ff11c1a0f97
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 8fdcd94..1f7c891 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.65 2005/12/08 20:25:42 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.66 2005/12/09 00:48:54 das Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -233,7 +233,8 @@ WISH_OBJS = \ TKTEST_OBJS = \ testMain.$(OBJEXT) \ tkSquare.$(OBJEXT) \ - tkTest.$(OBJEXT) + tkTest.$(OBJEXT) \ + tkWinTest.$(OBJEXT) XLIB_OBJS = \ xcolors.$(OBJEXT) \ @@ -268,7 +269,6 @@ TK_OBJS = \ tkWinScrlbr.$(OBJEXT) \ tkWinSend.$(OBJEXT) \ tkWinSendCom.$(OBJEXT) \ - tkWinTest.$(OBJEXT) \ tkWinWindow.$(OBJEXT) \ tkWinWm.$(OBJEXT) \ tkWinX.$(OBJEXT) \ @@ -593,6 +593,9 @@ testMain.$(OBJEXT): winMain.c tkTest.$(OBJEXT): tkTest.c $(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME) +tkWinTest.$(OBJEXT): tkWinTest.c + $(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME) + tkSquare.$(OBJEXT): tkSquare.c $(CC) -c $(CC_SWITCHES) @DEPARG@ $(CC_OBJNAME) |