14 lines
404 B
Makefile
14 lines
404 B
Makefile
# from: @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $Id: Makefile,v 1.6 1994/12/22 10:44:35 cgd Exp $
|
|
|
|
MAN= fastboot.8
|
|
MLINKS= fastboot.8 fasthalt.8
|
|
|
|
beforeinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/fastboot.sh ${DESTDIR}${BINDIR}/fastboot
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/fasthalt.sh ${DESTDIR}${BINDIR}/fasthalt
|
|
|
|
.include <bsd.prog.mk>
|