14 lines
357 B
Makefile
14 lines
357 B
Makefile
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
|
|
# $Id: Makefile,v 1.10 1995/06/10 20:56:34 mycroft Exp $
|
|
|
|
PROG= strip
|
|
|
|
realinstall:
|
|
install -c -o ${BINOWN} -g ${BINGRP} -m 600 strip \
|
|
${DESTDIR}${BINDIR}
|
|
./strip ${DESTDIR}${BINDIR}/strip
|
|
chmod ${BINMODE} ${DESTDIR}${BINDIR}/strip
|
|
-if [ "${COPY}" = "" ]; then rm -f ./strip; fi
|
|
|
|
.include <bsd.prog.mk>
|