diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-25 21:55:10 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-25 21:55:10 +0000 |
commit | fe5846e3848b06916e3ea6dad5df5136996faeef (patch) | |
tree | e5e1e508c7b16df9793392bc136e8ab03710df68 /sys/arch/sparc | |
parent | b1ea89b78a761c8dbf0a9e0832aeff2c5b5f384d (diff) |
cause traversal into arch & subdirectories for the purposes of manual page install...
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/stand/Makefile | 8 | ||||
-rw-r--r-- | sys/arch/sparc/stand/installboot/Makefile | 11 |
2 files changed, 14 insertions, 5 deletions
diff --git a/sys/arch/sparc/stand/Makefile b/sys/arch/sparc/stand/Makefile index 92f5336714b..b43dcbf7f8e 100644 --- a/sys/arch/sparc/stand/Makefile +++ b/sys/arch/sparc/stand/Makefile @@ -1,6 +1,10 @@ -# $OpenBSD: Makefile,v 1.6 1997/09/17 10:46:07 downsj Exp $ +# $OpenBSD: Makefile,v 1.7 2000/05/25 21:55:07 deraadt Exp $ # $NetBSD: Makefile,v 1.15 1997/06/01 03:39:03 mrg Exp $ -SUBDIR= libsa libkern libz boot bootxx installboot binstall +.if ${MACHINE} == "sparc" +SUBDIR= libsa libkern libz boot bootxx binstall +.endif + +SUBDIR= installboot .include <bsd.subdir.mk> diff --git a/sys/arch/sparc/stand/installboot/Makefile b/sys/arch/sparc/stand/installboot/Makefile index c79f2c623e3..98ac035b098 100644 --- a/sys/arch/sparc/stand/installboot/Makefile +++ b/sys/arch/sparc/stand/installboot/Makefile @@ -1,9 +1,14 @@ -# $OpenBSD: Makefile,v 1.4 1999/07/08 20:11:54 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 2000/05/25 21:55:07 deraadt Exp $ -BINDIR= /usr/sbin -PROG= installboot MAN= installboot.8 MANSUBDIR=/sparc +.if ${MACHINE} == "sparc" +BINDIR= /usr/sbin +PROG= installboot +.else +NOPROG= +.endif + .include <bsd.prog.mk> |