fn main() {
if let Some(target) = std::env::args().nth(1) {
println!("// These are the features for the target '{}'", target);
arm_targets::process_target(&target);
} else {
println!("// These are the features this crate enables:");
arm_targets::process_target("");
}
}