diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-05 08:33:16 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-05-05 08:33:16 +0800 |
commit | e1b875e3864cf8a0ccba8f5a0fc176b84a248df6 (patch) | |
tree | e38e7aa843b50c82fd2913fad3057e11a5f6039d /Makefile | |
parent | c4489ae8c223b5114272c6be34f97ef815a826c1 (diff) | |
download | dexon-mcl-e1b875e3864cf8a0ccba8f5a0fc176b84a248df6.tar.gz dexon-mcl-e1b875e3864cf8a0ccba8f5a0fc176b84a248df6.tar.zst dexon-mcl-e1b875e3864cf8a0ccba8f5a0fc176b84a248df6.zip |
test of ecdsa runs well
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ LIB_DIR=lib OBJ_DIR=obj EXE_DIR=bin SRC_SRC=fp.cpp bn_c256.cpp bn_c384.cpp bn_c512.cpp she_c256.cpp -TEST_SRC=fp_test.cpp ec_test.cpp fp_util_test.cpp window_method_test.cpp elgamal_test.cpp fp_tower_test.cpp gmp_test.cpp bn_test.cpp bn384_test.cpp glv_test.cpp paillier_test.cpp she_test.cpp vint_test.cpp bn512_test.cpp +TEST_SRC=fp_test.cpp ec_test.cpp fp_util_test.cpp window_method_test.cpp elgamal_test.cpp fp_tower_test.cpp gmp_test.cpp bn_test.cpp bn384_test.cpp glv_test.cpp paillier_test.cpp she_test.cpp vint_test.cpp bn512_test.cpp ecdsa_test.cpp TEST_SRC+=bn_c256_test.cpp bn_c384_test.cpp bn_c512_test.cpp she_c256_test.cpp she_c384_test.cpp TEST_SRC+=aggregate_sig_test.cpp TEST_SRC+=bls12_test.cpp @@ -279,4 +279,4 @@ install: lib/libmcl.a lib/libmcl$(SHARE_BASENAME_SUF).$(LIB_SUF) # don't remove these files automatically .SECONDARY: $(addprefix $(OBJ_DIR)/, $(ALL_SRC:.cpp=.o)) - + |