mirror of
https://github.com/openssl/openssl.git
synced 2024-12-17 22:13:45 +08:00
bdcd83e127
They now default to " " as separator, but that can be overridden by having a hash with parameters as last argument. The only currently recognised parameter is `separator'. The special separator `undef' will force the result to become a list rather than a concatenated string. Reviewed-by: Andy Polyakov <appro@openssl.org>
24 lines
811 B
Perl
24 lines
811 B
Perl
## -*- mode: perl; -*-
|
|
## Personal configuration targets
|
|
##
|
|
## If you edit this file, run this command before committing
|
|
## make -f Makefile.in TABLE
|
|
## This file is interpolated by the Configure script.
|
|
|
|
%targets = (
|
|
"levitte-linux-elf" => {
|
|
inherit_from => [ "linux-elf" ],
|
|
debug_cflags => add("-ggdb -g3"),
|
|
debug_defines => add("LEVITTE_DEBUG", { separator => undef }),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
"levitte-linux-x86_64" => {
|
|
inherit_from => [ "linux-x86_64" ],
|
|
debug_cflags => add("-ggdb -g3"),
|
|
debug_defines => add("LEVITTE_DEBUG", { separator => undef }),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
);
|