xref: /freebsd/sys/Makefile (revision 6990ffd8a95caaba6858ad44ff1b3157d1efba8f)
1# $FreeBSD$
2
3# The boot loader
4SUBDIR=	boot
5
6# KLD modules build for both a.out and ELF
7.if defined(MODULES_WITH_WORLD)
8SUBDIR+=modules
9.endif
10
11afterdistribute:
12	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
13		${.CURDIR}/${MACHINE}/conf/GENERIC.hints \
14		${DESTDIR}/boot/device.hints
15
16HTAGSFLAGS+= -at `awk -F= '/^RELEASE *=/{release=$2}; END {print "FreeBSD", release, "kernel"}' < conf/newvers.sh`
17
18.include <bsd.subdir.mk>
19