15d0bb0b98
libraries so that `ld -f' in can create correct dependencies for yet-to-be-built libraries. Get the default BINDIR correctly (by including ../Makefile.inc recursively.
25 lines
697 B
Makefile
25 lines
697 B
Makefile
PROG= manpath
|
|
SRCS= manpath.c
|
|
MAN1= manpath.1
|
|
|
|
DPADD= ${LIBMAN}
|
|
LDADD= ${LIBMAN}
|
|
|
|
CFLAGS+= -DMAIN -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_UNCOMPRESS
|
|
CFLAGS+= -DALT_SYSTEMS -I${.CURDIR}/../lib -I${.OBJDIR}/../lib
|
|
CLEANFILES+= ${MAN1}
|
|
MANDEPEND+= ${MAN1}
|
|
|
|
${MAN1}: ${.CURDIR}/manpath.man
|
|
@${ECHO} Making ${.TARGET:T} from ${.ALLSRC:T}; \
|
|
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 644 ${.CURDIR}/manpath.config \
|
|
${DESTDIR}${manpath_config_file}.sample
|
|
|
|
.include <bsd.prog.mk>
|