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