Makefile revision 1.1
11.1Sscw# $NetBSD: Makefile,v 1.1 2002/02/27 21:02:26 scw Exp $ 21.1Sscw 31.1SscwSRCS= boot.c conf.c devopen.c 41.1SscwPROG= netboot.tmp 51.1SscwLIBS= ${LIBSA} 61.1SscwDPADD= ${LIBS} 71.1SscwCLEANFILES+= netboot.bin 81.1Sscw 91.1Sscwnetboot.bin: ${PROG} 101.1Sscw ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 111.1Sscw 121.1Sscw.include "../Makefile.booters" 131.1Sscw 141.1Sscwall realall: netboot.bin 151.1Sscw 161.1Sscwinstall: netboot.bin 171.1Sscw ${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 181.1Sscw ${.OBJDIR}/netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 191.1Sscw 201.1Sscw.include <bsd.prog.mk> 21