diff options
author | Nick Clifton <nickc@redhat.com> | 2019-11-13 11:21:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-11-13 11:21:39 +0000 |
commit | 415ed2a17588f855397cc2d03aa68a79e84f77f7 (patch) | |
tree | 98c0bbe9707745e033e8ce248d087dcf42049f6c /gprof/Makefile.am | |
parent | 17298d65f05d18f04b864f6e6d35fccc89c0d607 (diff) | |
download | gdb-415ed2a17588f855397cc2d03aa68a79e84f77f7.zip gdb-415ed2a17588f855397cc2d03aa68a79e84f77f7.tar.gz gdb-415ed2a17588f855397cc2d03aa68a79e84f77f7.tar.bz2 |
Fix the rule for building C files in the gprof makefile.
PR 2587
* Makefile.am: Fix rule to build .c files from .m files.
Diffstat (limited to 'gprof/Makefile.am')
-rw-r--r-- | gprof/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 $< |