1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-
+
|
# Visual C++ 2.x and 4.0 makefile
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# RCS: @(#) $Id: makefile.vc,v 1.1.2.11 1998/12/11 00:55:53 stanton Exp $
# RCS: @(#) $Id: makefile.vc,v 1.1.2.12 1998/12/13 08:12:03 lfb Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
# location of the compiler directories.
#
# Project directories
|
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
|
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
-
-
-
+
+
+
+
|
-@mkd $(SCRIPT_INSTALL_DIR)
-@mkd $(SCRIPT_INSTALL_DIR)\http1.0
-@copy $(ROOT)\library\http1.0\http.tcl $(SCRIPT_INSTALL_DIR)\http1.0
-@copy $(ROOT)\library\http1.0\pkgIndex.tcl $(SCRIPT_INSTALL_DIR)\http1.0
-@mkd $(SCRIPT_INSTALL_DIR)\http2.0
-@copy $(ROOT)\library\http2.0\http.tcl $(SCRIPT_INSTALL_DIR)\http2.0
-@copy $(ROOT)\library\http2.0\pkgIndex.tcl $(SCRIPT_INSTALL_DIR)\http2.0
-@mkd $(SCRIPT_INSTALL_DIR)\opt0.1
-@copy $(ROOT)\library\opt0.1\optparse.tcl $(SCRIPT_INSTALL_DIR)\opt0.1
-@copy $(ROOT)\library\opt0.1\pkgIndex.tcl $(SCRIPT_INSTALL_DIR)\opt0.1
-@mkd $(SCRIPT_INSTALL_DIR)\opt0.4
-@copy $(ROOT)\library\opt0.4\optparse.tcl $(SCRIPT_INSTALL_DIR)\opt0.4
-@copy $(ROOT)\library\opt0.4\pkgIndex.tcl $(SCRIPT_INSTALL_DIR)\opt0.4
-@copy $(GENERICDIR)\tcl.h $(INCLUDE_INSTALL_DIR)
-@copy $(ROOT)\library\history.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\init.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\ldAout.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\parray.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\safe.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\tclIndex $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\word.tcl $(SCRIPT_INSTALL_DIR)
-@copy $(ROOT)\library\auto.tcl $(SCRIPT_INSTALL_DIR)
#
# Special case object file targets
#
$(TMPDIR)\tclWinInit.obj: $(WINDIR)\tclWinInit.c
$(cc32) -DDLL_BUILD -DBUILD_tcl $(TCL_CFLAGS) $(EXTFLAGS) \
|