Install OpenSSL libaries in a standard system location
	On Debian GNU/Linux:
sudo apt-get install libssl-dev
	On Red Hat Enterprise Linux or CentOS:
sudo yum install openssl-devel

Install cURL libraries in a standard system location
	On Debian GNU/Linux:
sudo apt-get install libcurl3-dev
	On Red Hat Enterprise Linux or CentOS:
sudo yum install curl-devel

If you want to generate HTML or PDF documentation
Install Doxygen
	On Debian GNU/Linux:
sudo apt-get install doxygen
	On Red Hat Enterprise Linux or CentOS:
sudo yum install doxygen

If you want to generate PDF documentation
Install LaTeX
	On Debian GNU/Linux:
sudo apt-get install tetex-extra
	On Red Hat Enterprise Linux or CentOS:
sudo yum install tetex-latex

In the GuardTime SDK top-level directory
	Configure the build environment
./configure
	Build the libraries
make
	Build the examples
make check
	Verify that the examples work
./src/http/http_create ./test/TestData.txt ./test/TestData.txt.gtts http://stamper.guardtime.net/gt-signingservice
./src/http/http_verify ./test/TestData.txt.gtts ./test/TestData.txt http://verify.guardtime.com/gt-controlpublications.bin -
	Optionally build the HTML documentation
make htmldoc
	Optionally build the full documentation
make doc
	Install the libraries in a standard system location
	Note that this only installs the libraries and header files
	The documentation and examples remain in the build directory
sudo make install
