2009-07-11 21:15:43 +02:00
|
|
|
|
|
|
|
# To compile on SunOS: add "-lsocket -lnsl" to LDFLAGS
|
2012-05-10 23:26:28 +02:00
|
|
|
# To compile on MinGW: add "-lws2_32" to LDFLAGS or define WINDOWS in your env
|
2011-01-18 16:27:19 +01:00
|
|
|
# To compile with PKCS11: add "-lpkcs11-helper" to LDFLAGS
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2011-01-30 18:10:13 +01:00
|
|
|
CFLAGS += -I../include -D_FILE_OFFSET_BITS=64 -Wall -W -Wdeclaration-after-statement \
|
2009-07-11 21:15:43 +02:00
|
|
|
-Wno-unused-function -Wno-unused-value
|
|
|
|
|
2012-10-23 14:12:53 +02:00
|
|
|
OFLAGS = -O2
|
2015-01-27 14:03:24 +01:00
|
|
|
LDFLAGS += -L../library -lmbedtls $(SYS_LDFLAGS)
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
ifndef SHARED
|
2015-01-23 13:51:33 +01:00
|
|
|
DEP=../library/libmbedtls.a
|
2014-03-26 13:26:52 +01:00
|
|
|
CHECK_PRELOAD=
|
|
|
|
else
|
2015-01-27 14:03:24 +01:00
|
|
|
DEP=../library/libmbedtls.so
|
|
|
|
CHECK_PRELOAD= LD_PRELOAD=../library/libmbedtls.so
|
2014-03-26 13:26:52 +01:00
|
|
|
endif
|
|
|
|
|
2012-04-05 14:08:29 +02:00
|
|
|
ifdef DEBUG
|
|
|
|
CFLAGS += -g3
|
|
|
|
endif
|
|
|
|
|
2012-05-10 22:49:10 +02:00
|
|
|
ifdef WINDOWS
|
|
|
|
LDFLAGS += -lws2_32
|
|
|
|
endif
|
|
|
|
|
2012-07-03 15:30:23 +02:00
|
|
|
# Zlib shared library extensions:
|
|
|
|
ifdef ZLIB
|
|
|
|
LDFLAGS += -lz
|
|
|
|
endif
|
|
|
|
|
2013-04-08 18:09:51 +02:00
|
|
|
APPS = test_suite_aes.ecb test_suite_aes.cbc \
|
|
|
|
test_suite_aes.cfb test_suite_aes.rest \
|
2014-05-29 14:26:03 +02:00
|
|
|
test_suite_arc4 test_suite_asn1write \
|
2012-07-04 13:02:11 +02:00
|
|
|
test_suite_base64 test_suite_blowfish \
|
2014-05-02 15:17:29 +02:00
|
|
|
test_suite_camellia test_suite_ccm \
|
|
|
|
test_suite_cipher.aes \
|
2014-05-15 16:03:07 +02:00
|
|
|
test_suite_cipher.arc4 test_suite_cipher.ccm \
|
|
|
|
test_suite_cipher.gcm \
|
2012-07-04 19:10:40 +02:00
|
|
|
test_suite_cipher.blowfish \
|
|
|
|
test_suite_cipher.camellia \
|
2012-02-06 17:45:10 +01:00
|
|
|
test_suite_cipher.des test_suite_cipher.null \
|
2013-07-24 18:05:00 +02:00
|
|
|
test_suite_cipher.padding \
|
2012-02-06 17:45:10 +01:00
|
|
|
test_suite_ctr_drbg test_suite_debug \
|
2011-05-09 18:17:09 +02:00
|
|
|
test_suite_des test_suite_dhm \
|
2013-03-13 16:30:17 +01:00
|
|
|
test_suite_ecdh test_suite_ecdsa \
|
2013-01-16 17:00:05 +01:00
|
|
|
test_suite_ecp \
|
2014-05-30 10:38:18 +02:00
|
|
|
test_suite_error test_suite_entropy \
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes128_de \
|
|
|
|
test_suite_gcm.aes192_de \
|
|
|
|
test_suite_gcm.aes256_de \
|
|
|
|
test_suite_gcm.aes128_en \
|
|
|
|
test_suite_gcm.aes192_en \
|
|
|
|
test_suite_gcm.aes256_en \
|
2013-10-24 12:59:00 +02:00
|
|
|
test_suite_gcm.camellia test_suite_hmac_shax \
|
2014-01-30 21:11:16 +01:00
|
|
|
test_suite_hmac_drbg.misc \
|
2014-01-30 17:22:14 +01:00
|
|
|
test_suite_hmac_drbg.no_reseed \
|
2014-01-31 09:54:14 +01:00
|
|
|
test_suite_hmac_drbg.nopr \
|
2014-01-31 10:16:57 +01:00
|
|
|
test_suite_hmac_drbg.pr \
|
2011-05-09 18:17:09 +02:00
|
|
|
test_suite_md test_suite_mdx \
|
2014-11-27 11:55:27 +01:00
|
|
|
test_suite_memory_buffer_alloc \
|
2012-08-23 15:03:18 +02:00
|
|
|
test_suite_mpi test_suite_pbkdf2 \
|
2014-04-11 13:28:43 +02:00
|
|
|
test_suite_pem \
|
2013-06-24 19:26:38 +02:00
|
|
|
test_suite_pkcs1_v21 test_suite_pkcs5 \
|
2013-09-15 14:54:56 +02:00
|
|
|
test_suite_pkparse test_suite_pkwrite \
|
2013-09-21 12:31:05 +02:00
|
|
|
test_suite_pk \
|
2011-05-09 18:17:09 +02:00
|
|
|
test_suite_rsa test_suite_shax \
|
2012-02-16 15:09:13 +01:00
|
|
|
test_suite_x509parse test_suite_x509write \
|
|
|
|
test_suite_xtea test_suite_version
|
2009-07-11 21:15:43 +02:00
|
|
|
|
|
|
|
.SILENT:
|
|
|
|
|
|
|
|
all: $(APPS)
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_aes.ecb.c : suites/test_suite_aes.function suites/test_suite_aes.ecb.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_aes test_suite_aes.ecb
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_aes.cbc.c : suites/test_suite_aes.function suites/test_suite_aes.cbc.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_aes test_suite_aes.cbc
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_aes.cfb.c : suites/test_suite_aes.function suites/test_suite_aes.cfb.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_aes test_suite_aes.cfb
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_aes.rest.c : suites/test_suite_aes.function suites/test_suite_aes.rest.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_aes test_suite_aes.rest
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.aes.c : suites/test_suite_cipher.function suites/test_suite_cipher.aes.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2011-07-13 16:54:54 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.aes
|
|
|
|
|
2013-08-28 13:50:42 +02:00
|
|
|
test_suite_cipher.arc4.c : suites/test_suite_cipher.function suites/test_suite_cipher.arc4.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.arc4
|
|
|
|
|
2014-05-15 16:03:07 +02:00
|
|
|
test_suite_cipher.ccm.c : suites/test_suite_cipher.function suites/test_suite_cipher.ccm.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.ccm
|
|
|
|
|
2013-08-30 18:34:08 +02:00
|
|
|
test_suite_cipher.gcm.c : suites/test_suite_cipher.function suites/test_suite_cipher.gcm.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.gcm
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.blowfish.c : suites/test_suite_cipher.function suites/test_suite_cipher.blowfish.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2012-07-04 19:10:40 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.blowfish
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.camellia.c : suites/test_suite_cipher.function suites/test_suite_cipher.camellia.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2011-07-13 16:54:54 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.camellia
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.des.c : suites/test_suite_cipher.function suites/test_suite_cipher.des.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2011-07-13 16:54:54 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.des
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.null.c : suites/test_suite_cipher.function suites/test_suite_cipher.null.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2012-02-06 17:45:10 +01:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.null
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
test_suite_cipher.padding.c : suites/test_suite_cipher.function suites/test_suite_cipher.padding.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-07-24 18:05:00 +02:00
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_cipher test_suite_cipher.padding
|
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes128_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes128_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes128_de
|
2013-04-08 18:09:51 +02:00
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes192_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes192_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2012-03-20 14:50:09 +01:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes192_de
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes256_de.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes256_de.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2012-03-20 14:50:09 +01:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes256_de
|
2013-04-08 18:09:51 +02:00
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes128_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes128_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes128_en
|
2013-04-08 18:09:51 +02:00
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes192_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes192_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes192_en
|
2013-04-08 18:09:51 +02:00
|
|
|
|
2013-10-24 11:57:47 +02:00
|
|
|
test_suite_gcm.aes256_en.c : suites/test_suite_gcm.function suites/test_suite_gcm.aes256_en.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " Generate $@"
|
2013-10-24 11:57:47 +02:00
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.aes256_en
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2013-10-24 12:59:00 +02:00
|
|
|
test_suite_gcm.camellia.c : suites/test_suite_gcm.function suites/test_suite_gcm.camellia.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_gcm test_suite_gcm.camellia
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2014-01-30 21:11:16 +01:00
|
|
|
test_suite_hmac_drbg.misc.c : suites/test_suite_hmac_drbg.function suites/test_suite_hmac_drbg.misc.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_hmac_drbg test_suite_hmac_drbg.misc
|
|
|
|
|
2014-01-30 17:22:14 +01:00
|
|
|
test_suite_hmac_drbg.no_reseed.c : suites/test_suite_hmac_drbg.function suites/test_suite_hmac_drbg.no_reseed.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_hmac_drbg test_suite_hmac_drbg.no_reseed
|
|
|
|
|
2014-01-31 09:54:14 +01:00
|
|
|
test_suite_hmac_drbg.nopr.c : suites/test_suite_hmac_drbg.function suites/test_suite_hmac_drbg.nopr.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_hmac_drbg test_suite_hmac_drbg.nopr
|
|
|
|
|
2014-01-31 10:16:57 +01:00
|
|
|
test_suite_hmac_drbg.pr.c : suites/test_suite_hmac_drbg.function suites/test_suite_hmac_drbg.pr.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
|
|
|
echo " Generate $@"
|
|
|
|
scripts/generate_code.pl suites test_suite_hmac_drbg test_suite_hmac_drbg.pr
|
|
|
|
|
2013-08-16 13:31:10 +02:00
|
|
|
%.c : suites/%.function suites/%.data scripts/generate_code.pl suites/helpers.function suites/main_test.function
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " Generate $@"
|
2011-07-13 16:54:54 +02:00
|
|
|
scripts/generate_code.pl suites $* $*
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_aes.ecb: test_suite_aes.ecb.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_aes.cbc: test_suite_aes.cbc.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_aes.cfb: test_suite_aes.cfb.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_aes.rest: test_suite_aes.rest.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_arc4: test_suite_arc4.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-05-29 14:26:03 +02:00
|
|
|
test_suite_asn1write: test_suite_asn1write.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_base64: test_suite_base64.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_blowfish: test_suite_blowfish.c $(DEP)
|
2012-07-04 13:02:11 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_camellia: test_suite_camellia.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-05-02 15:17:29 +02:00
|
|
|
test_suite_ccm: test_suite_ccm.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.aes: test_suite_cipher.aes.c $(DEP)
|
2011-07-13 16:54:54 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.arc4: test_suite_cipher.arc4.c $(DEP)
|
2013-08-28 13:50:42 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-05-15 16:03:07 +02:00
|
|
|
test_suite_cipher.ccm: test_suite_cipher.ccm.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.gcm: test_suite_cipher.gcm.c $(DEP)
|
2013-08-30 18:34:08 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.blowfish: test_suite_cipher.blowfish.c $(DEP)
|
2012-07-04 19:10:40 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.camellia: test_suite_cipher.camellia.c $(DEP)
|
2011-07-13 16:54:54 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.des: test_suite_cipher.des.c $(DEP)
|
2011-11-27 15:46:59 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.null: test_suite_cipher.null.c $(DEP)
|
2012-02-06 17:45:10 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_cipher.padding: test_suite_cipher.padding.c $(DEP)
|
2013-07-24 18:05:00 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_ctr_drbg: test_suite_ctr_drbg.c $(DEP)
|
2011-01-06 16:37:30 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_des: test_suite_des.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_dhm: test_suite_dhm.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2013-03-13 16:30:17 +01:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_ecdh: test_suite_ecdh.c $(DEP)
|
2013-03-13 16:30:17 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_ecdsa: test_suite_ecdsa.c $(DEP)
|
2013-03-13 16:30:17 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_ecp: test_suite_ecp.c $(DEP)
|
2013-01-16 17:00:05 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-05-30 10:38:18 +02:00
|
|
|
test_suite_entropy: test_suite_entropy.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_error: test_suite_error.c $(DEP)
|
2011-05-09 18:17:09 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes128_de: test_suite_gcm.aes128_de.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes192_de: test_suite_gcm.aes192_de.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes256_de: test_suite_gcm.aes256_de.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes128_en: test_suite_gcm.aes128_en.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes192_en: test_suite_gcm.aes192_en.c $(DEP)
|
2013-04-08 18:09:51 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.aes256_en: test_suite_gcm.aes256_en.c $(DEP)
|
2012-03-20 14:50:09 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_gcm.camellia: test_suite_gcm.camellia.c $(DEP)
|
2012-03-20 14:50:09 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2014-01-30 17:22:14 +01:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_hmac_drbg.misc: test_suite_hmac_drbg.misc.c $(DEP)
|
2014-01-30 21:11:16 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_hmac_drbg.no_reseed: test_suite_hmac_drbg.no_reseed.c $(DEP)
|
2014-01-30 17:22:14 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2014-01-31 09:54:14 +01:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_hmac_drbg.nopr: test_suite_hmac_drbg.nopr.c $(DEP)
|
2014-01-31 09:54:14 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2014-01-31 10:16:57 +01:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_hmac_drbg.pr: test_suite_hmac_drbg.pr.c $(DEP)
|
2014-01-31 10:16:57 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
2012-03-20 14:50:09 +01:00
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_hmac_shax: test_suite_hmac_shax.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_md: test_suite_md.c $(DEP)
|
2011-01-06 15:20:01 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_mdx: test_suite_mdx.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-11-27 11:55:27 +01:00
|
|
|
test_suite_memory_buffer_alloc: test_suite_memory_buffer_alloc.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_mpi: test_suite_mpi.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pbkdf2: test_suite_pbkdf2.c $(DEP)
|
2012-08-23 15:03:18 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-04-11 13:28:43 +02:00
|
|
|
test_suite_pem: test_suite_pem.c $(DEP)
|
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pkcs1_v21: test_suite_pkcs1_v21.c $(DEP)
|
2011-03-08 15:16:06 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pkcs5: test_suite_pkcs5.c $(DEP)
|
2013-06-24 19:26:38 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pkparse: test_suite_pkparse.c $(DEP)
|
2013-09-15 13:01:22 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pkwrite: test_suite_pkwrite.c $(DEP)
|
2013-09-15 14:54:56 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_pk: test_suite_pk.c $(DEP)
|
2013-10-28 17:32:48 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_rsa: test_suite_rsa.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_shax: test_suite_shax.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_x509parse: test_suite_x509parse.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_x509write: test_suite_x509write.c $(DEP)
|
2012-02-16 15:09:13 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_xtea: test_suite_xtea.c $(DEP)
|
2009-07-11 21:15:43 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_debug: test_suite_debug.c $(DEP)
|
2010-02-18 19:26:04 +01:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2014-03-26 13:26:52 +01:00
|
|
|
test_suite_version: test_suite_version.c $(DEP)
|
2010-06-19 00:47:29 +02:00
|
|
|
echo " CC $@.c"
|
|
|
|
$(CC) $(CFLAGS) $(OFLAGS) $@.c $(LDFLAGS) -o $@
|
|
|
|
|
2009-07-11 21:15:43 +02:00
|
|
|
clean:
|
2012-05-10 23:26:28 +02:00
|
|
|
ifndef WINDOWS
|
2009-07-11 21:15:43 +02:00
|
|
|
rm -f $(APPS) *.c
|
2012-05-10 23:26:28 +02:00
|
|
|
endif
|
|
|
|
ifdef WINDOWS
|
|
|
|
del /Q /F *.c *.exe
|
|
|
|
endif
|
2009-07-11 21:15:43 +02:00
|
|
|
|
2009-07-28 20:55:00 +02:00
|
|
|
check: $(APPS)
|
2012-05-10 23:26:28 +02:00
|
|
|
ifndef WINDOWS
|
2014-03-26 13:26:52 +01:00
|
|
|
echo "Running checks (Success if all tests PASSED)"
|
2012-05-08 17:39:50 +02:00
|
|
|
RETURN=0; \
|
2009-07-28 22:16:47 +02:00
|
|
|
for i in $(APPS); \
|
|
|
|
do \
|
|
|
|
echo " - $${i}"; \
|
2014-03-26 13:26:52 +01:00
|
|
|
RESULT=`$(CHECK_PRELOAD) ./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`; \
|
2012-05-08 17:39:50 +02:00
|
|
|
FAILED=`echo $$RESULT |grep FAILED`; \
|
|
|
|
echo " $$RESULT"; \
|
|
|
|
if [ "$$FAILED" != "" ]; \
|
|
|
|
then \
|
|
|
|
echo "**** Failed ***************"; \
|
|
|
|
RETURN=1; \
|
|
|
|
fi; \
|
2009-07-28 22:16:47 +02:00
|
|
|
echo ""; \
|
2012-05-08 17:39:50 +02:00
|
|
|
done; \
|
|
|
|
if [ "$$RETURN" -eq 1 ]; then exit 1; fi
|
2012-05-10 23:26:28 +02:00
|
|
|
endif
|