diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-05-02 14:20:46 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-05-02 14:20:46 +0000 |
commit | 38fc1cb168d5f37b2089ea4c5a43cedc8b1604c4 (patch) | |
tree | 7d3464fee992326ae245c39b21ae9f3b6b7e557c /gas/doc/Makefile.am | |
parent | b02e2fdabec1f0f18cab48f04ad6b1b8ce4f47bc (diff) | |
download | gdb-38fc1cb168d5f37b2089ea4c5a43cedc8b1604c4.zip gdb-38fc1cb168d5f37b2089ea4c5a43cedc8b1604c4.tar.gz gdb-38fc1cb168d5f37b2089ea4c5a43cedc8b1604c4.tar.bz2 |
binutils/
* doc/Makefile.am (AM_MAKEINFOFLAGS): New.
(TEXI2POD): Use AM_MAKEINFOFLAGS.
(config.texi): Don't set top_srcdir.
* doc/binutils.texi: Don't use top_srcdir.
* aclocal.m4, Makefile.in, doc/Makefile.in: Regenerated.
gas/
* doc/Makefile.am (AM_MAKEINFOFLAGS): New.
(TEXI2POD): Use AM_MAKEINFOFLAGS.
(asconfig.texi): Don't set top_srcdir.
* doc/as.texinfo: Don't use top_srcdir.
* aclocal.m4, Makefile.in, doc/Makefile.in: Regenerated.
ld/
* Makefile.am (AM_MAKEINFOFLAGS): Add libiberty.
(TEXI2POD): Use AM_MAKEINFOFLAGS.
(configdoc.texi): Don't set top_srcdir.
* ld.texinfo: Don't use top_srcdir.
* aclocal.m4, Makefile.in: Regenerated.
Diffstat (limited to 'gas/doc/Makefile.am')
-rw-r--r-- | gas/doc/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/doc/Makefile.am b/gas/doc/Makefile.am index cc806ca..99e8390 100644 --- a/gas/doc/Makefile.am +++ b/gas/doc/Makefile.am @@ -8,7 +8,7 @@ CONFIG=all # Options to extract the man page from as.texinfo MANCONF = -Dman -TEXI2POD = perl $(top_srcdir)/../etc/texi2pod.pl +TEXI2POD = perl $(BASEDIR)/etc/texi2pod.pl $(AM_MAKEINFOFLAGS) POD2MAN = pod2man --center="GNU Development Tools" \ --release="binutils-$(VERSION)" --section=1 @@ -17,11 +17,12 @@ man_MANS = as.1 info_TEXINFOS = as.texinfo +AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty" + asconfig.texi: $(CONFIG).texi rm -f asconfig.texi cp $(srcdir)/$(CONFIG).texi ./asconfig.texi chmod u+w ./asconfig.texi - echo "@set top_srcdir $(top_srcdir)" >> ./asconfig.texi CPU_DOCS = \ c-alpha.texi \ |