Makefile revision 1.13
1# $NetBSD: Makefile,v 1.13 2005/01/10 04:00:50 lukem Exp $ 2 3.include <bsd.own.mk> 4.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib" 5 6WARNS= 1 7DBG= -Os 8 9RESCUEDIR= /rescue 10CRUNCHBIN= rescue 11CRUNCHENV= RESCUEDIR=${RESCUEDIR} 12SMALLPROG= 0 13LISTS= ${.CURDIR}/list 14TARGETDIR= ${DESTDIR}/rescue 15PARSELISTENV+= TARGETDIR=${TARGETDIR:Q} 16 17 18.for f in bim edlabel fdisk ldconfig pdisk 19PROG_${f}!= cd ${NETBSDSRCDIR}/sbin/${f} && ${MAKE} -V PROG 20.if (${PROG_${f}} != "") 21LISTS+= ${.CURDIR}/list.${f} 22.endif 23.endfor 24 25.if ${USE_INET6} != "no" 26LISTS+= ${.CURDIR}/list.inet6 27.endif 28 29.if (${OBJECT_FMT} == "ELF") 30PARSELISTENV+= LDD_CMD=ldd_elf 31.else 32PARSELISTENV+= LDD_CMD=ldd_aout 33.endif 34 35CLEANFILES+= rescue.unstripped 36 37.include "${DISTRIBDIR}/common/Makefile.crunch" 38 39realall: ${CRUNCHBIN} 40 41install: ${CRUNCHBIN} 42 ${PARSELIST} -v mode=install ${LISTS} | ${MAKE} -f - install 43 44.include <bsd.prog.mk> 45