diff options
Diffstat (limited to 'todo.rb')
-rw-r--r-- | todo.rb | 51 |
1 files changed, 51 insertions, 0 deletions
@@ -0,0 +1,51 @@ + +begin + make = open("Makefile", "a") + make.puts "\ntest: $(DLLIB)" + Dir.foreach('test') do |x| + next if /^\./ =~ x || /(_\.rb|~)$/ =~ x + next if FileTest.directory?(x) + make.print "\truby test/#{x}\n" + end + if unknown + make.print <<-EOT + +unknown: $(DLLIB) +\t@echo "main() {}" > /tmp/a.c +\t$(CC) -static /tmp/a.c $(OBJS) $(CPPFLAGS) $(DLDFLAGS) $(LIBS) $(LOCAL_LIBS) +\t@-rm /tmp/a.c a.out + +EOT + end + make.print <<-EOT +%.html: %.rd +\trd2 $< > ${<:%.rd=%.html} + + EOT + make.print "HTML = mmap.html" + doc = Dir['doc/*.rd'] + doc.each {|x| make.print " \\\n\t#{x.sub(/\.rd$/, '.html')}" } + make.print "\n\nRDOC = doc/mmap.rb" + make.puts + make.print <<-EOF + +rdoc: doc/doc/index.html + +doc/doc/index.html: $(RDOC) +\t@-(cd doc; rdoc mmap.rb) + +ri: doc/mmap.rb +\t@-(cd doc; rdoc -r mmap.rb) + +ri-site: doc/mmap.rb +\t@-(cd doc; rdoc -R mmap.rb) + +rd2: html + +html: $(HTML) + + EOF +ensure + make.close +end + |