mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
19 lines
326 B
Makefile
19 lines
326 B
Makefile
|
|
||
|
all:
|
||
|
${MK} ${MK_ARG}
|
||
|
|
||
|
.if exists(${.OBJDIR}/../../../usr.bin/make/make)
|
||
|
MK= ${.OBJDIR}/../../../usr.bin/make/make
|
||
|
new:
|
||
|
${MK} ${MK_ARG} 2>&1 | tee out-new
|
||
|
@echo "-=-=-=-=-=-"
|
||
|
make ${MK_ARG} 2>&1 | tee out-old
|
||
|
@echo "-=-=-=-=-=-"
|
||
|
diff -s out-old out-new
|
||
|
.else
|
||
|
MK= make
|
||
|
.endif
|
||
|
MK_ARG= -C ${.CURDIR}
|
||
|
|
||
|
.include <bsd.obj.mk>
|