From 4de5e966312f32adfcbfa844e67772602bb18ed6 Mon Sep 17 00:00:00 2001 From: miod <> Date: Mon, 14 Apr 2014 18:40:47 +0000 Subject: Remove eng_cryptodev.c (merged into old-name hw_cryptodev.c); move undo the move of crypto/engines/eng_padlock to engines/e_padlock. Requested by reyk@. Note that eng_padlock is not compiled in currently. --- src/lib/libcrypto/engine/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/engine/Makefile') diff --git a/src/lib/libcrypto/engine/Makefile b/src/lib/libcrypto/engine/Makefile index 44900f0420..06e1bc7494 100644 --- a/src/lib/libcrypto/engine/Makefile +++ b/src/lib/libcrypto/engine/Makefile @@ -17,17 +17,18 @@ TEST= enginetest.c APPS= LIB=$(TOP)/libcrypto.a +LIBNAMES= eng_padlock LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ eng_table.c eng_pkey.c eng_fat.c eng_all.c \ tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \ tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c \ - eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c \ + eng_openssl.c eng_cnf.c eng_dyn.c \ eng_rsax.c eng_rdrand.c LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ eng_table.o eng_pkey.o eng_fat.o eng_all.o \ tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \ tb_cipher.o tb_digest.o tb_pkmeth.o tb_asnmth.o \ - eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o \ + eng_openssl.o eng_cnf.o eng_dyn.o \ eng_rsax.o eng_rdrand.o SRC= $(LIBSRC) @@ -66,6 +67,11 @@ install: tags: ctags $(SRC) +errors: + set -e; for l in $(LIBNAMES); do \ + $(PERL) ../../util/mkerr.pl -conf eng_$$l.ec \ + -nostatic -staticloader -write eng_$$l.c; \ + done tests: lint: -- cgit v1.2.3-55-g6feb