Makefile revision 140794
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/reboot/Makefile 140794 2005-01-25 08:14:00Z delphij $
3
4PROG=	reboot
5WARNS?=	6
6DPADD=	${LIBUTIL}
7LDADD=	-lutil
8MAN=	reboot.8 boot_i386.8 nextboot.8
9MLINKS=	reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
10
11.if exists(${.CURDIR}/boot_${MACHINE}.8)
12MLINKS+= boot_${MACHINE}.8 boot.8
13.endif
14.if ${MACHINE} == "amd64"
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