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] Fix the rule for building C files in the gprof makefile.


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

commit 415ed2a17588f855397cc2d03aa68a79e84f77f7
Author: Nick Clifton <nickc@redhat.com>
Date:   Wed Nov 13 11:21:39 2019 +0000

    Fix the rule for building C files in the gprof makefile.
    
    	PR 2587
    	* Makefile.am: Fix rule to build .c files from .m files.

Diff:
---
 gprof/ChangeLog   | 5 +++++
 gprof/Makefile.am | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 84285aa..53921bd 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,8 @@
+2019-11-13  Nick Clifton  <nickc@redhat.com>
+
+	PR 2587
+	* Makefile.am: Fix rule to build .c files from .m files.
+
 2019-09-18  Alan Modra  <amodra@gmail.com>
 
 	* corefile.c, * symtab.c: Update throughout for bfd section
diff --git a/gprof/Makefile.am b/gprof/Makefile.am
index c1d5b1c..0d87ca8 100644
--- a/gprof/Makefile.am
+++ b/gprof/Makefile.am
@@ -64,7 +64,7 @@ CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/development.sh
 # 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]