blob: 411a69be70f8300be5cab5740fba07abc2dab3d3 [file] [log] [blame]
/* we need to add the Pkg.uses here to work around a bug in the msp430 header
* files: they embed a '#include <In430.h>' when they should have used
* '#include "In430.h"'.
*/
Pkg.uses = ["ti/apps/msp430"];
for (var i = 0; i < Build.targets.length; i++) {
var targ = Build.targets[i];
if (targ.isa.match(/430/)) {
var lib = Pkg.addLibrary("lib/" + Pkg.name, targ);
lib.addObjects(Pkg.modules);
}
}