blob: 3e74b8b790b1c41efef19ba0357c5510507c878e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $OpenBSD: Makefile,v 1.5 1996/12/08 14:59:59 downsj Exp $
# $NetBSD: Makefile,v 1.1 1996/02/02 15:29:48 mrg Exp $
# from: $Id: Makefile,v 8.1 1994/12/15 06:23:47 vixie Exp
.PATH: ${.CURDIR}/../man
all: ndc
CLEANFILES+= ndc
MAN= ndc.8
realinstall: ndc
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
ndc ${DESTDIR}${BINDIR}/ndc
ndc: ndc.sh Makefile ${.CURDIR}/../Makefile.inc
sed -e "s|%PIDDIR%|${PIDDIR}|" \
-e "s|%PS%|${PS}|" \
-e "s|%DESTSBIN%|${BINDIR}|" \
-e "s|%IOT%|${IOT}|" \
< ${.CURDIR}/ndc.sh > ndc
chmod +x ndc
.include <bsd.prog.mk>
.include "../../Makefile.inc"
|