Blob


1 REGRESS_TARGETS=checkout update status log add rm diff blame commit \
2 cherrypick backout rebase import histedit
3 NOOBJ=Yes
5 checkout:
6 ./checkout.sh
8 update:
9 ./update.sh
11 status:
12 ./status.sh
14 log:
15 ./log.sh
17 add:
18 ./add.sh
20 rm:
21 ./rm.sh
23 diff:
24 ./diff.sh
26 blame:
27 ./blame.sh
29 commit:
30 ./commit.sh
32 cherrypick:
33 ./cherrypick.sh
35 backout:
36 ./backout.sh
38 rebase:
39 ./rebase.sh
41 import:
42 ./import.sh
44 histedit:
45 ./histedit.sh
47 .include <bsd.regress.mk>