Makefile revision 1.10
1# $NetBSD: Makefile,v 1.10 2000/07/28 20:08:21 scw Exp $ 2 3DEFS= -DSUN_BOOTPARAMS 4 5SRCS= boot.c conf.c devopen.c dev_net.c 6SRCS+= if_ie.c if_le.c 7PROG= netboot.tmp 8LIBS= ${LIBSA} ${LIBBUG} 9CLEANFILES+= netboot.bin 10 11netboot.bin: ${PROG} 12 @size ${PROG} 13 dd ibs=32 skip=1 if=netboot.tmp of=$@ 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} netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 22 23.include <bsd.prog.mk> 24