Commit 45394697 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #726 from mattn/fix_build_tasks

Fix build tasks
parents 1746a83c b0beaadc
...@@ -37,9 +37,9 @@ depfiles = MRuby.targets['host'].bins.map do |bin| ...@@ -37,9 +37,9 @@ depfiles = MRuby.targets['host'].bins.map do |bin|
install_path install_path
end end
depfiles += MRuby.targets.reject {|n,t| n == 'host' }.map do |n, t| depfiles += MRuby.targets.reject {|n,t| n == 'host' }.map { |n, t|
["#{t.build_dir}/lib/libmruby.a"] + t.bins.map { |bin| exefile("#{t.build_dir}/bin/#{bin}") } ["#{t.build_dir}/lib/libmruby.a"] + t.bins.map { |bin| exefile("#{t.build_dir}/bin/#{bin}") }
end }.flatten
desc "build all targets, install (locally) in-repo" desc "build all targets, install (locally) in-repo"
task :all => depfiles task :all => depfiles
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment