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/alpha/stand/installboot | |
parent | b1ea89b78a761c8dbf0a9e0832aeff2c5b5f384d (diff) |
cause traversal into arch & subdirectories for the purposes of manual page install...
Diffstat (limited to 'sys/arch/alpha/stand/installboot')
-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> |