21 lines
		
	
	
	
		
			412 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 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)
 | 
						|
 |