diff options
author | AKASHI Takahiro <takahiro.akashi@linaro.org> | 2019-11-13 09:45:01 +0900 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-06 16:44:20 -0500 |
commit | e85a787c7d63592b6fd9214f0e202fcabca75cf4 (patch) | |
tree | 9f9df88d0d49e412bfbf7f66a3c7cf57e5ff0702 /scripts/Makefile.build | |
parent | b4adf627d5b7bdff649d3b852eab97d6f9191111 (diff) | |
download | u-boot-e85a787c7d63592b6fd9214f0e202fcabca75cf4.tar.gz |
lib: crypto: add pkcs7 message parser
Imported from linux kernel v5.3:
pkcs7.asn1 without changes
pkcs7.h with changes marked as __UBOOT__
pkcs7_parser.h without changes
pkcs7_parser.c with changes marked as __UBOOT__
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r-- | scripts/Makefile.build | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 6d59ea91fa..26eb701f8d 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -419,11 +419,9 @@ targets += $(multi-used-y) $(multi-used-m) intermediate_targets = $(foreach sfx, $(2), \ $(patsubst %$(strip $(1)),%$(sfx), \ $(filter %$(strip $(1)), $(targets)))) -# %.asn1.o <- %.asn1.[ch] <- %.asn1 # %.lex.o <- %.lex.c <- %.l # %.tab.o <- %.tab.[ch] <- %.y -targets += $(call intermediate_targets, .asn1.o, .asn1.c .asn1.h) \ - $(call intermediate_targets, .lex.o, .lex.c) \ +targets += $(call intermediate_targets, .lex.o, .lex.c) \ $(call intermediate_targets, .tab.o, .tab.c .tab.h) # Descending |