freebsd-dev/gnu/usr.bin/man/apropos/Makefile
Bruce Evans 9c0dc173cc Change install' to ${INSTALL}' so that default install flags can be
specified in the top level Makefiles.
1995-07-25 00:37:58 +00:00

45 lines
1007 B
Makefile

# $Id: Makefile,v 1.8 1994/08/28 18:33:42 bde Exp $
.if exists(${.CURDIR}/obj)
MAN1= ${.CURDIR}/obj/apropos.1
TARG= ${.CURDIR}/obj/apropos
.else
MAN1= ${.CURDIR}/apropos.1
TARG= ${.CURDIR}/apropos
.endif
MANDEPEND= ${MAN1}
CLEANFILES+= ${TARG} ${MAN1}
all: ${TARG} ${MAN1}
depend rcsfreeze tags all:
@echo -n
${TARG}: ${.CURDIR}/apropos.sh
sed -e 's,%libdir%,${libdir},' -e 's,%bindir%,${bindir},' \
-e 's,%pager%,${pager},' \
${.CURDIR}/apropos.sh > ${.TARGET}
${MAN1}: ${.CURDIR}/apropos.man
sed -e 's,%libdir%,${libdir},' -e 's,%bindir%,${bindir},' \
-e 's,%pager%,${pager},' -e 's,%troff%,${troff},' \
-e 's,%manpath_config_file%,${manpath_config_file},' \
${.CURDIR}/apropos.man > ${.TARGET}
install: ${TARG} maninstall
${INSTALL} -c -o bin -g bin -m 555 ${TARG} ${DESTDIR}/usr/bin
.include "../Makefile.inc"
.if make(maninstall) || make(install)
.if !defined(NOMAN)
.include <bsd.man.mk>
.elif !target(maninstall)
maninstall:
.endif
.endif
.include <bsd.prog.mk>