diff options
author | hobbs <hobbs> | 2000-08-06 00:10:56 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-08-06 00:10:56 (GMT) |
commit | ed4ea20537ac567b6a8448a6e76fbf1e8c7d84e3 (patch) | |
tree | 842e27b8e43c1a98650250fdb16b92a5b243b071 /win/makefile.vc | |
parent | e362ccb25a38008c0f631717e1cc8c73b7987b84 (diff) | |
download | tk-ed4ea20537ac567b6a8448a6e76fbf1e8c7d84e3.zip tk-ed4ea20537ac567b6a8448a6e76fbf1e8c7d84e3.tar.gz tk-ed4ea20537ac567b6a8448a6e76fbf1e8c7d84e3.tar.bz2 |
cleaned up use of *_DIR macros
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 693a792..e656452 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.35 2000/07/20 15:20:52 ericm Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.36 2000/08/06 00:10:56 hobbs Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -346,10 +346,10 @@ install-binaries: install-libraries: @mkd "$(INCLUDE_INSTALL_DIR)" @mkd "$(INCLUDE_INSTALL_DIR)\X11" - copy "$(ROOT)\generic\tk.h" "$(INCLUDE_INSTALL_DIR)" - copy "$(ROOT)\generic\tkDecls.h" "$(INCLUDE_INSTALL_DIR)" - copy "$(ROOT)\generic\tkIntXlibDecls.h" "$(INCLUDE_INSTALL_DIR)" - xcopy "$(ROOT)\xlib\X11\*.h" "$(INCLUDE_INSTALL_DIR)\X11" + copy "$(GENERICDIR)\tk.h" "$(INCLUDE_INSTALL_DIR)" + copy "$(GENERICDIR)\tkDecls.h" "$(INCLUDE_INSTALL_DIR)" + copy "$(GENERICDIR)\tkIntXlibDecls.h" "$(INCLUDE_INSTALL_DIR)" + xcopy "$(XLIBDIR)\X11\*.h" "$(INCLUDE_INSTALL_DIR)\X11" @mkd "$(SCRIPT_INSTALL_DIR)" @mkd "$(SCRIPT_INSTALL_DIR)\images" @mkd "$(SCRIPT_INSTALL_DIR)\demos" @@ -420,19 +420,19 @@ genstubs: # Special case object file targets # -$(TMPDIR)\testMain.obj: $(ROOT)\win\winMain.c +$(TMPDIR)\testMain.obj: $(WINDIR)\winMain.c $(cc32) $(WISH_CFLAGS) -DTK_TEST -Fo$@ $? -$(TMPDIR)\tkTest.obj: $(ROOT)\generic\tkTest.c +$(TMPDIR)\tkTest.obj: $(GENERICDIR)\tkTest.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? -$(TMPDIR)\tkWinTest.obj: $(ROOT)\generic\tkWinTest.c +$(TMPDIR)\tkWinTest.obj: $(WINDIR)\tkWinTest.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? -$(TMPDIR)\tkSquare.obj: $(ROOT)\generic\tkSquare.c +$(TMPDIR)\tkSquare.obj: $(GENERICDIR)\tkSquare.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? -$(TMPDIR)\winMain.obj: $(ROOT)\win\winMain.c +$(TMPDIR)\winMain.obj: $(WINDIR)\winMain.c $(cc32) $(WISH_CFLAGS) -Fo$@ $? $(TMPDIR)\tkStubLib.obj : $(GENERICDIR)\tkStubLib.c |