55 lines
1.1 KiB
Makefile
55 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.9 2003/07/14 09:00:33 tron Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
|
|
|
|
WARNS= 1
|
|
DBG= -Os
|
|
|
|
RESCUEDIR= /rescue
|
|
CRUNCHBIN= rescue
|
|
CRUNCHENV= RESCUEDIR=${RESCUEDIR}
|
|
SMALLPROG= 0
|
|
LISTS= ${.CURDIR}/list
|
|
TARGETDIR= ${DESTDIR}/rescue
|
|
PARSELISTENV+= TARGETDIR=${TARGETDIR:Q}
|
|
|
|
|
|
.for f in bim edlabel fdisk ldconfig pdisk
|
|
PROG_${f}!= cd ${NETBSDSRCDIR}/sbin/${f} && ${MAKE} -V PROG
|
|
.if (${PROG_${f}} != "")
|
|
LISTS+= ${.CURDIR}/list.${f}
|
|
.endif
|
|
.endfor
|
|
|
|
.if (${OBJECT_FMT} == "ELF")
|
|
PARSELISTENV+= LDD_CMD=ldd_elf
|
|
.else
|
|
PARSELISTENV+= LDD_CMD=ldd_aout
|
|
.endif
|
|
|
|
|
|
# Specially built objects to override the behaviour of
|
|
# various library functions
|
|
#
|
|
OVERRIDEOBJS= rcmd.o
|
|
.PATH: ${NETBSDSRCDIR}/lib/libc/net
|
|
CPPFLAGS+= -I${.CURDIR} -DRESCUEDIR=\"${RESCUEDIR}\"
|
|
|
|
LIBOVERRIDE= liboverride.o
|
|
${LIBOVERRIDE}: ${OVERRIDEOBJS}
|
|
${LD} -r -o $@ ${OVERRIDEOBJS}
|
|
|
|
${CRUNCHBIN}: ${LIBOVERRIDE}
|
|
|
|
CLEANFILES+= rescue.unstripped
|
|
|
|
.include "${DISTRIBDIR}/common/Makefile.crunch"
|
|
|
|
realall: ${CRUNCHBIN}
|
|
|
|
install: ${CRUNCHBIN}
|
|
${PARSELIST} -v mode=install ${LISTS} | ${MAKE} -f - install
|
|
|
|
.include <bsd.prog.mk>
|