freebsd-skq/sys/modules/crypto/Makefile

26 lines
760 B
Makefile
Raw Normal View History

# $FreeBSD$
.PATH: ${.CURDIR}/../../opencrypto
.PATH: ${.CURDIR}/../../crypto
.PATH: ${.CURDIR}/../../crypto/blowfish
2014-03-06 00:37:16 +00:00
.PATH: ${.CURDIR}/../../crypto/camellia
.PATH: ${.CURDIR}/../../crypto/des
.PATH: ${.CURDIR}/../../crypto/rijndael
.PATH: ${.CURDIR}/../../crypto/sha2
2014-03-06 00:37:16 +00:00
.PATH: ${.CURDIR}/../../crypto/siphash
KMOD = crypto
2007-03-21 14:39:39 +00:00
SRCS = crypto.c cryptodev_if.c
SRCS += criov.c cryptosoft.c xform.c
SRCS += cast.c cryptodeflate.c rmd160.c rijndael-alg-fst.c rijndael-api.c
SRCS += skipjack.c bf_enc.c bf_ecb.c bf_skey.c
2014-03-06 00:37:16 +00:00
SRCS += camellia.c camellia-api.c
SRCS += des_ecb.c des_enc.c des_setkey.c
SRCS += sha1.c sha2.c sha256c.c
2014-03-06 00:37:16 +00:00
SRCS += siphash.c
2014-12-12 19:56:36 +00:00
SRCS += gmac.c gfmult.c
2007-03-21 14:39:39 +00:00
SRCS += opt_param.h cryptodev_if.h bus_if.h device_if.h
SRCS += opt_ddb.h
2014-03-06 00:37:16 +00:00
.include <bsd.kmod.mk>