diff options
| author | Mark Murray <markm@FreeBSD.org> | 2002-10-16 14:31:34 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2002-10-16 14:31:34 +0000 |
| commit | f544a528731c3d599bb1d7b5828acd21a1fd543d (patch) | |
| tree | 15423431124b67e918f64aee072db86a94386607 /sys/modules/crypto | |
| parent | 6c84d0b1a5f243e4aa87fe02c82627b7d11d053e (diff) | |
Notes
Diffstat (limited to 'sys/modules/crypto')
| -rw-r--r-- | sys/modules/crypto/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/crypto/Makefile b/sys/modules/crypto/Makefile new file mode 100644 index 000000000000..37541b06db10 --- /dev/null +++ b/sys/modules/crypto/Makefile @@ -0,0 +1,20 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../opencrypto +.PATH: ${.CURDIR}/../../crypto +.PATH: ${.CURDIR}/../../crypto/blowfish +.PATH: ${.CURDIR}/../../crypto/des +.PATH: ${.CURDIR}/../../crypto/sha2 +.PATH: ${.CURDIR}/../../net + +KMOD = crypto +SRCS = crypto.c +SRCS += criov.c crmbuf.c cryptosoft.c xform.c +SRCS += cast.c deflate.c rmd160.c rijndael.c skipjack.c +SRCS += bf_enc.c bf_skey.c +SRCS += des_ecb.c des_enc.c des_setkey.c +SRCS += sha1.c sha2.c +SRCS += zlib.c +SRCS += opt_param.h + +.include <bsd.kmod.mk> |
