1 # $NetBSD: Makefile,v 1.10 2000/07/28 20:08:21 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 netboot.bin: ${PROG} 12 @size ${PROG} 13 dd ibs=32 skip=1 if=netboot.tmp of=$@ 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} netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 22 23 .include <bsd.prog.mk> 24