diff options
author | Paul Selkirk <paul@psgd.org> | 2018-07-24 22:56:11 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2018-07-25 00:49:44 -0400 |
commit | 253f7b849c18455da0b5bae0c25fdca0e16c8015 (patch) | |
tree | 559cb12b83f3d413c867a9c8be10dbff00ccac46 /tests/Makefile | |
parent | 64d415775323dd8a435a0db3548d6b642df4ad99 (diff) | |
parent | 653d6b406c82848875f3581da41f095aade30338 (diff) |
Merge branch 'hashsig'
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 79cb3ff..d186000 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -45,7 +45,7 @@ CFLAGS ?= -g3 -Wall -fPIC -std=c99 -I${LIBHAL_SRC} -I${LIBTFM_BLD} CORE_TESTS = test-aes-key-wrap test-hash test-pbkdf2 test-ecdsa test-bus test-trng test-rsa test-mkmif SERVER_TESTS = test-rpc_server -CLIENT_TESTS = test-rpc_hash test-rpc_pkey test-rpc_get_version test-rpc_get_random test-rpc_login test-rpc_bighash +CLIENT_TESTS = test-rpc_hash test-rpc_pkey test-rpc_get_version test-rpc_get_random test-rpc_login test-rpc_bighash test-xdr test-rpc_hashsig ALL_TESTS = ${CORE_TESTS} ${SERVER_TESTS} ${CLIENT_TESTS} @@ -78,3 +78,5 @@ ${BIN}: %: %.o ${LIBS} %.o: %.c ${LBHAL_SRC}/*.h ${LIBTFM_BLD}/tfm.h ${CC} ${CFLAGS} -c -o $@ $< + +test-rpc_hashsig.o: test-hashsig.h |