ALL YOUR LIBRARIES ARE BELONG TO US
This commit is contained in:
parent
85295f82e8
commit
6d05f8ef2d
56 changed files with 7407 additions and 0 deletions
21
vendor/htree/Makefile
vendored
Normal file
21
vendor/htree/Makefile
vendored
Normal 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)
|
||||
|
Reference in a new issue