include ../paths.mak

LDFLAGS = -lpgp -lcrypto -lz

#If you also have cast
LDFLAGS := $(LDFLAGS) -lcast

#required here
CFLAGS := $(CFLAGS) -DRSAKEY

#comment out the following when not doing test.sh, see README
CFLAGS := $(CFLAGS) -DTESTMODE

all: minipgp pullkey keygen

clean:
	rm -f testf*

allclean: clean
	rm -f minipgp pullkey keygen secring.pgp pubring.pgp
