15 lines
390 B
Makefile
15 lines
390 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/10/17 00:24:13 joerg Exp $
|
|
|
|
.include "bsd.own.mk"
|
|
|
|
CRYPTODIST=${NETBSDSRCDIR}/crypto
|
|
.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
|
|
|
|
regen:
|
|
for i in ${OPENSSLSRC}/crypto/aes/asm/aesv8-armx.pl \
|
|
${OPENSSLSRC}/crypto/modes/asm/ghashv8-armx.pl \
|
|
${OPENSSLSRC}/crypto/sha/asm/sha1-armv8.pl; do \
|
|
j=$$(basename $$i .pl).S; \
|
|
perl $$i > $$j; \
|
|
done
|