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/sun3/stand | |
parent | 6d62b40d7f8e4855ce7b115ca774e8e346c14fec (diff) |
more portable manual pages
Diffstat (limited to 'sys/arch/sun3/stand')
-rw-r--r-- | sys/arch/sun3/stand/installboot/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/sun3/stand/installboot/Makefile b/sys/arch/sun3/stand/installboot/Makefile index 7187eae6ad6..4b86f573bcb 100644 --- a/sys/arch/sun3/stand/installboot/Makefile +++ b/sys/arch/sun3/stand/installboot/Makefile @@ -1,11 +1,16 @@ # $NetBSD: Makefile,v 1.4 1995/10/08 23:44:02 gwr Exp $ -PROG= installboot MAN= installboot.8 BINDIR=/usr/mdec MANSUBDIR=/sun3 +.if ${MACHINE} == "sun3" +PROG= installboot + # Need this to work in the miniroot LDSTATIC= -static +.else +NOPROG= +.endif .include <bsd.prog.mk> |