1# $NetBSD: Makefile,v 1.13 2001/06/10 14:12:49 scw Exp $ 2 3DEFS= -DSUN_BOOTPARAMS 4 5SRCS= boot.c conf.c devopen.c 6SRCS+= if_ie.c if_le.c 7PROG= netboot.tmp 8LIBS= ${LIBSA} ${LIBBUG} 9DPADD= ${LIBS} 10CLEANFILES+= netboot.bin 11 12netboot.bin: ${PROG} 13 ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 14 15.include "../Makefile.booters" 16 17all realall: netboot.bin 18 19install: netboot.bin 20 ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${STRIPFLAG} ${INSTPRIV} \ 21 -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${.OBJDIR}/netboot.bin \ 22 ${DESTDIR}${MDEC_DIR}/netboot 23 24.include <bsd.prog.mk> 25