diff options
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 036892d..6cac887 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1997 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.32 2000/02/10 02:54:23 hobbs Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.33 2000/04/08 06:59:09 hobbs Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -105,6 +105,7 @@ TKTESTOBJS = \ $(TMPDIR)\tkTest.obj \ $(TMPDIR)\tkSquare.obj \ $(TMPDIR)\testMain.obj \ + $(TMPDIR)\tkWinTest.obj \ $(TCLLIBDIR)\tclThreadTest.obj XLIBOBJS = \ @@ -139,7 +140,6 @@ TKOBJS = \ $(TMPDIR)\tkWinRegion.obj \ $(TMPDIR)\tkWinScrlbr.obj \ $(TMPDIR)\tkWinSend.obj \ - $(TMPDIR)\tkWinTest.obj \ $(TMPDIR)\tkWinWindow.obj \ $(TMPDIR)\tkWinWm.obj \ $(TMPDIR)\tkWinX.obj \ @@ -422,6 +422,9 @@ $(TMPDIR)\testMain.obj: $(ROOT)\win\winMain.c $(TMPDIR)\tkTest.obj: $(ROOT)\generic\tkTest.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? +$(TMPDIR)\tkWinTest.obj: $(ROOT)\generic\tkWinTest.c + $(cc32) $(WISH_CFLAGS) -Fo$@ $? + $(TMPDIR)\tkSquare.obj: $(ROOT)\generic\tkSquare.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? |