Makefile revision 83369
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD: head/sbin/reboot/Makefile 83369 2001-09-12 12:21:08Z ru $
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
11.if exists(${.CURDIR}/boot_${MACHINE}.8)
12MLINKS+= boot_${MACHINE}.8 boot.8
13.endif
14
15LINKS=	${BINDIR}/reboot ${BINDIR}/halt ${BINDIR}/reboot ${BINDIR}/fastboot \
16	${BINDIR}/reboot ${BINDIR}/fasthalt
17
18.include <bsd.prog.mk>
19