diff options
author | Tom Tromey <tromey@adacore.com> | 2022-04-13 06:42:19 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-04-14 12:12:34 -0600 |
commit | b17c7ab3808f5b781537514b28695dafaa29cb28 (patch) | |
tree | 4d542aeb0071db24f24d08333ab99198ad4b0cf6 /gdb/Makefile.in | |
parent | 9da74023eb9378315d6b7e1bae02f52cfecc8bd1 (diff) | |
download | gdb-b17c7ab3808f5b781537514b28695dafaa29cb28.zip gdb-b17c7ab3808f5b781537514b28695dafaa29cb28.tar.gz gdb-b17c7ab3808f5b781537514b28695dafaa29cb28.tar.bz2 |
Move target_read_string to target/target.c
This moves the two overloads of target_read_string to a new file,
target/target.c, and updates both gdb and gdbserver to build this.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 872fbe1..c8e140b 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -487,7 +487,7 @@ SELFTESTS_SRCS = \ SELFTESTS_OBS = $(patsubst %.c,%.o,$(SELFTESTS_SRCS)) -SUBDIR_TARGET_SRCS = target/waitstatus.c +SUBDIR_TARGET_SRCS = target/target.c target/waitstatus.c SUBDIR_TARGET_OBS = $(patsubst %.c,%.o,$(SUBDIR_TARGET_SRCS)) |