diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-10-06 14:36:04 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-10-06 14:36:04 +0100 |
commit | 71917808c3490b4d4df9c6e848e3c5d75f5278d2 (patch) | |
tree | 6b382fc6c20aa4e98260f44559c0c6f5d0317930 /gdb/Makefile.in | |
parent | 2081b2b2ca30d7c3b6464a3e167ce2c336c0465f (diff) | |
download | gdb-71917808c3490b4d4df9c6e848e3c5d75f5278d2.zip gdb-71917808c3490b4d4df9c6e848e3c5d75f5278d2.tar.gz gdb-71917808c3490b4d4df9c6e848e3c5d75f5278d2.tar.bz2 |
Move arm.o arm-get-next-pcs.o arm-linux.o to arch/
It is tested by building GDB for some targets, arm-elf, arm-netbsd,
arm-linux, and aarch64-linux.
gdb:
2017-10-06 Yao Qi <yao.qi@linaro.org>
* Makefile.in (ALL_TARGET_OBS): Replace arm.o, arm-get-next-pcs.o,
and arm-linux.o with arch/arm.o, arch/arm-get-next-pcs.o and
arch/arm-linux.o respectively.
* configure.tgt: Likewise.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index c40cb76..4492aca 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -793,11 +793,11 @@ ALL_64_TARGET_OBS = \ # All other target-dependent objects files (used with --enable-targets=all). ALL_TARGET_OBS = \ arc-tdep.o \ + arch/arm.o \ + arch/arm-get-next-pcs.o \ + arch/arm-linux.o \ arch/i386.o \ - arm.o \ arm-bsd-tdep.o \ - arm-get-next-pcs.o \ - arm-linux.o \ arm-linux-tdep.o \ arm-nbsd-tdep.o \ arm-obsd-tdep.o \ |