diff options
Diffstat (limited to 'sys/arch/mvmeppc/stand/installboot/Makefile')
-rw-r--r-- | sys/arch/mvmeppc/stand/installboot/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/arch/mvmeppc/stand/installboot/Makefile b/sys/arch/mvmeppc/stand/installboot/Makefile new file mode 100644 index 00000000000..d13f574cd03 --- /dev/null +++ b/sys/arch/mvmeppc/stand/installboot/Makefile @@ -0,0 +1,19 @@ +# $OpenBSD: Makefile,v 1.1 2001/06/26 21:58:03 smurph Exp $ + +.if ${MACHINE} == "mvmeppc" +PROG= installboot +MAN= installboot.8 +MANSUBDIR=/mvme88k + +BINDIR=/usr/mdec +DPADD=${LIBUTIL} +LDADD=-lutil +CFLAGS+=-O0 +# Need this to work in the miniroot +LDSTATIC=-static +.else +NOPROG= +.endif + +.include <bsd.prog.mk> + |