aboutsummaryrefslogtreecommitdiffstats
path: root/tool
diff options
context:
space:
mode:
Diffstat (limited to 'tool')
-rw-r--r--tool/makedocs.rb62
1 files changed, 0 insertions, 62 deletions
diff --git a/tool/makedocs.rb b/tool/makedocs.rb
deleted file mode 100644
index 56cb21565f..0000000000
--- a/tool/makedocs.rb
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/usr/bin/env ruby
-#
-#
-
-require 'rb/insns2vm.rb'
-insns = insns_def_new
-
-{ # docs
- '/doc/yarvarch.ja' => :desc_ja,
- '/doc/yarvarch.en' => :desc_en,
-}.each{|fn, s|
- fn = $srcdir + fn
- p fn
- open(fn, 'w'){|f|
- f.puts(insns.__send__(s))
- }
-}
-
-def chg ary
- if ary.empty?
- return ' '
- end
-
- ary.map{|e|
- if e[0] == '...'
- '...'
- else
- e.join(' ')
- end
- e[1]
- }.join(', ')
-end
-
-open($srcdir + '/doc/insnstbl.html', 'w'){|f|
- tbl = ''
- type = nil
- insns.each_with_index{|insn, i|
- c = insn.comm[:c]
- if type != c
- stype = c
- type = c
- end
-
- tbl << "<tr>\n"
- tbl << "<td>#{stype}</td>"
- tbl << "<td>#{i}</td>"
- tbl << "<td>#{insn.name}</td>"
- tbl << "<td>#{chg insn.opes}</td>"
- tbl << "<td>#{chg insn.pops.reverse}</td>"
- tbl << "<td> =&gt; </td>"
- tbl << "<td>#{chg insn.rets.reverse}</td>"
- tbl << "</tr>\n"
- }
- f.puts ERB.new(File.read($srcdir + '/template/insnstbl.html')).result(binding)
-}
-
-begin
- system('t2n.bat --tmpl doc.tmpl ../doc/yarvarch.ja > ../doc/yarvarch.ja.html')
- system('t2n.bat --tmpl doc.tmpl ../doc/yarvarch.en > ../doc/yarvarch.en.html')
-rescue
-end
-