eb26b35651
after a clean or cleandir.
20 lines
372 B
Makefile
20 lines
372 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= strip
|
|
MAN1= strip.1
|
|
CLEANFILES += maybe_stripped
|
|
|
|
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
|
|
|
|
.include <bsd.prog.mk>
|