Add (placeholder) CCM module
diff --git a/tests/Makefile b/tests/Makefile
index ce458ca..a0d136a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -34,7 +34,8 @@
test_suite_aes.cfb test_suite_aes.rest \
test_suite_arc4 \
test_suite_base64 test_suite_blowfish \
- test_suite_camellia test_suite_cipher.aes \
+ test_suite_camellia test_suite_ccm \
+ test_suite_cipher.aes \
test_suite_cipher.arc4 test_suite_cipher.gcm \
test_suite_cipher.blowfish \
test_suite_cipher.camellia \
@@ -198,6 +199,10 @@
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+test_suite_ccm: test_suite_ccm.c $(DEP)
+ echo " CC $@.c"
+ $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+
test_suite_cipher.aes: test_suite_cipher.aes.c $(DEP)
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@