mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-06 06:28:56 +01:00
- Added runtime and compiletime version information
This commit is contained in:
parent
690b93d91a
commit
3ac1b2d952
9 changed files with 199 additions and 2 deletions
|
|
@ -14,7 +14,8 @@ 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_debug
|
||||
test_suite_xtea test_suite_debug \
|
||||
test_suite_version
|
||||
|
||||
.SILENT:
|
||||
|
||||
|
|
@ -80,6 +81,10 @@ test_suite_debug: test_suite_debug.c ../library/libpolarssl.a
|
|||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
test_suite_version: test_suite_version.c ../library/libpolarssl.a
|
||||
echo " CC $@.c"
|
||||
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
||||
|
||||
clean:
|
||||
rm -f $(APPS) *.c
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue