summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index dc0f23a71..272aad011 100644
--- a/Rakefile
+++ b/Rakefile
@@ -232,7 +232,6 @@ end
desc "preallocated symbols"
task :gensym => presym_inc
-task :all => :gensym
depfiles += MRuby.targets.map { |n, t|
t.libraries
@@ -243,7 +242,7 @@ depfiles += MRuby.targets.reject { |n, t| n == 'host' }.map { |n, t|
}.flatten
desc "build all targets, install (locally) in-repo"
-task :all => depfiles do
+task :all => :build do
puts
puts "Build summary:"
puts
@@ -253,6 +252,10 @@ task :all => depfiles do
MRuby::Lockfile.write
end
+task :build => :gensym do
+ depfiles.each {|dep| Rake::Task[dep].invoke}
+end
+
desc "run all mruby tests"
task :test
MRuby.each_target do