1
2PACKAGE=runtime
3PROG=	reboot
4MAN=	reboot.8 nextboot.8
5MLINKS=	reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
6
7.if exists(${.CURDIR}/boot_${MACHINE}.8)
8MAN+=	boot_${MACHINE}.8
9MLINKS+= boot_${MACHINE}.8 boot.8
10.endif
11.if ${MACHINE} == "amd64"
12MAN+=	boot_i386.8
13MLINKS+= boot_i386.8 boot.8
14.endif
15
16LINKS=	${BINDIR}/reboot ${BINDIR}/halt \
17	${BINDIR}/reboot ${BINDIR}/fastboot \
18	${BINDIR}/reboot ${BINDIR}/fasthalt \
19	${BINDIR}/reboot ${BINDIR}/nextboot
20
21.include <bsd.prog.mk>
22