Makefile revision 1.12
1#	from: @(#)Makefile	8.1 (Berkeley) 6/10/93
2#	$NetBSD: Makefile,v 1.12 2000/12/04 21:25:58 scw Exp $
3
4CLEANFILES+=stboot bootst bootst.bug
5
6PROG=bootst.bug
7SRCS=   boot.c conf.c dev_tape.c rawfs.c
8LIBS=	${LIBSA} ${LIBBUG}
9SRTOBJ=
10DPADD=	${LIBS} ${WRTVID}
11
12bootst stboot: ${PROG} ${WRTVID}
13	@${SIZE} bootst.bug
14	@${STRIP} bootst.bug
15	@${WRTVID} bootst.bug # creates bootst  and stboot
16
17proginstall::
18	${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${STRIPFLAG} ${INSTPRIV} \
19	   -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} bootst ${DESTDIR}${MDEC_DIR}
20	${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${STRIPFLAG} ${INSTPRIV} \
21	   -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} stboot ${DESTDIR}${MDEC_DIR}
22
23.include "../Makefile.booters"
24
25all realall: bootst
26.include <bsd.prog.mk>
27