Blob


1 REGRESS_TARGETS=checkout update status log add rm diff commit \
2 cherrypick backout rebase
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 commit:
27 ./commit.sh
29 cherrypick:
30 ./cherrypick.sh
32 backout:
33 ./backout.sh
35 rebase:
36 ./rebase.sh
38 .include <bsd.regress.mk>