#!/bin/sh

#
# This script should build PGP command line for Unix (I think)
# <stale@hypnotech.com>
#

# Build pfl library
cd libs/pfl
./configure
make

# Build pgpcdk library
cd ../pgpcdk
./configure
make headers
make

# Build shared files
cd ../../clients/pgp/shared
./configure
make

# Build Unix command line
cd ../cmdline
./configure
make
