Copyright 1997, 1998 Tadayoshi Kohno (kohno@cs.colorado.edu)
All Rights Reserved.
See the LICENSE file.

Howto Install libSSH under Windows 95/NT (simple way)

	Please read the README.txt file first

	libSSH installation procedures have only been setup for use
	with Microsoft Visual C++ (I use version 5.0).

	Take a look at the Makefile.VC and verify that things will work
	on your system.  Hopefully everything will work out-of-the-box.
	You might also want to check that INSTALLTOP is where you would like
	to put libSSH's library (libssh.lib) and include files.

	Run
		nmake -f Makefile.VC
	from the MSDos Command Prompt after "cd"ing into the directory in
	which you extracted libSSH.  This will create a temporary (tmp) and
	output (out) directory and will create libssh.lib under the
	out directory.

	Now, to install libSSH, within the MSDos Command Prompt run
		nmake -f Makefile.VC install
	This will copy the libssh.lib to $(INSTALLTOP)/lib and the include
	files to $(INSTALLTOP)/include

Another Way
	It is also possible to build libSSH under the Visual C++ development
	environment.

Credits
	Besides using Eric Young's SSLeay libraries for crypto work, I
	also based Makefile.VC off his Windows NT makefile.

