]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/build/make_check/check.mk
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / tools / build / make_check / check.mk
1 # $FreeBSD$
2
3 all:
4         ${MK} ${MK_ARG}
5
6 .if exists(${.OBJDIR}/../../../usr.bin/make/make)
7 MK=     ${.OBJDIR}/../../../usr.bin/make/make
8 new:
9         ${MK} ${MK_ARG} 2>&1 | tee out-new
10         @echo "-=-=-=-=-=-"
11         make ${MK_ARG} 2>&1 | tee out-old
12         @echo "-=-=-=-=-=-"
13         diff -s out-old out-new
14 .else
15 MK=     make
16 .endif
17 MK_ARG= -C ${.CURDIR}
18
19 .include <bsd.obj.mk>