#
# Copyright (C) 1997 Pretty Good Privacy, Inc.  All rights reserved.
#
# To build the test program for your particular Unix system, you must move
# the appropriate files for your platform into the appropriate place.
# Example (for Solaris):
#	cd libs
#	cp solaris-sparc/*.a .
#	cp solaris-sparc/*.h ../headers
#
# To run properly, a key called <test@pgp.com> with passphrase "test" must
# be available in the keyring.  This key is already in the keyfiles in test/.
#
# You must also set your PGPPATH environment variable to "." so the keyfiles
# will be found.
#

CC=gcc
PROG = ../pgpTest
INSTALLPROGS = $(PROG)

OBJS = pgpTestMain.o pgpTestCipherFeedback.o pgpTestHash.o \
	pgpTestKeys.o pgpTestSymmetricCipher.o pgpTestEncode.o \
	pgpUnixTestMain.o

LIBS = ../../libs/libPGPsdk.a -lm

CFLAGS= -I../../libs -I../../headers

LDFLAGS=

all:: $(PROG)

# Compile program, PROG
$(PROG): $(OBJS)
	$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
