blob: 63f49e7ef4db7faf29cd868bfcab3d2afd04efa1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: test
install:
sh INSTALL.sh
scan:
@ cvs -n update 2>&1 |grep -v : || echo ''
update:
@ cvs update -dAP|grep -v : || echo ''
clean:
@ find . |grep '~' |perl -nple unlink
|