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