Sync usage with man page.
[netbsd-mini2440.git] / sys / arch / mvmeppc / stand / boot / Makefile
bloba57ad94a3e4c6b47b45c0346cac4c5d481872cd5
1 # $NetBSD: Makefile,v 1.2.16.3 2004/09/21 13:19:24 skrll Exp $
3 SRCS= boot.c conf.c devopen.c
4 PROG= boot.elf
5 LIBS= ${LIBSA}
6 DPADD= ${LIBS}
7 CLEANFILES+= boot.bin
9 boot.bin: ${PROG}
10 ${OBJCOPY} -O binary ${.OBJDIR}/boot.elf $@
12 .include "../Makefile.booters"
14 all realall: boot.bin
16 install: boot.bin
17 ${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
18 ${.OBJDIR}/boot.bin ${DESTDIR}${MDEC_DIR}/boot
20 .include <bsd.prog.mk>