Home | History | Annotate | Line # | Download | only in blowfish
      1 #	$NetBSD: Makefile,v 1.1 2014/01/01 15:18:57 pgoyette Exp $
      2 
      3 .include "../Makefile.inc"
      4 
      5 .PATH:	${S}/crypto/blowfish
      6 
      7 KMOD=	blowfish
      8 SRCS=	bf_module.c
      9 SRCS+=	bf_ecb.c
     10 SRCS+=	bf_skey.c  
     11 
     12 .if ${MACHINE} == "i386"
     13 
     14 .PATH:	${S}/crypto/blowfish/arch/i386
     15 
     16 SRCS+=	bf_enc.S
     17 SRCS+=	bf_cbc.S
     18 
     19 .else
     20 
     21 SRCS+=	bf_enc.c
     22 SRCS+=	bf_cbc.c
     23 
     24 .endif
     25 
     26 .include <bsd.kmodule.mk>
     27