conveniently leaving the benchmark code not compiled in the test.
-# $OpenBSD: Makefile,v 1.2 2014/04/17 07:52:08 jsg Exp $
+# $OpenBSD: Makefile,v 1.3 2014/04/17 18:33:21 miod Exp $
SUBDIR= \
bf \
engine \
evp \
exp \
+ gcm128 \
hmac \
idea \
ige \
--- /dev/null
+# $OpenBSD: Makefile,v 1.1 2014/04/17 18:33:22 miod Exp $
+
+PROG= gcm128
+SRC= ${.CURDIR}/../../../../lib/libssl/src/crypto/modes
+CFLAGS+= -DSELFTEST
+CFLAGS+= -I${SRC}
+.PATH: ${SRC}
+
+LDADD= -lcrypto
+DPADD= ${LIBCRYPTO}
+
+.include <bsd.regress.mk>