1
0
Fork 0

ALL YOUR LIBRARIES ARE BELONG TO US

This commit is contained in:
neingeist 2006-04-17 14:17:33 +00:00
parent 85295f82e8
commit 6d05f8ef2d
56 changed files with 7407 additions and 0 deletions

21
vendor/htree/Makefile vendored Normal file
View file

@ -0,0 +1,21 @@
RUBY=ruby
RD2HTML=rd2 -r rd/rd2html-lib.rb
all: README.html doc/index.html
README.html: README.rd
$(RD2HTML) --html-title='htree - HTML/XML tree library' -o README README.rd
check test:
$(RUBY) -I. test-all.rb
install:
$(RUBY) install.rb
.PHONY: check test all install
RB = htree.rb htree/modules.rb $(wildcard htree/[a-l]*.rb) $(wildcard htree/[n-z]*.rb)
doc/index.html: $(RB)
rm -rf doc
rdoc $(RB)