21 lines
444 B
Makefile
21 lines
444 B
Makefile
# $NetBSD: Makefile,v 1.4 2005/12/11 12:18:20 christos Exp $
|
|
|
|
SRCS= boot.c conf.c devopen.c
|
|
PROG= boot.elf
|
|
LIBS= ${LIBSA}
|
|
DPADD= ${LIBS}
|
|
CLEANFILES+= boot.bin
|
|
|
|
boot.bin: ${PROG}
|
|
${OBJCOPY} -O binary ${.OBJDIR}/boot.elf $@
|
|
|
|
.include "../Makefile.booters"
|
|
|
|
all realall: boot.bin
|
|
|
|
install: boot.bin
|
|
${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.OBJDIR}/boot.bin ${DESTDIR}${MDEC_DIR}/boot
|
|
|
|
.include <bsd.prog.mk>
|