NetBSD/sys/arch/mvme68k/stand/bootst/Makefile

28 lines
721 B
Makefile
Raw Normal View History

1996-05-18 00:06:45 +04:00
# from: @(#)Makefile 8.1 (Berkeley) 6/10/93
2002-02-09 12:35:59 +03:00
# $NetBSD: Makefile,v 1.14 2002/02/09 09:36:00 lukem Exp $
1996-05-18 00:06:45 +04:00
CLEANFILES+=stboot bootst bootst.bug
PROG=bootst.bug
SRCS= boot.c conf.c dev_tape.c rawfs.c
1996-05-18 00:06:45 +04:00
LIBS= ${LIBSA} ${LIBBUG}
SRTOBJ=
DPADD= ${LIBS} ${WRTVID}
1996-05-18 00:06:45 +04:00
bootst stboot: ${PROG} ${WRTVID}
@${SIZE} bootst.bug
@${STRIP} bootst.bug
@${OBJCOPY} --output-target=binary bootst.bug bootst
@${WRTVID} bootst # creates stboot
1996-05-18 00:06:45 +04:00
proginstall::
2002-02-09 12:35:59 +03:00
${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
bootst ${DESTDIR}${MDEC_DIR}
${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
stboot ${DESTDIR}${MDEC_DIR}
.include "../Makefile.booters"
1996-05-18 00:06:45 +04:00
all realall: bootst
1996-05-18 00:06:45 +04:00
.include <bsd.prog.mk>