summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/man/whatis/Makefile
blob: b3cd6a8b34a13680c9253a6199c1ac367bcd67c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.if exists(${.CURDIR}/obj)
MAN1=  ${.CURDIR}/obj/whatis.1
TARG=  ${.CURDIR}/obj/whatis
.else
MAN1=  ${.CURDIR}/whatis.1
TARG=  ${.CURDIR}/whatis
.endif

MANDEPEND=	${MAN1}

all:	${TARG} ${MAN1}

depend rcsfreeze tags all:
	@echo -n

cleandir: clean
	cd ${.CURDIR}; rm -rf obj;

clean:
	@rm -f ${TARG} ${MAN1}

${TARG}: ${.CURDIR}/whatis.sh
	sed -e 's,%libdir%,${libdir},' -e 's,%bindir%,${bindir},' \
	    -e 's,%pager%,${pager},' \
		${.CURDIR}/whatis.sh > ${TARG}

${MAN1}: ${.CURDIR}/whatis.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}/whatis.man > ${MAN1}

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>
.else
maninstall:
.endif
.endif
OpenPOWER on IntegriCloud