aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/crypto
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2002-10-16 14:31:34 +0000
committerMark Murray <markm@FreeBSD.org>2002-10-16 14:31:34 +0000
commitf544a528731c3d599bb1d7b5828acd21a1fd543d (patch)
tree15423431124b67e918f64aee072db86a94386607 /sys/modules/crypto
parent6c84d0b1a5f243e4aa87fe02c82627b7d11d053e (diff)
Notes
Diffstat (limited to 'sys/modules/crypto')
-rw-r--r--sys/modules/crypto/Makefile20
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>