From d6baf09fe0c9efe4fe87e16fed088b9ce2b4c3f1 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 31 Jan 2018 14:15:52 +0100 Subject: Apps: divide the modules in direct command modules, support library and init Most modules are direct implementations of openssl application sub-commands, but some constitute a support library, which can be used by more than one program (and is, incidently, by test/uitest). For practical purposes, we place the support library modules in a private, static library. Finally, there are some modules that don't have direct references in the rest of the apps code, but are still crucial. See them as some kind of extra crt0 or similar for your platform. Inspiration from David von Oheimb Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5222) --- Configurations/README | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Configurations/README') diff --git a/Configurations/README b/Configurations/README index aa0c5fba8b..26cd0c6e44 100644 --- a/Configurations/README +++ b/Configurations/README @@ -212,8 +212,14 @@ In each table entry, the following keys are significant: export vars as accessor functions. - apps_extra_src => Extra source to build apps/openssl, as - needed by the target. + apps_aux_src => Extra source to build apps/openssl and other + apps, as needed by the target and that can be + collected in a library. + apps_init_src => Init source to build apps/openssl and other + apps, as needed by the target. This code + cannot be placed in a library, as the rest + of the code isn't expected to link to it + explicitely. cpuid_asm_src => assembler implementation of cpuid code as well as OPENSSL_cleanse(). Default to mem_clr.c -- cgit v1.2.3