diff options
author | swallace <swallace@FreeBSD.org> | 1994-09-29 21:18:17 +0000 |
---|---|---|
committer | swallace <swallace@FreeBSD.org> | 1994-09-29 21:18:17 +0000 |
commit | a228caab3dd814fe0ac14cc6f1623adb7197a986 (patch) | |
tree | d4bcdd29f9e3bf63e28511817c61b56ca70cceb1 /usr.bin/strip | |
parent | ae9edbb62f6fe30d47cb241f895757aff7b9486b (diff) | |
download | FreeBSD-src-a228caab3dd814fe0ac14cc6f1623adb7197a986.zip FreeBSD-src-a228caab3dd814fe0ac14cc6f1623adb7197a986.tar.gz |
Define MAN1 man page variable.
Get rid of install: and instead add an afterinstall: so that man page
is properly installed
Diffstat (limited to 'usr.bin/strip')
-rw-r--r-- | usr.bin/strip/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/strip/Makefile b/usr.bin/strip/Makefile index c597a98..1a699e7 100644 --- a/usr.bin/strip/Makefile +++ b/usr.bin/strip/Makefile @@ -1,10 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= strip +MAN1= strip.1 +STRIP= -install: - install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} strip \ - ${DESTDIR}${BINDIR} +afterinstall: ./strip ${DESTDIR}${BINDIR}/strip .include <bsd.prog.mk> |