Makefile revision 79748
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/reboot/Makefile 79748 2001-07-15 05:44:23Z dd $
3
4PROG=	reboot
5WARNS?=	2
6DPADD=	${LIBUTIL}
7LDADD=	-lutil
8MAN=	reboot.8 boot_i386.8
9MLINKS=	reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
10
11ARCH!=	uname -m
12
13.if exists (${.CURDIR}/boot_${ARCH}.8)
14MLINKS+= boot_${ARCH}.8 boot.8
15.endif
16
17LINKS=	${BINDIR}/reboot ${BINDIR}/halt ${BINDIR}/reboot ${BINDIR}/fastboot \
18	${BINDIR}/reboot ${BINDIR}/fasthalt
19
20.include <bsd.prog.mk>
21