diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-02 18:13:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-07-02 18:13:24 +0000 |
commit | 6f42d38071098f708ded25e07bd716d71940531d (patch) | |
tree | 21986ee80ea67946dcec4214e686ed541107c2ea /sbin/wicontrol/Makefile | |
parent | e617ade04ddf7fa90c9a5619e04a3cc67ce838e3 (diff) |
No, do NOT build them on everything
Diffstat (limited to 'sbin/wicontrol/Makefile')
-rw-r--r-- | sbin/wicontrol/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sbin/wicontrol/Makefile b/sbin/wicontrol/Makefile index f499e910470..7b9b601ece1 100644 --- a/sbin/wicontrol/Makefile +++ b/sbin/wicontrol/Makefile @@ -1,8 +1,13 @@ -# $OpenBSD: Makefile,v 1.3 2001/06/23 19:55:34 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 2001/07/02 18:13:23 deraadt Exp $ # From: Makefile,v 1.1 1999/05/05 07:37:06 wpaul Exp $ +.if (${MACHINE} == "i386") || (${MACHINE} == "powerpc") || \ + (${MACHINE} == "alpha") PROG= wicontrol SRCS= wicontrol.c +.else +NOPROG= +.endif CFLAGS+= -Wall |