diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 | 
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 | 
| commit | 5b963fa12e8baf1eb6f491cfee6b7849d0aa1dba (patch) | |
| tree | 235e8fcbe852dee096eebfd2c176b6d10c0afa2c /gnu/usr.bin/man/manpath | |
| parent | de6669b2e213f787bd1accbabe263e199b35066f (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/man/manpath')
| -rw-r--r-- | gnu/usr.bin/man/manpath/Makefile | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/usr.bin/man/manpath/Makefile b/gnu/usr.bin/man/manpath/Makefile index 8e55b99a4364..0eaccef4e79e 100644 --- a/gnu/usr.bin/man/manpath/Makefile +++ b/gnu/usr.bin/man/manpath/Makefile @@ -2,10 +2,12 @@ PROG=	manpath  SRCS=	manpath.c  .if exists(${.OBJDIR}/../lib) -LDADD=  -L${.OBJDIR}/../lib -lman +LIBDESTDIR=	${.OBJDIR}/../lib  .else -LDADD=  -L${.CURDIR}/../lib/ -lman +LIBDESTDIR=	${.CURDIR}/../lib  .endif +DPADD=	${LIBDESTDIR}/libman.a +LDADD=	-L${LIBDESTDIR} -lman  .if exists(${.OBJDIR})  MAN1=${.OBJDIR}/manpath.1 @@ -13,7 +15,6 @@ MAN1=${.OBJDIR}/manpath.1  MAN1=${.CURDIR}/manpath.1  .endif -DPADD+=  ${MAN1}  CFLAGS+= -DMAIN -DSTDC_HEADERS -DPOSIX -DHAS_TROFF -DDO_UNCOMPRESS  CFLAGS+= -DALT_SYSTEMS -I${.CURDIR}/../lib -I${.OBJDIR}/../lib  CLEANFILES+=	${MAN1}  | 
