12 lines
210 B
Makefile
12 lines
210 B
Makefile
# Makefile for periodic(8)
|
|
#
|
|
# $FreeBSD$
|
|
|
|
MAN8= periodic.8
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/periodic.sh ${DESTDIR}${BINDIR}/periodic
|
|
|
|
.include <bsd.prog.mk>
|