Clean up after generated c files for MIPS DSP targets
authorJames Hogan <james.hogan@imgtec.com>
Mon, 1 Sep 2014 09:19:31 +0000 (10:19 +0100)
committerJames Hogan <james.hogan@imgtec.com>
Tue, 30 Sep 2014 14:50:21 +0000 (15:50 +0100)
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.

gdb/gdbserver/ChangeLog
gdb/gdbserver/Makefile.in

index a7efe8ef8970eac154246370e420241de9ac5d29..aa56dcec45eac4ea098eb3403a4b22cee86f883a 100644 (file)
@@ -1,3 +1,8 @@
+2014-09-30  James Hogan  <james.hogan@imgtec.com>
+
+       * Makefile.in (clean): Add rm -f commands for mips-dsp-linux.c and
+       mips64-dsp-linux.c.
+
 2014-09-23  Yao Qi  <yao@codesourcery.com>
 
        * linux-low.c (lp_status_maybe_breakpoint): New function.
index e9d6b15fb2e557dcb7c91c769b3f5c81461f5500..8b0318abec15361442b2954a747e23cd08dc5509 100644 (file)
@@ -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
This page took 0.032678 seconds and 4 git commands to generate.