2015-11-24 05:44:58 +00:00
|
|
|
## -*- mode: perl; -*-
|
2015-03-12 13:58:07 +00:00
|
|
|
## Personal configuration targets
|
|
|
|
|
|
|
|
%targets = (
|
|
|
|
"levitte-linux-elf" => {
|
2016-01-29 22:36:12 +00:00
|
|
|
inherit_from => [ "linux-elf" ],
|
2016-03-02 18:13:26 +00:00
|
|
|
cflags => add(picker(debug => "-ggdb -g3")),
|
|
|
|
defines => add(picker(debug => "LEVITTE_DEBUG"),
|
|
|
|
{ separator => undef }),
|
2016-01-29 22:36:12 +00:00
|
|
|
build_scheme => [ "unified", "unix" ],
|
|
|
|
build_file => "Makefile",
|
2015-03-12 13:58:07 +00:00
|
|
|
},
|
2016-01-29 22:36:12 +00:00
|
|
|
"levitte-linux-x86_64" => {
|
|
|
|
inherit_from => [ "linux-x86_64" ],
|
2016-03-02 18:13:26 +00:00
|
|
|
cflags => add(picker(debug => "-ggdb -g3")),
|
|
|
|
defines => add(picker(debug => "LEVITTE_DEBUG"),
|
|
|
|
{ separator => undef }),
|
2016-01-29 22:36:12 +00:00
|
|
|
build_scheme => [ "unified", "unix" ],
|
|
|
|
build_file => "Makefile",
|
2015-03-12 13:58:07 +00:00
|
|
|
},
|
|
|
|
);
|