mirror of
https://github.com/opnsense/src.git
synced 2026-02-11 23:06:12 -05:00
19 lines
338 B
Makefile
19 lines
338 B
Makefile
# $FreeBSD$
|
|
|
|
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>
|