Makefile revision 1.12
1# $NetBSD: Makefile,v 1.12 2000/12/04 21:25:58 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} 9DPADD= ${LIBS} 10CLEANFILES+= netboot.bin 11 12 13netboot.bin: ${PROG} 14 ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 15 16.include "../Makefile.booters" 17 18all realall: netboot.bin 19 20install: netboot.bin 21 ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} ${STRIPFLAG} ${INSTPRIV} \ 22 -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${.OBJDIR}/netboot.bin \ 23 ${DESTDIR}${MDEC_DIR}/netboot 24 25.include <bsd.prog.mk> 26