mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-23 15:55:10 +01:00
Added ECP files to Makefiles as well
This commit is contained in:
parent
5e402d88ea
commit
a95919b4c7
3 changed files with 12 additions and 1 deletions
|
|
@ -30,6 +30,7 @@ APPS = test_suite_aes test_suite_arc4 \
|
|||
test_suite_cipher.des test_suite_cipher.null \
|
||||
test_suite_ctr_drbg test_suite_debug \
|
||||
test_suite_des test_suite_dhm \
|
||||
test_suite_ecp \
|
||||
test_suite_error test_suite_gcm.decrypt \
|
||||
test_suite_gcm.decrypt test_suite_hmac_shax \
|
||||
test_suite_md test_suite_mdx \
|
||||
|
|
@ -127,6 +128,10 @@ test_suite_dhm: test_suite_dhm.c ../library/libpolarssl.a
|
|||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
test_suite_ecp: test_suite_ecp.c ../library/libpolarssl.a
|
||||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
test_suite_error: test_suite_error.c ../library/libpolarssl.a
|
||||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue