diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2000-05-18 16:46:39 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2000-05-18 16:46:39 +0000 |
commit | 1c8b56cf9f937e32a97876868398b44aa1cb2d0b (patch) | |
tree | da38680ea960081c983674a38383063eb124ebde /usr.sbin/apmd/Makefile | |
parent | c79b06e06f96af5e95aee171cc5f929f22910ae3 (diff) |
Prepare to recurse down usr.sbin to grab manpages
Diffstat (limited to 'usr.sbin/apmd/Makefile')
-rw-r--r-- | usr.sbin/apmd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/apmd/Makefile b/usr.sbin/apmd/Makefile index 143ee172c27..67ddfbdb1de 100644 --- a/usr.sbin/apmd/Makefile +++ b/usr.sbin/apmd/Makefile @@ -1,9 +1,15 @@ -# $OpenBSD: Makefile,v 1.3 1997/09/21 11:43:18 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2000/05/18 16:46:37 espie Exp $ +.if ${MACHINE} == "i386" SRCS= apmd.c apmsubr.c CFLAGS+= -g -O2 -Wmissing-prototypes -Wall PROG= apmd +.else +NOPROG=yes +.endif + MAN= apmd.8 +MANSUBDIR=i386 .include <bsd.prog.mk> |