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
# Visual C++ 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-2000 Ajuba Solutions.
#
# RCS: @(#) $Id: makefile.vc,v 1.57 2000/11/02 09:21:07 hobbs Exp $
# RCS: @(#) $Id: makefile.vc,v 1.58 2000/11/03 01:10:23 hobbs 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
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
-
+
+
-
-
+
+
-
-
-
-
-
+
-
-
-
-
+
+
|
TOOLS32_rc = C:\Progra~1\Microsoft Platform SDK
cc32 = "$(TOOLS32)\bin\Win64\cl.exe"
link32 = "$(TOOLS32)\bin\Win64\link.exe"
libpath32 = /LIBPATH:"$(TOOLS32)\lib\IA64"
lib32 = "$(TOOLS32)\bin\Win64\lib.exe"
!ELSE IF "$(MACHINE)" == "ALPHA"
!ELSE
# Visual Studio 5 default
TOOLS32 = C:\Progra~1\Micros~2\vc98
TOOLS32_rc = C:\Progra~1\Micros~2\common\MSDev98
#TOOLS32 = C:\Progra~1\devstudio\vc
#TOOLS32_rc = C:\Progra~1\devstudio\sharedide
cc32 = "$(TOOLS32)\bin\cl.exe"
link32 = "$(TOOLS32)\bin\link.exe"
libpath32 = /LIBPATH:"$(TOOLS32)\lib"
lib32 = "$(TOOLS32)\bin\lib.exe"
# Visual Studio 6 default
!ELSE
TOOLS32 = C:\Progra~1\devstudio\vc
TOOLS32_rc = C:\Progra~1\devstudio\sharedide
TOOLS32 = C:\Progra~1\Microsoft Visual Studio\VC98
TOOLS32_rc = C:\Progra~1\Microsoft Visual Studio\common\MSDev98
cc32 = "$(TOOLS32)\bin\cl.exe"
link32 = "$(TOOLS32)\bin\link.exe"
libpath32 = /LIBPATH:"$(TOOLS32)\lib"
lib32 = "$(TOOLS32)\bin\lib.exe"
!ENDIF
|