1# $OpenBSD: Makefile,v 1.5 2017/07/03 18:19:55 bluhm Exp $ 2# $EOM: Makefile,v 1.7 2000/03/28 21:22:06 ho Exp $ 3 4# Test Crypto: 5 6PROG= cryptotest 7SRCS= crypto.c cryptotest.c conf.c log.c monitor.c util.c 8CFLAGS+= -DUSE_TRIPLEDES -DUSE_CAST -DUSE_BLOWFISH -DUSE_DES \ 9 -DUSE_AES 10LDADD+= -lcrypto 11DPADD+= ${LIBCRYPTO} 12 13.include <bsd.regress.mk> 14