From: James Hogan Date: Mon, 1 Sep 2014 09:19:31 +0000 (+0100) Subject: Clean up after generated c files for MIPS DSP targets X-Git-Tag: binutils-2_25~213 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63b434a4374b61aa34b095a789cd0d03b2a5a526;p=external%2Fbinutils.git Clean up after generated c files for MIPS DSP targets The gdbserver "clean" Makefile target wasn't removing the generated files mips-dsp-linux.c and mips64-dsp-linux.c. Add rm commands to delete them. gdb/gdbserver/ChangeLog: * Makefile.in (clean): Add rm -f commands for mips-dsp-linux.c and mips64-dsp-linux.c. --- diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index a7efe8e..aa56dce 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,8 @@ +2014-09-30 James Hogan + + * Makefile.in (clean): Add rm -f commands for mips-dsp-linux.c and + mips64-dsp-linux.c. + 2014-09-23 Yao Qi * linux-low.c (lp_status_maybe_breakpoint): New function. diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in index e9d6b15..8b0318a 100644 --- a/gdb/gdbserver/Makefile.in +++ b/gdb/gdbserver/Makefile.in @@ -344,7 +344,8 @@ clean: rm -f reg-tilegx.c reg-tilegx32.c rm -f arm-with-iwmmxt.c rm -f arm-with-vfpv2.c arm-with-vfpv3.c arm-with-neon.c - rm -f mips-linux.c mips64-linux.c + rm -f mips-linux.c mips-dsp-linux.c + rm -f mips64-linux.c mips64-dsp-linux.c rm -f nios2-linux.c rm -f powerpc-32.c powerpc-32l.c powerpc-64l.c powerpc-e500l.c rm -f powerpc-altivec32l.c powerpc-cell32l.c powerpc-vsx32l.c