1994-05-27 12:33:43 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
|
|
|
|
PROG= strip
|
1994-09-29 21:18:17 +00:00
|
|
|
MAN1= strip.1
|
1995-08-01 21:53:35 +00:00
|
|
|
CLEANFILES += maybe_stripped
|
1994-05-27 12:33:43 +00:00
|
|
|
|
1995-07-24 22:50:17 +00:00
|
|
|
all: maybe_stripped
|
|
|
|
|
|
|
|
maybe_stripped: strip
|
|
|
|
cp -p strip maybe_stripped
|
|
|
|
.if ${STRIP:M-s} != ""
|
|
|
|
./strip maybe_stripped
|
|
|
|
.endif
|
|
|
|
|
|
|
|
install: maninstall
|
|
|
|
${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
|
|
maybe_stripped ${DESTDIR}${BINDIR}/strip
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|