diff options
Diffstat (limited to 'src/regress/lib/libcrypto/aeswrap/Makefile')
-rw-r--r-- | src/regress/lib/libcrypto/aeswrap/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/regress/lib/libcrypto/aeswrap/Makefile b/src/regress/lib/libcrypto/aeswrap/Makefile new file mode 100644 index 0000000000..63770a5c7d --- /dev/null +++ b/src/regress/lib/libcrypto/aeswrap/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | # $OpenBSD: Makefile,v 1.1 2014/04/22 21:27:15 miod Exp $ | ||
2 | |||
3 | PROG= aes_wrap | ||
4 | CRYPTO= ${.CURDIR}/../../../../lib/libssl/src/crypto | ||
5 | CFLAGS+= -DAES_WRAP_TEST | ||
6 | CFLAGS+= -I${CRYPTO} -I${CRYPTO}/aes | ||
7 | .PATH: ${CRYPTO}/aes | ||
8 | |||
9 | LDADD= -lcrypto | ||
10 | DPADD= ${LIBCRYPTO} | ||
11 | |||
12 | .include <bsd.regress.mk> | ||