diff options
author | Nick Clifton <nickc@redhat.com> | 2002-01-31 18:37:58 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-01-31 18:37:58 +0000 |
commit | e7e2dd92262f34fd7246fb639edc6001acf9171d (patch) | |
tree | e4d67f7e2f6c542712867a2930cee7d82b0e8059 /gprof/Makefile.in | |
parent | dea03d4e101d4d52a1fda4680794d4ceec1cfc55 (diff) | |
download | fsf-binutils-gdb-e7e2dd92262f34fd7246fb639edc6001acf9171d.zip fsf-binutils-gdb-e7e2dd92262f34fd7246fb639edc6001acf9171d.tar.gz fsf-binutils-gdb-e7e2dd92262f34fd7246fb639edc6001acf9171d.tar.bz2 |
Deal with target architecture that have a pointer size that is different from
the host architectures pointer size.
Diffstat (limited to 'gprof/Makefile.in')
-rw-r--r-- | gprof/Makefile.in | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gprof/Makefile.in b/gprof/Makefile.in index 530623a..5220619 100644 --- a/gprof/Makefile.in +++ b/gprof/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.4 from Makefile.am +# Makefile.in generated automatically by automake 1.4-p5 from Makefile.am -# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -187,13 +187,12 @@ NROFF = nroff HEADERS = $(noinst_HEADERS) DIST_COMMON = README ./stamp-h.in ChangeLog Makefile.am Makefile.in \ -TODO acconfig.h acinclude.m4 aclocal.m4 configure configure.in \ -gconfig.in +TODO acinclude.m4 aclocal.m4 configure configure.in gconfig.in DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) -TAR = tar +TAR = gtar GZIP_ENV = --best SOURCES = $(gprof_SOURCES) OBJECTS = $(gprof_OBJECTS) @@ -231,7 +230,7 @@ $(srcdir)/gconfig.in: @MAINTAINER_MODE_TRUE@$(srcdir)/stamp-h.in rm -f $(srcdir)/stamp-h.in; \ $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi -$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h +$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOHEADER) @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null @@ -390,7 +389,7 @@ uninstall-info: else ii=; fi; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ - test -z "$ii" \ + test -z "$$ii" \ || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \ done @$(NORMAL_UNINSTALL) @@ -504,7 +503,7 @@ maintainer-clean-recursive: dot_seen=no; \ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ rev="$$subdir $$rev"; \ - test "$$subdir" = "." && dot_seen=yes; \ + test "$$subdir" != "." || dot_seen=yes; \ done; \ test "$$dot_seen" = "no" && rev=". $$rev"; \ target=`echo $@ | sed s/-recursive//`; \ |