diff options
Diffstat (limited to 'sys/arch/alpha/stand/installboot/Makefile')
-rw-r--r-- | sys/arch/alpha/stand/installboot/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/arch/alpha/stand/installboot/Makefile b/sys/arch/alpha/stand/installboot/Makefile index ab876f2740d..fc9271de5bf 100644 --- a/sys/arch/alpha/stand/installboot/Makefile +++ b/sys/arch/alpha/stand/installboot/Makefile @@ -1,15 +1,18 @@ -# $OpenBSD: Makefile,v 1.5 1997/05/05 06:01:54 millert Exp $ +# $OpenBSD: Makefile,v 1.6 2000/05/25 21:54:40 deraadt Exp $ # $NetBSD: Makefile,v 1.2 1996/11/06 23:09:13 cgd Exp $ .PATH: ${.CURDIR}/.. -PROG= installboot -BINDIR= /usr/mdec - MAN= installboot.8 MANSUBDIR=/alpha +.if ${MACHINE} == "alpha" +PROG= installboot +BINDIR= /usr/mdec DPADD+= ${LIBUTIL} LDADD+= -lutil +.else +NOPROG= +.endif .include <bsd.prog.mk> |