Module Name:    src
Committed By:   riastradh
Date:           Sun Jul 26 04:25:14 UTC 2020

Modified Files:
        src/sys/rump/kern/lib/libcrypto: Makefile

Log Message:
Add missing aes_ccm.c, aes_ccm_mbuf.c.  Fix sort order.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/kern/lib/libcrypto/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/kern/lib/libcrypto/Makefile
diff -u src/sys/rump/kern/lib/libcrypto/Makefile:1.10 src/sys/rump/kern/lib/libcrypto/Makefile:1.11
--- src/sys/rump/kern/lib/libcrypto/Makefile:1.10	Sun Jul 26 04:03:45 2020
+++ src/sys/rump/kern/lib/libcrypto/Makefile	Sun Jul 26 04:25:14 2020
@@ -1,12 +1,12 @@
-#	$NetBSD: Makefile,v 1.10 2020/07/26 04:03:45 riastradh Exp $
+#	$NetBSD: Makefile,v 1.11 2020/07/26 04:25:14 riastradh Exp $
 #
 
 .PATH:	${.CURDIR}/../../../../crypto/adiantum				\
 	${.CURDIR}/../../../../crypto/aes				\
-	${.CURDIR}/../../../../crypto/chacha				\
 	${.CURDIR}/../../../../crypto/blowfish				\
 	${.CURDIR}/../../../../crypto/camellia				\
 	${.CURDIR}/../../../../crypto/cast128				\
+	${.CURDIR}/../../../../crypto/chacha				\
 	${.CURDIR}/../../../../crypto/des				\
 	${.CURDIR}/../../../../crypto/skipjack
 
@@ -36,6 +36,8 @@ SRCS+=	des_ecb.c des_setkey.c des_enc.c 
 
 # AES
 SRCS+=	aes_bear.c
+SRCS+=	aes_ccm.c
+SRCS+=	aes_ccm_mbuf.c
 SRCS+=	aes_ct.c
 SRCS+=	aes_ct_dec.c
 SRCS+=	aes_ct_enc.c

Reply via email to