blob: f4ba84b27d1b77ddd33e717d00d0e597af748b8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.9 2004/01/29 03:42:49 deraadt Exp $
# From: Makefile,v 1.1 1999/05/05 07:37:06 wpaul Exp $
.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \
(${MACHINE} == "alpha") || (${MACHINE} == "sparc") || \
(${MACHINE} == "sparc64") || (${MACHINE_ARCH} == "powerpc") || \
(${MACHINE} == "cats")
PROG= wicontrol
SRCS= wicontrol.c
.else
NOPROG=
.endif
CFLAGS+= -Wall
MAN= wicontrol.8
.include <bsd.prog.mk>
|