b0c93ee747
These two functions take a separator to concatenat the strings with as first argument. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
23 lines
787 B
Perl
23 lines
787 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(undef, "LEVITTE_DEBUG"),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
"levitte-linux-x86_64" => {
|
|
inherit_from => [ "linux-x86_64" ],
|
|
debug_cflags => add(" ", "-ggdb -g3"),
|
|
debug_defines => add(undef, "LEVITTE_DEBUG"),
|
|
build_scheme => [ "unified", "unix" ],
|
|
build_file => "Makefile",
|
|
},
|
|
);
|