aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bakker <p.j.bakker@polarssl.org>2010-02-18 18:26:04 +0000
committerPaul Bakker <p.j.bakker@polarssl.org>2010-02-18 18:26:04 +0000
commit7d7f4f4ad40d088121fd5f21a9cce5dfd5b1f56d (patch)
treecb653b337b3db9521da44267258a6beb2087b2dc
parent2dc766603a5e84f8e83d97936fa5d18d51946cd4 (diff)
downloadmbedtls-7d7f4f4ad40d088121fd5f21a9cce5dfd5b1f56d.zip
mbedtls-7d7f4f4ad40d088121fd5f21a9cce5dfd5b1f56d.tar.gz
mbedtls-7d7f4f4ad40d088121fd5f21a9cce5dfd5b1f56d.tar.bz2
- Added test_suite_debug to the Makefile
-rw-r--r--tests/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index a1d2eb8..ee6507a 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -14,7 +14,7 @@ APPS = test_suite_aes test_suite_arc4 \
test_suite_hmac_shax test_suite_mdx \
test_suite_mpi test_suite_rsa \
test_suite_shax test_suite_x509parse\
- test_suite_xtea
+ test_suite_xtea test_suite_debug
.SILENT:
@@ -76,6 +76,10 @@ test_suite_xtea: test_suite_xtea.c ../library/libpolarssl.a
echo " CC $@.c"
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+test_suite_debug: test_suite_debug.c ../library/libpolarssl.a
+ echo " CC $@.c"
+ $(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
+
clean:
rm -f $(APPS) *.c