blob: a0f83f5477c26599fc805c375c7e88343753a1a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
all::
RSYNC_DEST := 80x24.org:/srv/dtas/
rfproject := dtas
rfpackage := dtas
include pkg.mk
check: test
coverage: export COVERAGE=1
coverage:
> coverage.dump
$(MAKE) check
$(RUBY) ./test/covshow.rb
RSYNC = rsync --exclude '*.html' --exclude '*.html.gz' \
--exclude images --exclude '*.css' --exclude '*.css.gz' \
--exclude created.* \
--exclude '*.ri' --exclude '*.ri.gz' --exclude ri
|