1 # $NetBSD: Makefile,v 1.1 2002/02/27 21:02:26 scw Exp $ 2 3 SRCS= boot.c conf.c devopen.c 4 PROG= netboot.tmp 5 LIBS= ${LIBSA} 6 DPADD= ${LIBS} 7 CLEANFILES+= netboot.bin 8 9 netboot.bin: ${PROG} 10 ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 11 12 .include "../Makefile.booters" 13 14 all realall: netboot.bin 15 16 install: netboot.bin 17 ${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 18 ${.OBJDIR}/netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 19 20 .include <bsd.prog.mk> 21