Home | History | Annotate | Line # | Download | only in netboot
Makefile revision 1.12
      1 #	$NetBSD: Makefile,v 1.12 2000/12/04 21:25:58 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 DPADD=	${LIBS}
     10 CLEANFILES+= netboot.bin
     11 
     12 
     13 netboot.bin: ${PROG}
     14 	${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@
     15 
     16 .include "../Makefile.booters"
     17 
     18 all realall: netboot.bin
     19 
     20 install: 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