diff options
author | stanton <stanton> | 1999-03-18 00:43:01 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-03-18 00:43:01 (GMT) |
commit | fdd6e38cafc66a39613cc1d8dcb543404c5849a8 (patch) | |
tree | 0c7bd319111ce37349a7ef43cf54e6db4bf2b1a2 /win | |
parent | e168f4f3b6c08670a277c48b834360968091f82d (diff) | |
download | tk-fdd6e38cafc66a39613cc1d8dcb543404c5849a8.zip tk-fdd6e38cafc66a39613cc1d8dcb543404c5849a8.tar.gz tk-fdd6e38cafc66a39613cc1d8dcb543404c5849a8.tar.bz2 |
* win/makefile.vc:
* generic/tk.h: Changed to use TCL_BETA_RELEASE macro, and fixed
so this works in rc files.
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index bbb0aeb..8ae78ce 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.1.4.18 1999/03/17 22:06:29 stanton Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.1.4.19 1999/03/18 00:43:01 stanton Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -481,7 +481,8 @@ $(TMPDIR)\winMain.obj: $(ROOT)\win\winMain.c $(cc32) -DDLL_BUILD -DBUILD_tk $(TK_CFLAGS) -Fo$(TMPDIR)\ $< {$(RCDIR)}.rc{$(TMPDIR)}.res: - $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TOOLS32)\include" $< + $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TOOLS32)\include" \ + -i "$(TCLDIR)\generic" $< clean: -@del $(OUTDIR)\*.exp |