Makefile revision 1.8
1# $NetBSD: Makefile,v 1.8 2000/07/24 18:39:47 jdolecek 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} 9 10netboot.bin: ${PROG} 11 @size ${PROG} 12 dd ibs=32 skip=1 if=netboot.tmp of=$@ 13 14.include "../Makefile.booters" 15 16all: netboot.bin 17 18install: netboot.bin 19 ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${STRIPFLAG} ${INSTPRIV} \ 20 -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 21 22.include <bsd.prog.mk> 23