blob: 87fa737eaab3b91893ca1476bc0ac5544d34e812 [file] [log] [blame]
/* THIS IS A GENERATED FILE -- DO NOT EDIT */
/* return the names of the generated config objects */
function getLibs(prog) {
/* for programs, push the generated config object file into the
* generated linker command file.
*/
/* replace the last period in the name by an underscore */
var name = "package/cfg/" + prog.name.replace(/\.([^.]*)$/,"_$1");
var suffix = prog.build.target.suffix;
var libs = [
name + '.o' + suffix,
];
return libs.join(';');
}