diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-09-07 15:35:24 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-09-07 15:35:24 +0000 |
commit | d3ae3dadfbbe747a8bb5c277bdb190cc0deddd77 (patch) | |
tree | 626aeef6ffef07f395e2a201d6bf592529289d6c /sys/arch/sparc64/stand/installboot/Makefile | |
parent | 0169911007dd647d7f43166cf05f9eb3c4b1a850 (diff) |
allow recursion into here for man pages on other arch's
Diffstat (limited to 'sys/arch/sparc64/stand/installboot/Makefile')
-rw-r--r-- | sys/arch/sparc64/stand/installboot/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/arch/sparc64/stand/installboot/Makefile b/sys/arch/sparc64/stand/installboot/Makefile index 4e072b055be..bb44b4b5b6e 100644 --- a/sys/arch/sparc64/stand/installboot/Makefile +++ b/sys/arch/sparc64/stand/installboot/Makefile @@ -1,12 +1,17 @@ -# $OpenBSD: Makefile,v 1.3 2001/09/06 19:49:17 jason Exp $ +# $OpenBSD: Makefile,v 1.4 2001/09/07 15:35:23 jason Exp $ # $NetBSD: Makefile,v 1.13 2000/08/16 08:24:01 mrg Exp $ .include <bsd.own.mk> -WARNS?=1 +MAN= installboot.8 +MANSUBDIR=/sparc64 + +.if ${MACHINE} == "sparc64" PROG= installboot SRCS= installboot.c loadfile.c -MAN= installboot.8 +.else +NOPROG= +.endif LIBSA_I=${.CURDIR}/../../../../lib/libsa |