#
# Copyright (C) 1999 Network Associates Inc. and affiliated companies.  All rights reserved.
#
# 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 pgpTestPublicKey.o

LIBS = ../../libraries/static/debug/libPGPsdk.a -lm -pthread

CFLAGS= -I../../headers

LDFLAGS=

all:: $(PROG)

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