File: Makefile

package info (click to toggle)
ruby-numru-units 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 656 kB
  • ctags: 513
  • sloc: ruby: 8,244; makefile: 39
file content (14 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all:
	@(cd src && make && cp -p units.rb ../lib/numru/)
	@(cd doc && make)

install:
	ruby install.rb

test:
	@(cd src && make test)

distclean: clean

clean:
	@rm -f `find . -name "*~" -print`