# $FreeBSD: src/share/mk/bsd.init.mk,v 1.1.2.1 2002/07/17 19:08:23 ru Exp $ # The include file includes ../Makefile.inc and # ; this is used at the top of all files # that actually "build something". .if !target(____) ____: .if exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" .endif .if ${CCVER} != ${_CCVER} || defined(FORCE_CPUTYPE) .include .endif .include .MAIN: all .endif # !target(____) # Establish compatibility with FreeBSD Makefiles .if defined(NO_SHARED) && !defined(NOSHARED) NOSHARED= ${NO_SHARED} .endif .if defined(NO_MAN) && !defined(NOMAN) NOMAN= ${NO_MAN} .endif # Imply NOMAN for NO_SHARE case .if defined(NO_SHARE) && !defined(NOMAN) NOMAN= noman .endif