diff options
author | bde <bde@FreeBSD.org> | 1997-04-07 17:21:19 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-07 17:21:19 +0000 |
commit | 506312bdd08f73c2b066b2aa82387aa0810222bc (patch) | |
tree | a2d91a67371378d995c20bf67d31f641a50e8f11 /gnu/usr.bin | |
parent | 7e4f8a55046682769028841829c1911fedf7bc9c (diff) | |
download | FreeBSD-src-506312bdd08f73c2b066b2aa82387aa0810222bc.zip FreeBSD-src-506312bdd08f73c2b066b2aa82387aa0810222bc.tar.gz |
Fixed bugs involving paths:
- LDADD was wrong for non-uniform obj trees.
- DPADD was wrong for separate obj tres.
Cleaned up nearby messes, mostly ones invoving paths:
- ../libtxi was useless.
- there were too many redefinitions and too many different names for the
same paths.
- use INTERNALLIB* to simplify libtxi/Makefile.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/texinfo/Makefile.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.inc b/gnu/usr.bin/texinfo/Makefile.inc new file mode 100644 index 0000000..5ee8874 --- /dev/null +++ b/gnu/usr.bin/texinfo/Makefile.inc @@ -0,0 +1,11 @@ +# $Id$ + +TXIDIR= ${.CURDIR}/../../../../contrib/texinfo + +.if exists(${.OBJDIR}/../libtxi) +LIBTXI= ${.OBJDIR}/../libtxi/libtxi.a +.else +LIBTXI= ${.CURDIR}/../libtxi/libtxi.a +.endif + +.include "../../Makefile.inc" |