- Added runtime and compiletime version information

This commit is contained in:
Paul Bakker 2010-06-18 22:47:29 +00:00
parent 690b93d91a
commit 3ac1b2d952
9 changed files with 199 additions and 2 deletions

View file

@ -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