This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Another attempt at fixing building gprof with gmake.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=63442f6a2eff9f4c5c67099565f59c0f135aff94

commit 63442f6a2eff9f4c5c67099565f59c0f135aff94
Author: Nick Clifton <nickc@redhat.com>
Date:   Thu Nov 14 12:11:43 2019 +0000

    Another attempt at fixing building gprof with gmake.
    
    	PR 2587
    	* Makefile.am (SUFFIXES): Add .c.
    	* Makefile.in: Regenerate.

Diff:
---
 gprof/ChangeLog   | 6 ++++++
 gprof/Makefile.am | 2 +-
 gprof/Makefile.in | 6 +++---
 3 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 53921bd..52b966b 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,9 @@
+2019-11-14  Nick Clifton  <nickc@redhat.com>
+
+	PR 2587
+	* Makefile.am (SUFFIXES): Add .c.
+	* Makefile.in: Regenerate.
+
 2019-11-13  Nick Clifton  <nickc@redhat.com>
 
 	PR 2587
diff --git a/gprof/Makefile.am b/gprof/Makefile.am
index 0d87ca8..74c8ac8 100644
--- a/gprof/Makefile.am
+++ b/gprof/Makefile.am
@@ -21,7 +21,7 @@ AUTOMAKE_OPTIONS = foreign no-dist no-texinfo.tex info-in-builddir
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
 TEXINFO_TEX = ../texinfo/texinfo.tex
 
-SUFFIXES = .m
+SUFFIXES = .c .m
 
 SUBDIRS = po
 
diff --git a/gprof/Makefile.in b/gprof/Makefile.in
index 451fe95..9100a8d 100644
--- a/gprof/Makefile.in
+++ b/gprof/Makefile.in
@@ -439,7 +439,7 @@ top_srcdir = @top_srcdir@
 AUTOMAKE_OPTIONS = foreign no-dist no-texinfo.tex info-in-builddir
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
 TEXINFO_TEX = ../texinfo/texinfo.tex
-SUFFIXES = .m
+SUFFIXES = .c .m
 SUBDIRS = po
 BASEDIR = $(srcdir)/..
 BFDDIR = $(BASEDIR)/bfd
@@ -481,7 +481,7 @@ all: $(BUILT_SOURCES) gconfig.h
 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
 
 .SUFFIXES:
-.SUFFIXES: .m .c .dvi .lo .o .obj .ps
+.SUFFIXES: .c .m .dvi .lo .o .obj .ps
 am--refresh: Makefile
 	@:
 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
@@ -1171,7 +1171,7 @@ diststuff: $(BUILT_SOURCES) info $(man_MANS)
 # This empty rule is a hack against gmake patched by Apple.
 %.o:%.m
 
-.m.c:
+.c.m:
 	awk -f $(srcdir)/gen-c-prog.awk > $@ \
 	    FUNCTION=`(echo $*|sed -e 's,.*/,,g' -e 's/_bl//')`_blurb \
 	    FILE=$*.m $<


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]