blob: 1959fda50c58d8f799f3610bef545141ae142a06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.8 2004/01/29 03:42:49 deraadt Exp $
.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \
(${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "alpha") || \
(${MACHINE} == "cats")
PROG= ancontrol
CPPFLAGS+=-DANCACHE
.else
NOPROG=
.endif
MAN= ancontrol.8
.include <bsd.prog.mk>
|