You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
412 B
Makefile
22 lines
412 B
Makefile
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)
|
|
|