# 
# Makefile
#

# define where your PGP source tree is
PGP = ../pgp/src

SRC   = pgppipe.c $(PGP)/md5.c $(PGP)/idea.c $(PGP)/randpool.c

CFLAGS = -O2 -pipe -I $(PGP)

LIBS =

COPTS = $(OPTS) $(CFLAGS)

firsttarget: all

dep depend:
	$(CC) -M $(SRC) $(CFLAGS) > .depend

all:	pgppipe

pgppipe:
	$(CC) -o pgppipe ${CFLAGS} ${SRC} ${LIBS}

clean:
	rm -f *.o
	rm -f pgppipe

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif
