diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1999-01-20 02:08:07 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1999-01-20 02:08:07 +0000 |
| commit | e633c437efd6056619a0cd7e05c59a028c378b61 (patch) | |
| tree | 1cd342873fb00d2d94014221833ec334a5c1ad51 /gnu | |
| parent | f7124908f3c4f2670671d3dc615573be815ae01c (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/texinfo/Makefile.inc | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.inc b/gnu/usr.bin/texinfo/Makefile.inc index 80ba03860de2..08a475c92413 100644 --- a/gnu/usr.bin/texinfo/Makefile.inc +++ b/gnu/usr.bin/texinfo/Makefile.inc @@ -1,13 +1,17 @@ -# $Id$ +# $Id: Makefile.inc,v 1.8 1999/01/14 20:00:26 markm Exp $ -TXIDIR= ${.CURDIR}/../../../../contrib/texinfo +TXIDIR= ${.CURDIR}/../../../../contrib/texinfo + +.if exists(${.OBJDIR}/../libintl) +LIBINTL= ${.OBJDIR}/../libintl/libintl.a +.else +LIBINTL= ${.CURDIR}/../libintl/libintl.a +.endif .if exists(${.OBJDIR}/../libtxi) -LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a -LIBINTL = ${.OBJDIR}/../libintl/libintl.a +LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a .else -LIBTXI= ${.CURDIR}/../libtxi/libtxi.a -LIBINTL = ${.CURDIR}/../libintl/libintl.a +LIBTXI= ${.CURDIR}/../libtxi/libtxi.a .endif -.include "../../Makefile.inc" +.include "../Makefile.inc" |
