Home | History | Annotate | Line # | Download | only in mips
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2018/03/04 00:59:44 christos Exp $
      2 
      3 .include "bsd.own.mk"
      4 
      5 CRYPTODIST=${NETBSDSRCDIR}/crypto
      6 .include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
      7 
      8 regen:
      9 	# poly is mips64 only
     10 	for i in $$(find ${OPENSSLSRC} -name \*mips\*.pl); \
     11 	do \
     12 		case $$i in \
     13 		(*poly*);; \
     14 		(*) perl -I${OPENSSLSRC}/crypto/perlasm \
     15 		-I${OPENSSLSRC}/crypto/bn/asm $$i linux /dev/stdout \
     16 		> $$(basename $$i .pl).S;; \
     17 		esac; \
     18 	done
     19