6a18627411
libraries in LDADD so that `make checkdpadd' doesn't report non-errors. Fixed some style bugs (the usual ones for DPADD and LDADD, and misformatting of $FreeBSD$).
32 lines
643 B
Makefile
32 lines
643 B
Makefile
# $FreeBSD$
|
|
|
|
.include "../Makefile.inc0"
|
|
|
|
.PATH: ${SRCDIR}/binutils
|
|
|
|
PROG= strip
|
|
SRCS= objcopy.c is-strip.c
|
|
CFLAGS+= -I${.CURDIR}/${RELTOP}/libbinutils
|
|
CFLAGS+= -I${SRCDIR}/binutils
|
|
DPADD= ${RELTOP}/libbinutils/libbinutils.a
|
|
DPADD+= ${RELTOP}/libbfd/libbfd.a
|
|
DPADD+= ${RELTOP}/libiberty/libiberty.a
|
|
LDADD= ${DPADD}
|
|
CLEANFILES+= maybe_stripped
|
|
|
|
all: maybe_stripped
|
|
|
|
maybe_stripped: strip
|
|
cp strip maybe_stripped
|
|
.if defined(STRIP)
|
|
.if ${STRIP:M-s} != ""
|
|
-strip maybe_stripped
|
|
.endif
|
|
.endif
|
|
|
|
realinstall:
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
maybe_stripped ${DESTDIR}${BINDIR}/strip
|
|
|
|
.include <bsd.prog.mk>
|