diff options
author | hobbs <hobbs> | 2000-04-08 06:59:09 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-04-08 06:59:09 (GMT) |
commit | 8961196a00e44f0bb7118ecdc25d15b9d5fa98b1 (patch) | |
tree | b56e825685f1474d30e5866b7dc7338452cb2fea /win/makefile.vc | |
parent | 8e142fe8489a9d39ab1dab14294ab96e22924c4f (diff) | |
download | tk-8961196a00e44f0bb7118ecdc25d15b9d5fa98b1.zip tk-8961196a00e44f0bb7118ecdc25d15b9d5fa98b1.tar.gz tk-8961196a00e44f0bb7118ecdc25d15b9d5fa98b1.tar.bz2 |
* win/makefile.vc (TKTEST_OBJS):
* win/Makefile.in (TKTEST_OBJS): moved tkWinTest.c from normal
objs to TKTEST_OBJS where it belonged.
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$@ $? |