rust-raspberrypi-OS-tutorials/utils/make_all.rb
2018-12-31 01:18:54 +01:00

23 lines
375 B
Ruby

#!/usr/bin/env ruby
def make_all
crates = Dir["**/Cargo.toml"].sort!
crates.each do |x|
next if x.include?('raspi3_boot')
x = File.dirname(x)
puts "\n\n" + x.to_s + "\n\n"
Dir.chdir(x) do
unless system('make')
puts "\n\nBuild failed!"
exit(1) # Exit with error code
end
end
end
end
if __FILE__ == $0
make_all()
end