mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-30 05:01:04 +00:00
- Added test_suite_debug to the Makefile
This commit is contained in:
parent
2dc766603a
commit
7d7f4f4ad4
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue