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 | |
parent | 0169911007dd647d7f43166cf05f9eb3c4b1a850 (diff) |
allow recursion into here for man pages on other arch's
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/stand/Makefile | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/stand/installboot/Makefile | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/sys/arch/sparc64/stand/Makefile b/sys/arch/sparc64/stand/Makefile index bdc2ae060d3..621784028c3 100644 --- a/sys/arch/sparc64/stand/Makefile +++ b/sys/arch/sparc64/stand/Makefile @@ -1,8 +1,10 @@ -# $OpenBSD: Makefile,v 1.3 2001/08/18 16:31:53 jason Exp $ +# $OpenBSD: Makefile,v 1.4 2001/09/07 15:35:23 jason Exp $ .if ${MACHINE} == "sparc64" SUBDIR= bootblk libsa libkern libz ofwboot ofwboot.net .endif +SUBDIR+= installboot + .include <bsd.subdir.mk> 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 |