File: config.vc

package info (click to toggle)
itcl3 3.2.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,452 kB
  • ctags: 967
  • sloc: ansic: 13,746; sh: 1,394; tcl: 1,022; makefile: 206
file content (73 lines) | stat: -rw-r--r-- 1,602 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
######################################################################
#
#  Edit for your local configuration.  This should be the only file
#  that needs editing to build [Incr Tcl/Tk].
#
# RCS: @(#) $Id: config.vc,v 1.2 2001/05/22 22:41:33 davygrvy Exp $
######################################################################

# only affects the linker and resource compiler
# pick from:
# ALPHA|ARM|IX86|MIPS|MIPS16|MIPSR41XX|PPC|SH3|SH4
#
# Or set to IA64 to rearrange everything to use the Intel IA64 SDK.
#
MACHINE   = IX86


# are we MSVC++ version 5 or 6 ?
#
MSDEV_VER	= 6

# Where is MSVC++ located?
#
MSDEVROOT	= C:\Dev\DevStudio60

# Where is Tcl ?
#
TCLROOT		= D:\tclpro_ws\tcl

# Does the above path point to the Tcl install or sources ?
#
ISTCLINSTALL	= 0

# Where is Tk ?  Only needed for a build from the sources.
#
!if $(ISTCLINSTALL) == 0
TKROOT		= D:\tclpro_ws\tk
!endif

# Where are we installing to?  When TCLROOT is already the install, this
# is bypassed.
#
!if $(ISTCLINSTALL) == 0
INSTALLDIR	= c:\progra~1\tcl
!else
INSTALLDIR	= $(TCLROOT)
!endif

# What Tcl version are we grabbing ?
#
TCLMAJOR	= 8
TCLMINOR	= 4

TCL_VERSION	= $(TCLMAJOR)$(TCLMINOR)
TCL_DOTVERSION	= $(TCLMAJOR).$(TCLMINOR)


!if "$(MACHINE)" == "IA64"
# untested logic path
#
vcvars		= "c:\ia64sdk17\vcvars32.bat"
!elseif $(MSDEV_VER) == 5
vcvars		= "$(MSDEVROOT)\vc\bin\vcvars32.bat"
!elseif $(MSDEV_VER) == 6
vcvars		= "$(MSDEVROOT)\vc98\bin\vcvars32.bat"
!endif

rc32		= rc
cc32		= cl
link32		= link
lib32		= lib
cvtres32	= cvtres