Makefile revision 1.1
1# $NetBSD: Makefile,v 1.1 2002/02/27 21:02:26 scw Exp $ 2 3SRCS= boot.c conf.c devopen.c 4PROG= netboot.tmp 5LIBS= ${LIBSA} 6DPADD= ${LIBS} 7CLEANFILES+= netboot.bin 8 9netboot.bin: ${PROG} 10 ${OBJCOPY} -O binary ${.OBJDIR}/netboot.tmp $@ 11 12.include "../Makefile.booters" 13 14all realall: netboot.bin 15 16install: netboot.bin 17 ${INSTALL_FILE} ${STRIPFLAG} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ 18 ${.OBJDIR}/netboot.bin ${DESTDIR}${MDEC_DIR}/netboot 19 20.include <bsd.prog.mk> 21