diff options
Diffstat (limited to 'gnu/man/manpath/Makefile')
| -rw-r--r-- | gnu/man/manpath/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/man/manpath/Makefile b/gnu/man/manpath/Makefile new file mode 100644 index 000000000000..c86bf1be8463 --- /dev/null +++ b/gnu/man/manpath/Makefile @@ -0,0 +1,30 @@ +PROG= manpath +SRCS= manpath.c + +.if exists(${.CURDIR}/../lib/obj) +LDADD= -L${.CURDIR}/../lib/obj -lman +.else +LDADD= -L${.CURDIR}/../lib/ -lman +.endif + +.if exists(${.CURDIR}/obj) +MAN1=${.CURDIR}/obj/manpath.1 +.else +MAN1=${.CURDIR}/manpath.1 +.endif + +DPADD+= ${MAN1} +CFLAGS+= -DMAIN -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_UNCOMPRESS +CFLAGS+= -DALT_SYSTEMS -I${.CURDIR}/../lib -I${.CURDIR}/../lib/obj +CLEANFILES+= ${MAN1} + +${MAN1}: ${.CURDIR}/manpath.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}/manpath.man > ${MAN1} + +afterinstall: + install -c -o bin -g bin -m 555 ${.CURDIR}/manpath.config ${DESTDIR}${manpath_config_file} + +.include <bsd.prog.mk> |
