diff options
author | escoffon <escoffon> | 1998-07-30 12:34:55 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-07-30 12:34:55 (GMT) |
commit | cfd5a0c1409cdbe96ab7280337eafd4be706a4e1 (patch) | |
tree | b381549b20586d628e9de133e5438a8105ccc7e4 /win/makefile.vc | |
parent | a63c50265a27f173d0fcd73574709a8a6a13386f (diff) | |
download | tk-cfd5a0c1409cdbe96ab7280337eafd4be706a4e1.zip tk-cfd5a0c1409cdbe96ab7280337eafd4be706a4e1.tar.gz tk-cfd5a0c1409cdbe96ab7280337eafd4be706a4e1.tar.bz2 |
added the STATIC_BUILD macro for objects that are linked into executables
instead of being placed in the dll
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 565b608..ae8f2f5 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-1996 Sun Microsystems, Inc. -# SCCS: %Z% $Id: makefile.vc,v 1.8 1998/07/29 13:14:52 escoffon Exp $ +# SCCS: %Z% $Id: makefile.vc,v 1.9 1998/07/30 12:34:55 escoffon Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -355,19 +355,19 @@ $(DUMPEXTS): $(TCLDIR)\win\winDumpExts.c # $(TMPDIR)\testMain.obj: $(ROOT)\win\winMain.c - $(cc32) $(TK_CFLAGS) -DTK_TEST -Fo$@ $? + $(cc32) $(TK_CFLAGS) -DSTATIC_BUILD -DTK_TEST -Fo$@ $? $(TMPDIR)\tkConsole.obj: $(ROOT)\generic\tkConsole.c - $(cc32) $(TK_CFLAGS) -Fo$@ $? + $(cc32) $(TK_CFLAGS) -DSTATIC_BUILD -Fo$@ $? $(TMPDIR)\tkTest.obj: $(ROOT)\generic\tkTest.c - $(cc32) $(TK_CFLAGS) -Fo$@ $? + $(cc32) $(TK_CFLAGS) -DSTATIC_BUILD -Fo$@ $? $(TMPDIR)\tkSquare.obj: $(ROOT)\generic\tkSquare.c $(cc32) $(TK_CFLAGS) -Fo$@ $? $(TMPDIR)\winMain.obj: $(ROOT)\win\winMain.c - $(cc32) $(TK_CFLAGS) -Fo$@ $? + $(cc32) $(TK_CFLAGS) -DSTATIC_BUILD -Fo$@ $? # # Implicit rules |