~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/crypto/asymmetric_keys/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /crypto/asymmetric_keys/Makefile (Version linux-6.12-rc7) and /crypto/asymmetric_keys/Makefile (Version linux-3.10.108)


  1 # SPDX-License-Identifier: GPL-2.0             << 
  2 #                                                   1 #
  3 # Makefile for asymmetric cryptographic keys        2 # Makefile for asymmetric cryptographic keys
  4 #                                                   3 #
  5                                                     4 
  6 obj-$(CONFIG_ASYMMETRIC_KEY_TYPE) += asymmetri      5 obj-$(CONFIG_ASYMMETRIC_KEY_TYPE) += asymmetric_keys.o
  7                                                     6 
  8 asymmetric_keys-y := \                         !!   7 asymmetric_keys-y := asymmetric_type.o signature.o
  9         asymmetric_type.o \                    << 
 10         restrict.o \                           << 
 11         signature.o                            << 
 12                                                     8 
 13 obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) +=      9 obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) += public_key.o
                                                   >>  10 obj-$(CONFIG_PUBLIC_KEY_ALGO_RSA) += rsa.o
 14                                                    11 
 15 #                                                  12 #
 16 # X.509 Certificate handling                       13 # X.509 Certificate handling
 17 #                                                  14 #
 18 obj-$(CONFIG_X509_CERTIFICATE_PARSER) += x509_     15 obj-$(CONFIG_X509_CERTIFICATE_PARSER) += x509_key_parser.o
 19 x509_key_parser-y := \                             16 x509_key_parser-y := \
 20         x509.asn1.o \                          !!  17         x509-asn1.o \
 21         x509_akid.asn1.o \                     !!  18         x509_rsakey-asn1.o \
 22         x509_cert_parser.o \                       19         x509_cert_parser.o \
 23         x509_loader.o \                        << 
 24         x509_public_key.o                          20         x509_public_key.o
 25 obj-$(CONFIG_FIPS_SIGNATURE_SELFTEST) += x509_ << 
 26 x509_selftest-y += selftest.o                  << 
 27 x509_selftest-$(CONFIG_FIPS_SIGNATURE_SELFTEST << 
 28 x509_selftest-$(CONFIG_FIPS_SIGNATURE_SELFTEST << 
 29                                                << 
 30 $(obj)/x509_cert_parser.o: \                   << 
 31         $(obj)/x509.asn1.h \                   << 
 32         $(obj)/x509_akid.asn1.h                << 
 33                                                    21 
 34 $(obj)/x509.asn1.o: $(obj)/x509.asn1.c $(obj)/ !!  22 $(obj)/x509_cert_parser.o: $(obj)/x509-asn1.h $(obj)/x509_rsakey-asn1.h
 35 $(obj)/x509_akid.asn1.o: $(obj)/x509_akid.asn1 !!  23 $(obj)/x509-asn1.o: $(obj)/x509-asn1.c $(obj)/x509-asn1.h
                                                   >>  24 $(obj)/x509_rsakey-asn1.o: $(obj)/x509_rsakey-asn1.c $(obj)/x509_rsakey-asn1.h
 36                                                    25 
 37 #                                              !!  26 clean-files     += x509-asn1.c x509-asn1.h
 38 # PKCS#8 private key handling                  !!  27 clean-files     += x509_rsakey-asn1.c x509_rsakey-asn1.h
 39 #                                              << 
 40 obj-$(CONFIG_PKCS8_PRIVATE_KEY_PARSER) += pkcs << 
 41 pkcs8_key_parser-y := \                        << 
 42         pkcs8.asn1.o \                         << 
 43         pkcs8_parser.o                         << 
 44                                                << 
 45 $(obj)/pkcs8_parser.o: $(obj)/pkcs8.asn1.h     << 
 46 $(obj)/pkcs8-asn1.o: $(obj)/pkcs8.asn1.c $(obj << 
 47                                                << 
 48 clean-files     += pkcs8.asn1.c pkcs8.asn1.h   << 
 49                                                << 
 50 #                                              << 
 51 # PKCS#7 message handling                      << 
 52 #                                              << 
 53 obj-$(CONFIG_PKCS7_MESSAGE_PARSER) += pkcs7_me << 
 54 pkcs7_message-y := \                           << 
 55         pkcs7.asn1.o \                         << 
 56         pkcs7_parser.o \                       << 
 57         pkcs7_trust.o \                        << 
 58         pkcs7_verify.o                         << 
 59                                                << 
 60 $(obj)/pkcs7_parser.o: $(obj)/pkcs7.asn1.h     << 
 61 $(obj)/pkcs7.asn1.o: $(obj)/pkcs7.asn1.c $(obj << 
 62                                                << 
 63 #                                              << 
 64 # PKCS#7 parser testing key                    << 
 65 #                                              << 
 66 obj-$(CONFIG_PKCS7_TEST_KEY) += pkcs7_test_key << 
 67 pkcs7_test_key-y := \                          << 
 68         pkcs7_key_type.o                       << 
 69                                                << 
 70 #                                              << 
 71 # Signed PE binary-wrapped key handling        << 
 72 #                                              << 
 73 obj-$(CONFIG_SIGNED_PE_FILE_VERIFICATION) += v << 
 74                                                << 
 75 verify_signed_pefile-y := \                    << 
 76         verify_pefile.o \                      << 
 77         mscode_parser.o \                      << 
 78         mscode.asn1.o                          << 
 79                                                << 
 80 $(obj)/mscode_parser.o: $(obj)/mscode.asn1.h $ << 
 81 $(obj)/mscode.asn1.o: $(obj)/mscode.asn1.c $(o << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php