blob: 73f044607e65f9c876a9be10a183fc9a0766e610 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# $OpenBSD: Makefile,v 1.5 2001/09/01 16:21:16 drahn Exp $
.if (${MACHINE} == "i386") || (${MACHINE_ARCH} == "powerpc") || \
(${MACHINE} == "alpha")
PROG= ancontrol
CFLAGS+=-DANCACHE
.else
NOPROG=
.endif
MAN= ancontrol.8
.include <bsd.prog.mk>
|