blob: 654bee2e894379aa588d82e6eb17abe649b7417a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $NetBSD: Makefile,v 1.6 2009/12/13 05:01:33 nakayama Exp $
.if ${MACHINE} == "sparc64" || ${MACHINE} == "macppc" \
|| ${MACHINE} == "shark" || ${MACHINE} == "sparc"
PROG= ofctl
SRCS= ofctl.c
LDADD+= -lprop
DPADD+= ${LIBPROP}
.endif
MAN= ofctl.8
.include <bsd.prog.mk>
|