diff options
Diffstat (limited to 'src/lib/libcrypto/engine/Makefile')
-rw-r--r-- | src/lib/libcrypto/engine/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
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 | |||
17 | APPS= | 17 | APPS= |
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBNAMES= eng_padlock | ||
20 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ | 21 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ |
21 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ | 22 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ |
22 | tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \ | 23 | tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \ |
23 | tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c \ | 24 | tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c \ |
24 | eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c \ | 25 | eng_openssl.c eng_cnf.c eng_dyn.c \ |
25 | eng_rsax.c eng_rdrand.c | 26 | eng_rsax.c eng_rdrand.c |
26 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | 27 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ |
27 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | 28 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ |
28 | tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \ | 29 | tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \ |
29 | tb_cipher.o tb_digest.o tb_pkmeth.o tb_asnmth.o \ | 30 | tb_cipher.o tb_digest.o tb_pkmeth.o tb_asnmth.o \ |
30 | eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o \ | 31 | eng_openssl.o eng_cnf.o eng_dyn.o \ |
31 | eng_rsax.o eng_rdrand.o | 32 | eng_rsax.o eng_rdrand.o |
32 | 33 | ||
33 | SRC= $(LIBSRC) | 34 | SRC= $(LIBSRC) |
@@ -66,6 +67,11 @@ install: | |||
66 | tags: | 67 | tags: |
67 | ctags $(SRC) | 68 | ctags $(SRC) |
68 | 69 | ||
70 | errors: | ||
71 | set -e; for l in $(LIBNAMES); do \ | ||
72 | $(PERL) ../../util/mkerr.pl -conf eng_$$l.ec \ | ||
73 | -nostatic -staticloader -write eng_$$l.c; \ | ||
74 | done | ||
69 | tests: | 75 | tests: |
70 | 76 | ||
71 | lint: | 77 | lint: |