a6ac4fb307
both from sys.mk (to handle old knobs set in /etc/make.conf), and from here (to handle old knobs set in individual makefiles).
16 lines
401 B
Makefile
16 lines
401 B
Makefile
# $FreeBSD$
|
|
|
|
# The include file <bsd.init.mk> includes ../Makefile.inc and
|
|
# <bsd.own.mk>; this is used at the top of all <bsd.*.mk> files
|
|
# that actually "build something".
|
|
|
|
.if !target(__<bsd.init.mk>__)
|
|
__<bsd.init.mk>__:
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
.endif
|
|
.include <bsd.compat.mk>
|
|
.include <bsd.own.mk>
|
|
.MAIN: all
|
|
.endif !target(__<bsd.init.mk>__)
|