diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-03-22 21:18:34 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-03-22 21:18:34 +0000 |
commit | e49e529d120e4bf2c93791900a41cf1a9e7e3cef (patch) | |
tree | 4a55d8397f1979da3964d87fb7771b9dff70a93c /gprof/Makefile.in | |
parent | 5200c3f3c16c1451b4e4c5028d5a58b27d4dc3db (diff) | |
download | gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.zip gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.tar.gz gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.tar.bz2 |
bfd:
* Makefile.am (bfdver.h): Only set VERSION_PACKAGE in bfdver.texi
if nonempty.
* configure.in (REPORT_BUGS_TO): Do not use "URL:" prefix.
* Makefile.in, configure, doc/Makefile.in: Regenerate.
binutils:
* doc/binutils.texi: Include VERSION_PACKAGE when reporting
version.
gas:
* doc/as.texinfo: Include VERSION_PACKAGE when reporting version.
gprof:
* Makefile.am (TEXI2POD): Include $(AM_MAKEINFOFLAGS).
(AM_MAKEINFOFLAGS, TEXI2DVI): Define with -I ../bfd/doc.
* Makefile.in: Regenerate.
* gprof.texi: Include bfdver.texi. Report both VERSION_PACKAGE
and VERSION.
ld:
* ld.texinfo: Include VERSION_PACKAGE when reporting version.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 8ed6219..f0b08f5 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -95,11 +95,6 @@ PDFS = gprof.pdf PSS = gprof.ps HTMLS = gprof.html TEXINFOS = gprof.texi -TEXI2DVI = `if test -f $(top_srcdir)/../texinfo/util/texi2dvi; then \ - echo $(top_srcdir)/../texinfo/util/texi2dvi; \ - else \ - echo texi2dvi; \ - fi` TEXI2PDF = $(TEXI2DVI) --pdf --batch MAKEINFOHTML = $(MAKEINFO) --html AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS) @@ -258,11 +253,13 @@ BUILT_SOURCES = flat_bl.c bsd_callg_bl.c fsf_callg_bl.c EXTRA_DIST = $(BUILT_SOURCES) bbconv.pl $(man_MANS) POTFILES = $(sources) $(noinst_HEADERS) MANCONF = -Dman -TEXI2POD = perl $(srcdir)/../etc/texi2pod.pl +TEXI2POD = perl $(srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS) POD2MAN = pod2man --center="GNU" --release="binutils-$(VERSION)" --section=1 info_TEXINFOS = gprof.texi gprof_TEXINFOS = config.texi man_MANS = gprof.1 +AM_MAKEINFOFLAGS = -I "$(srcdir)" -I ../bfd/doc +TEXI2DVI = texi2dvi -I "$(srcdir)" -I ../bfd/doc html__strip_dir = `echo $$p | sed -e 's|^.*/||'`; CLEANFILES = dep.sed DEP DEPA DEP1 DEP2 MAINTAINERCLEANFILES = gprof.info @@ -282,15 +279,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --cygnus '; \ - cd $(srcdir) && $(AUTOMAKE) --cygnus \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ + cd $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ cd $(top_srcdir) && \ - $(AUTOMAKE) --cygnus Makefile + $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ |