summaryrefslogtreecommitdiffhomepage
path: root/tools/mrbc/mrbc.rake
blob: 248433cf0909eadf4bf8e128446492e26ca3dd34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
MRuby.each_target do
  dir = File.dirname(__FILE__).relative_path_from(root)

  if bins.find { |s| s.to_s == 'mrbc' }
    exec = exefile("#{build_dir}/bin/mrbc")
    objs = Dir.glob("#{dir}/*.c").map { |f| objfile(f.pathmap("#{build_dir}/%X")) }

    file exec => objs + [libfile("#{build_dir}/lib/libmruby_core")] do |t|
      linker.run t.name, t.prerequisites
    end
  end
end