blob: 0c7e3da6dedc3a06355765337b831a76983baf5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: Makefile.inc,v 1.1 2011/09/11 18:55:24 christos Exp $
.include <bsd.own.mk>
.include "${.CURDIR}/../../Makefile.inc"
TOOLS=${IDIST}/bin/tools
.PATH: ${TOOLS}
PROG=${BASE}
SRCS=${BASE}.c
.if exists(${TOOLS}/${BASE}.8)
BINDIR=/usr/sbin
MAN=${BASE}.8
.elif exists(${TOOLS}/${BASE}.1)
BINDIR=/usr/bin
MAN=${BASE}.1
.endif
|