The R Project SVN R

Rev

Rev 27942 | Rev 32566 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27942 Rev 27944
Line 34... Line 34...
34
3) Making Tcl/Tk.
34
3) Making Tcl/Tk.
35
 
35
 
36
Get the Tcl/Tk sources (I used 8.4.5 when testing this).
36
Get the Tcl/Tk sources (I used 8.4.5 when testing this).
37
You need VC++6 and a Windows command-line window.
37
You need VC++6 and a Windows command-line window.
38
 
38
 
39
Run \Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT
39
Run "\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT"
40
 
40
 
41
cd tcl8.4.5\win
41
cd tcl8.4.5\win
42
nmake -nologo -f makefile.vc release winhelp
42
nmake -nologo -f makefile.vc release winhelp
43
nmake -f makefile.vc install
43
nmake -f makefile.vc install
44
cd ..\..\tk8.4.5\win
44
cd ..\..\tk8.4.5\win
Line 47... Line 47...
47
 
47
 
48
Now copy /Program Files/Tcl to say /R/Tcl and (in any reasonable shell)
48
Now copy /Program Files/Tcl to say /R/Tcl and (in any reasonable shell)
49
cd /R/Tcl
49
cd /R/Tcl
50
rm bin/tclpip84.dll bin/tclsh84.exe bin/wish.exe
50
rm bin/tclpip84.dll bin/tclsh84.exe bin/wish.exe
51
rm -rf lib/*.lib lib/tk8.4/demos lib/tk8.4/images
51
rm -rf lib/*.lib lib/tk8.4/demos lib/tk8.4/images
52
cp .../tcl8.4.5/Release/tcl_docs/tcl84.* .
-
 
53
cp .../tk8.4.5/Release/tcl_docs/tk84.* .
-
 
54
cp .../tcl8.4.5/license.terms .
52
cp .../tcl8.4.5/license.terms .
55
 
53
 
56
BDR 2004-01-09
54
BDR 2004-01-09
57
55