1 # $NetBSD: Makefile,v 1.11 2000/11/30 22:26:27 scw Exp $ 2 3 DEFS= -DSUN_BOOTPARAMS 4 5 SRCS= boot.c conf.c devopen.c dev_net.c 6 SRCS+= if_ie.c if_le.c 7 PROG= netboot.tmp 8 LIBS= ${LIBSA} ${LIBBUG} 9 CLEANFILES+= netboot.bin 10 11 12 netboot.bin: ${PROG} 13 ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 14 15 .include "../Makefile.booters" 16 17 all realall: netboot.bin 18 19 install: 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