Home | History | Annotate | Line # | Download | only in libcrypto
Makefile revision 1.13
      1  1.13  riastrad #	$NetBSD: Makefile,v 1.13 2020/07/28 20:15:07 riastradh Exp $
      2   1.1     pooka #
      3   1.1     pooka 
      4   1.8  riastrad .PATH:	${.CURDIR}/../../../../crypto/adiantum				\
      5   1.8  riastrad 	${.CURDIR}/../../../../crypto/aes				\
      6   1.7  riastrad 	${.CURDIR}/../../../../crypto/blowfish				\
      7   1.2  pgoyette 	${.CURDIR}/../../../../crypto/camellia				\
      8   1.1     pooka 	${.CURDIR}/../../../../crypto/cast128				\
      9   1.1     pooka 	${.CURDIR}/../../../../crypto/des				\
     10   1.1     pooka 	${.CURDIR}/../../../../crypto/skipjack
     11   1.1     pooka 
     12   1.1     pooka LIB=	rumpkern_crypto
     13   1.4     pooka COMMENT=Cryptographic routines
     14   1.1     pooka 
     15   1.8  riastrad # Adiantum
     16   1.8  riastrad SRCS+=	adiantum.c
     17   1.8  riastrad SRCS+=	adiantum_selftest.c
     18   1.8  riastrad 
     19  1.12  riastrad # AES
     20  1.12  riastrad SRCS+=	aes_bear.c
     21  1.12  riastrad SRCS+=	aes_ccm.c
     22  1.12  riastrad SRCS+=	aes_ccm_mbuf.c
     23  1.12  riastrad SRCS+=	aes_ct.c
     24  1.12  riastrad SRCS+=	aes_ct_dec.c
     25  1.12  riastrad SRCS+=	aes_ct_enc.c
     26  1.12  riastrad SRCS+=	aes_impl.c
     27  1.12  riastrad SRCS+=	aes_selftest.c
     28  1.12  riastrad 
     29   1.1     pooka # blowfish
     30   1.2  pgoyette SRCS+=	bf_ecb.c bf_enc.c bf_cbc.c bf_skey.c bf_module.c
     31   1.2  pgoyette 
     32   1.2  pgoyette # camellia
     33   1.2  pgoyette SRCS+=  camellia.c camellia-api.c
     34   1.1     pooka 
     35  1.12  riastrad # cast128
     36  1.12  riastrad SRCS+=	cast128.c
     37  1.12  riastrad 
     38   1.1     pooka # DES
     39   1.2  pgoyette SRCS+=	des_ecb.c des_setkey.c des_enc.c des_cbc.c des_module.c
     40   1.1     pooka 
     41   1.1     pooka # skipjack
     42   1.1     pooka SRCS+=	skipjack.c
     43   1.1     pooka 
     44   1.1     pooka .include <bsd.lib.mk>
     45   1.1     pooka .include <bsd.klinks.mk>
     46