1
0
Fork 0
This repository has been archived on 2019-12-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
neinomaten/vendor/htree/Makefile

22 lines
412 B
Makefile
Raw Normal View History

2006-04-17 14:17:33 +00:00
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)