1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-
+
|
# 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.
# Copyright (c) 1998-1999 by Scriptics Corporation.
#
# RCS: @(#) $Id: makefile.vc,v 1.52 2000/05/03 00:15:11 hobbs Exp $
# RCS: @(#) $Id: makefile.vc,v 1.53 2000/07/19 18:27:45 ericm 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
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
+
+
+
+
|
#
# INSTALLDIR = where the install- targets should copy the binaries and
# support files
#
# Set this to the appropriate value of /MACHINE: for your platform
MACHINE = IX86
#MACHINE = ALPHA
ROOT = ..
INSTALLDIR = c:\Progra~1\Tcl
!IF "$(MACHINE)" == "IA64"
TOOLS32 = c:\ia64sdk17
TOOLS32_rc = c:\ia64sdk17
!ELSE IF "$(MACHINE)" == "ALPHA"
TOOLS32 = C:\Progra~1\Micros~2\vc98
TOOLS32_rc = C:\Progra~1\Micros~2\common\MSDev98
!ELSE
TOOLS32 = c:\Progra~1\devstudio\vc
TOOLS32_rc = c:\Progra~1\devstudio\sharedide
!ENDIF
# Uncomment the following line to compile with thread support
#THREADDEFINES = -DTCL_THREADS=1
|