Various changes related to the Subversion migration.
[u/mdw/putty] / README
CommitLineData
6e9a74eb 1This is the README for the source archive of PuTTY, a free Win32
8fb63331 2and Unix Telnet and SSH client.
b9c299bb 3
58de2f3c 4If you want to rebuild PuTTY from source, we provide a variety of
4494be0a 5Makefiles and equivalents. (If you have fetched the source from
6Subversion, you'll have to generate the Makefiles yourself -- see
7below.)
b69755a7 8
9For building on Windows:
7603011f 10
58de2f3c 11 - Makefile.vc is for command-line builds on MS Visual C++ systems.
12 Type `nmake -f Makefile.vc' to build all the PuTTY binaries.
7603011f 13
62793edf 14 (We've also had one report of success building with the
15 OpenWatcom compiler -- www.openwatcom.org -- using Makefile.vc
16 with `wmake -ms -f makefile.vc' and NO_MULTIMON, although we
17 haven't tried this ourselves.)
18
58de2f3c 19 - Inside the MSVC subdirectory are MS Visual Studio project files
20 for doing GUI-based builds of the various PuTTY utilities. These
21 have been tested on Visual Studio 6.
22
23 You should be able to build each PuTTY utility by loading the
24 corresponding .dsp file in Visual Studio. For example,
25 MSVC/putty/putty.dsp builds PuTTY itself, MSVC/plink/plink.dsp
26 builds Plink, and so on.
27
7603011f 28 - Makefile.bor is for the Borland C compiler. Type `make -f
29 Makefile.bor' to build all the PuTTY binaries.
30
31 - Makefile.cyg is for Cygwin / mingw32 installations. Type `make -f
32 Makefile.cyg' to build all the PuTTY binaries. Note that by
33 default the Pageant WinNT security features and the multiple
34 monitor support are excluded from the Cygwin build, since at the
8fb63331 35 time of writing Cygwin doesn't include the necessary headers.
7603011f 36
2c228de6 37 - Makefile.lcc is for lcc-win32. Type `make -f Makefile.lcc'. (You
38 will probably need to specify COMPAT=-DNO_MULTIMON.)
39
b69755a7 40For building on Unix:
41
42 - unix/Makefile.gtk is for Unix and GTK. If you don't have GTK, you
43 should still be able to build the command-line utilities (PSCP,
44 PSFTP, Plink, PuTTYgen) using this makefile. The makefile expects
45 you to change into the `unix' subdirectory, then run `make -f
46 Makefile.gtk'. Note that Unix PuTTY has mostly only been tested
47 on Linux so far; portability problems such as BSD-style ptys or
48 different header file requirements are expected.
49
8fb63331 50 For the graphical utilities, Gtk+-1.2 is required. Gtk+-2.0 is not
51 yet supported.
52
142a7757 53 There is an `install' target; note that by default it tries to
54 install `man' pages, which need to be built using Halibut first --
55 see below.
56
7603011f 57All of the Makefiles are generated automatically from the file
58`Recipe' by the Perl script `mkfiles.pl'. Additions and corrections
59to Recipe and the mkfiles.pl are much more useful than additions and
60corrections to the alternative Makefiles themselves.
3d541627 61
142a7757 62Documentation (in various formats including Windows Help and Unix
63`man' pages) is to be built from the Halibut (`.but') files in the
64`doc' subdirectory using `doc/Makefile'. Halibut can be found at
65<http://www.chiark.greenend.org.uk/~sgtatham/halibut/>.
66
b9c299bb 67The PuTTY home web site is
68
df96b74b 69 http://www.chiark.greenend.org.uk/~sgtatham/putty/
b9c299bb 70
6e9a74eb 71If you want to send bug reports or feature requests, please read the
72Feedback section of the web site before doing so. Sending one-line
73reports saying `it doesn't work' will waste your time as much as
74ours.
b9c299bb 75
76See the file LICENCE for the licence conditions.