#!/bin/sh

# vars
wait=5
platform=linux

# notes for installing human
echo 				\
"please edit `pwd`/makefile:"	\
"1) Add/change CPU-optimisation to CFLAGS (remember to unset external then)."
echo -e				\
"please edit $0 if compiling for non-$platform platform.\n"
echo "sleeping $wait seconds.. ^C to abort script."
sleep $wait
make $platform
echo "Please run tests by hands (see 'setup.doc')."
echo "After running all tests as in 'setup.doc' you"	\
" may run `pwd`/install-pgp_after_build.sh"


