diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-05-18 13:49:53 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-05-18 13:49:53 +0000 |
commit | 76c07de86c09fc370dcb5ca22fb4bc809f93c46c (patch) | |
tree | a069f1aefa70d9efdea9d52c04ca72952faff84c /sbin/wicontrol | |
parent | d0a772534e5f1bba518a90be11e20b10de5a0650 (diff) |
Prepare to recurse down those directories for all arches, to grab manpages.
Diffstat (limited to 'sbin/wicontrol')
-rw-r--r-- | sbin/wicontrol/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sbin/wicontrol/Makefile b/sbin/wicontrol/Makefile index 67092ac524b..3ca45ec40a4 100644 --- a/sbin/wicontrol/Makefile +++ b/sbin/wicontrol/Makefile @@ -1,11 +1,16 @@ -# $OpenBSD: Makefile,v 1.1 1999/07/11 16:31:08 niklas Exp $ +# $OpenBSD: Makefile,v 1.2 2000/05/18 13:49:51 espie Exp $ # From: Makefile,v 1.1 1999/05/05 07:37:06 wpaul Exp $ + +.if ${MACHINE} == "i386" PROG= wicontrol SRCS= wicontrol.c CFLAGS+= -Wall +.else +NOPROG=yes +.endif -#MAN8= wicontrol.8 MAN= wicontrol.8 +MANSUBDIR=i386 .include <bsd.prog.mk> |