-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
57 lines (47 loc) · 1.04 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
require "bundler/gem_tasks"
iDic = "./bin"
fList = [
iDic,
"bin/mbar.rb",
"bin/mdtree.rb",
"bin/mgv.rb",
"bin/m2gv.rb",
"bin/mautocolor.rb",
"bin/mnest2tree.rb",
"bin/msankey.rb",
"bin/mnetpie.rb",
"bin/mpie.rb"
]
directory iDic
file "bin/mbar.rb" => "mbar/bin/mbar.rb" do |t|
cp t.source, t.name
end
file "bin/mdtree.rb" => "mdtree/bin/mdtree.rb" do |t|
cp t.source, t.name
end
file "bin/mgv.rb" => "mgv/bin/mgv.rb" do |t|
cp t.source, t.name
end
file "bin/m2gv.rb" => "mgv/bin/m2gv.rb" do |t|
cp t.source, t.name
end
file "bin/mautocolor.rb" => "mgv/bin/mautocolor.rb" do |t|
cp t.source, t.name
end
file "bin/mnest2tree.rb" => "mgv/bin/mnest2tree.rb" do |t|
cp t.source, t.name
end
file "bin/mnest2tree.rb" => "mgv/bin/mnest2tree.rb" do |t|
cp t.source, t.name
end
file "bin/msankey.rb" => "msankey/bin/msankey.rb" do |t|
cp t.source, t.name
end
file "bin/mpie.rb" => "mpie/bin/mpie.rb" do |t|
cp t.source, t.name
end
file "bin/mnetpie.rb" => "mnetpie/bin/mnetpie.rb" do |t|
cp t.source, t.name
end
task "build" => fList do
end