Home | History | Annotate | Line # | Download | only in rescue
Makefile revision 1.2
      1 #	$NetBSD: Makefile,v 1.2 2002/08/23 03:25:21 lukem Exp $
      2 
      3 .include <bsd.own.mk>
      4 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
      5 
      6 WARNS=		1
      7 DBG=		-Os
      8 
      9 CRUNCHBIN=	rescue
     10 CRUNCHENV=	RESCUEDIR=/rescue
     11 LISTS=		${.CURDIR}/list
     12 TARGETDIR=	${DESTDIR}/rescue
     13 PARSELISTENV+=  TARGETDIR=${TARGETDIR:Q}
     14 
     15 
     16 .for f in bim edlabel fdisk ldconfig pdisk
     17 PROG_${f}!=	cd ${NETBSDSRCDIR}/sbin/${f} && ${MAKE} -V PROG
     18 .if (${PROG_${f}} != "")
     19 LISTS+=		${.CURDIR}/list.${f}
     20 .endif
     21 .endfor
     22 
     23 .if (${OBJECT_FMT} == "ELF")
     24 PARSELISTENV+=	LDD_CMD=ldd_elf
     25 .else
     26 PARSELISTENV+=	LDD_CMD=ldd_aout
     27 .endif
     28 
     29 
     30 .include "${DISTRIBDIR}/common/Makefile.crunch"
     31 
     32 realall: ${CRUNCHBIN}
     33 
     34 install: ${CRUNCHBIN}
     35 	${PARSELIST} -v mode=install ${LISTS} | ${MAKE} -f - install
     36 
     37 .include <bsd.prog.mk>
     38