b9de8f2010
back (as of man.c,v 1.45), change the meaning of the -m option from poorly documented and badly coded "alternate system" to a much more useful "different architecture for the same system". PR: docs/31261
18 lines
394 B
Makefile
18 lines
394 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= manpath
|
|
|
|
DPADD= ${LIBMAN}
|
|
LDADD= ${LIBMAN}
|
|
|
|
CFLAGS+= -DMAIN -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_UNCOMPRESS
|
|
CFLAGS+= -I${.CURDIR}/../lib -I${.OBJDIR}/../lib
|
|
CLEANFILES+= manpath.1
|
|
|
|
manpath.1: ${.CURDIR}/manpath.man
|
|
@${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \
|
|
sed -e 's,%manpath_config_file%,/etc/manpath.config,' \
|
|
${.ALLSRC} > ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|