File: Makefile

package info (click to toggle)
htree 0.7-5
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,360 kB
  • ctags: 930
  • sloc: ruby: 5,770; makefile: 69
file content (21 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
RUBY=ruby

all: README rdoc/index.html

README: misc/README.erb
	erb misc/README.erb > README

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)
rdoc/index.html: $(RB)
	rdoc --op rdoc $(RB)

clean:
	rm -rf rdoc