- Added base blowfish algorithm

diff --git a/tests/Makefile b/tests/Makefile
index 3ceb19f..19f755f 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -23,7 +23,8 @@
 endif
 
 APPS =	test_suite_aes			test_suite_arc4			\
-		test_suite_base64		test_suite_camellia		\
+		test_suite_base64		test_suite_blowfish		\
+		test_suite_camellia								\
 		test_suite_cipher.aes	test_suite_cipher.camellia	\
 		test_suite_cipher.des	test_suite_cipher.null	\
 		test_suite_ctr_drbg		test_suite_debug		\
@@ -80,6 +81,10 @@
 	echo   "  CC    	$@.c"
 	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@
 
+test_suite_blowfish: test_suite_blowfish.c ../library/libpolarssl.a
+	echo   "  CC    	$@.c"
+	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@
+
 test_suite_camellia: test_suite_camellia.c ../library/libpolarssl.a
 	echo   "  CC    	$@.c"
 	$(CC) $(CFLAGS) $(OFLAGS) $@.c	$(LDFLAGS) -o $@