blob: 592ebdeccb0c95b91d52db240ce08e916f5edd55 (
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
|
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
# $NetBSD: Makefile,v 1.9 2018/04/01 04:35:06 ryo Exp $
.include <bsd.own.mk>
.if ${MACHINE} == "sparc64" \
|| ${MACHINE} == "macppc" \
|| ${MACHINE} == "ofppc" \
|| ${MACHINE_CPU} == "arm" \
|| ${MACHINE_CPU} == "aarch64" \
|| ${MACHINE} == "sparc"
PROG= ofctl
SRCS= ofctl.c
LDADD+= -lprop
DPADD+= ${LIBPROP}
.endif
MAN= ofctl.8
.include <bsd.prog.mk>
|