1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: releng/11.0/sbin/reboot/Makefile 298107 2016-04-16 07:45:30Z gjb $
3
4PACKAGE=runtime
5PROG=	reboot
6MAN=	reboot.8 nextboot.8
7MLINKS=	reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
8
9.if exists(${.CURDIR}/boot_${MACHINE}.8)
10MAN+=	boot_${MACHINE}.8
11MLINKS+= boot_${MACHINE}.8 boot.8
12.endif
13.if ${MACHINE} == "amd64"
14MAN+=	boot_i386.8
15MLINKS+= boot_i386.8 boot.8
16.endif
17
18LINKS=	${BINDIR}/reboot ${BINDIR}/halt ${BINDIR}/reboot ${BINDIR}/fastboot \
19	${BINDIR}/reboot ${BINDIR}/fasthalt
20
21SCRIPTS=	nextboot.sh
22
23.include <bsd.prog.mk>
24