diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-26 11:50:47 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-05-26 11:50:47 +0000 |
commit | e0dc29e01b4cd40760463e45262ff679232be5fc (patch) | |
tree | 7c63f444f51c0235dc962fa69b7561b5bdec1dac /sys/arch/i386/stand/installboot | |
parent | 6d62b40d7f8e4855ce7b115ca774e8e346c14fec (diff) |
more portable manual pages
Diffstat (limited to 'sys/arch/i386/stand/installboot')
-rw-r--r-- | sys/arch/i386/stand/installboot/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/i386/stand/installboot/Makefile b/sys/arch/i386/stand/installboot/Makefile index 5a00aa2a871..f2e05dd9840 100644 --- a/sys/arch/i386/stand/installboot/Makefile +++ b/sys/arch/i386/stand/installboot/Makefile @@ -1,14 +1,19 @@ -# $OpenBSD: Makefile,v 1.7 2000/05/25 21:55:01 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 2000/05/26 11:50:46 deraadt Exp $ -PROG= installboot MAN= installboot.8 MANSUBDIR=/i386 +.if ${MACHINE} == "i386" +PROG= installboot + LDADD= -lutil DPADD= ${LIBUTIL} # Need this to work in the miniroot LDSTATIC= -static SADIR= ${.CURDIR}/.. +.else +NOPROG= +.endif .include <bsd.prog.mk> |