xref: /dragonfly/share/mk/bsd.init.mk (revision 28c7b939)
1# $FreeBSD: src/share/mk/bsd.init.mk,v 1.1.2.1 2002/07/17 19:08:23 ru Exp $
2# $DragonFly: src/share/mk/bsd.init.mk,v 1.5 2004/01/30 02:35:02 dillon Exp $
3
4# The include file <bsd.init.mk> includes ../Makefile.inc and
5# <bsd.own.mk>; this is used at the top of all <bsd.*.mk> files
6# that actually "build something".
7
8.if !target(__<bsd.init.mk>__)
9__<bsd.init.mk>__:
10.if exists(${.CURDIR}/../Makefile.inc)
11.include "${.CURDIR}/../Makefile.inc"
12.endif
13.if ${CCVER} != ${_CCVER}
14.include <bsd.cpu.mk>
15.endif
16.include <bsd.own.mk>
17.MAIN: all
18.endif !target(__<bsd.init.mk>__)
19