2002-04-17 13:49:29 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2014-04-24 02:02:51 +00:00
|
|
|
# The include file <bsd.init.mk> includes <bsd.opts.mk>,
|
|
|
|
# ../Makefile.inc and <bsd.own.mk>; this is used at the
|
|
|
|
# top of all <bsd.*.mk> files that actually "build something".
|
|
|
|
# bsd.opts.mk is included early so Makefile.inc can use the
|
|
|
|
# MK_FOO variables.
|
2002-04-17 13:49:29 +00:00
|
|
|
|
|
|
|
.if !target(__<bsd.init.mk>__)
|
|
|
|
__<bsd.init.mk>__:
|
2014-04-24 02:02:51 +00:00
|
|
|
.include <bsd.opts.mk>
|
2002-04-17 13:49:29 +00:00
|
|
|
.if exists(${.CURDIR}/../Makefile.inc)
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
.endif
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.MAIN: all
|
2005-04-11 07:13:29 +00:00
|
|
|
.endif # !target(__<bsd.init.mk>__)
|