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/mvme68k/stand | |
parent | b1ea89b78a761c8dbf0a9e0832aeff2c5b5f384d (diff) |
cause traversal into arch & subdirectories for the purposes of manual page install...
Diffstat (limited to 'sys/arch/mvme68k/stand')
-rw-r--r-- | sys/arch/mvme68k/stand/Makefile | 8 | ||||
-rw-r--r-- | sys/arch/mvme68k/stand/installboot/Makefile | 11 |
2 files changed, 12 insertions, 7 deletions
diff --git a/sys/arch/mvme68k/stand/Makefile b/sys/arch/mvme68k/stand/Makefile index a3872b95ee0..d27eb82fd6b 100644 --- a/sys/arch/mvme68k/stand/Makefile +++ b/sys/arch/mvme68k/stand/Makefile @@ -1,6 +1,10 @@ -# $OpenBSD: Makefile,v 1.5 2000/03/03 00:54:52 todd Exp $ +# $OpenBSD: Makefile,v 1.6 2000/05/25 21:55:03 deraadt Exp $ +.if ${MACHINE} == "mvme68k" SUBDIR= bugcrt libbug libsa libz sboot netboot bootxx bootsd bootst \ - installboot prtvid wrtvid + prtvid wrtvid +.endif + +SUBDIR+=installboot .include <bsd.subdir.mk> diff --git a/sys/arch/mvme68k/stand/installboot/Makefile b/sys/arch/mvme68k/stand/installboot/Makefile index c6d8145831e..3f969dabdc6 100644 --- a/sys/arch/mvme68k/stand/installboot/Makefile +++ b/sys/arch/mvme68k/stand/installboot/Makefile @@ -1,15 +1,16 @@ -# $OpenBSD: Makefile,v 1.3 1999/09/26 18:05:32 smurph Exp $ +# $OpenBSD: Makefile,v 1.4 2000/05/25 21:55:03 deraadt Exp $ -PROG= installboot MAN= installboot.8 MANSUBDIR=/mvme68k +.if ${MACHINE} == "mvme68k" +PROG= installboot BINDIR=/usr/mdec DPADD=${LIBUTIL} LDADD=-lutil - -# Need this to work in the miniroot - LDSTATIC=-static +.else +NOPROG= +.endif .include <bsd.prog.mk> |