mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 09:09:01 -04:00
20 lines
334 B
Makefile
20 lines
334 B
Makefile
# $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
|