blob: 3ac9e2a2a7be6da1176dcd7273d59d25acf2dfd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.9 2007/08/01 21:34:01 deraadt Exp $
.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \
(${MACHINE} == "macppc") || (${MACHINE} == "alpha") || \
(${MACHINE} == "sgi")
PROG= iopctl
.else
NOPROG=
.endif
MAN= iopctl.8
.include <bsd.prog.mk>
|