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