diff options
Diffstat (limited to 'sys/arch/sparc/stand/installboot/Makefile')
-rw-r--r-- | sys/arch/sparc/stand/installboot/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
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> |