mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
1f2e1cd5e8
Document them as well Reviewed-by: Andy Polyakov <appro@openssl.org>
22 lines
796 B
Perl
22 lines
796 B
Perl
## -*- mode: perl; -*-
|
|
## Personal configuration targets
|
|
|
|
%targets = (
|
|
"levitte-linux-elf" => {
|
|
inherit_from => [ "linux-elf" ],
|
|
cflags => add(picker(debug => "-ggdb -g3")),
|
|
defines => add(picker(debug => "LEVITTE_DEBUG"),
|
|
{ separator => undef }),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
"levitte-linux-x86_64" => {
|
|
inherit_from => [ "linux-x86_64" ],
|
|
cflags => add(picker(debug => "-ggdb -g3")),
|
|
defines => add(picker(debug => "LEVITTE_DEBUG"),
|
|
{ separator => undef }),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
);
|