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