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