mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-04 05:35:33 +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
|
|
@ -38,6 +38,7 @@ APPS = aes/aescrypt2 aes/crypt_and_hash \
|
|||
random/gen_random_ctr_drbg \
|
||||
test/ssl_cert_test test/benchmark \
|
||||
test/selftest test/ssl_test \
|
||||
test/ecp-bench \
|
||||
util/strerror \
|
||||
x509/cert_app x509/crl_app \
|
||||
x509/cert_req
|
||||
|
|
@ -174,6 +175,10 @@ test/benchmark: test/benchmark.c ../library/libpolarssl.a
|
|||
echo " CC test/benchmark.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) test/benchmark.c $(LDFLAGS) -o $@
|
||||
|
||||
test/ecp-bench: test/ecp-bench.c ../library/libpolarssl.a
|
||||
echo " CC test/ecp-bench.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) test/ecp-bench.c $(LDFLAGS) -o $@
|
||||
|
||||
test/selftest: test/selftest.c ../library/libpolarssl.a
|
||||
echo " CC test/selftest.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) test/selftest.c $(LDFLAGS) -o $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue