Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(378)

Side by Side Diff: gdb/Makefile.in

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/MAINTAINERS ('k') | gdb/NEWS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (C) 1989-2012 Free Software Foundation, Inc. 1 # Copyright (C) 1989-2012 Free Software Foundation, Inc.
2 2
3 # This file is part of GDB. 3 # This file is part of GDB.
4 4
5 # This program is free software; you can redistribute it and/or modify 5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by 6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or 7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version. 8 # (at your option) any later version.
9 # 9 #
10 # This program is distributed in the hope that it will be useful, 10 # This program is distributed in the hope that it will be useful,
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " \ 159 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " \
160 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"` 160 | sed "s/ -Wformat-nonliteral / -Wno-format-nonliteral /g"`
161 161
162 RDYNAMIC = @RDYNAMIC@ 162 RDYNAMIC = @RDYNAMIC@
163 163
164 # Where is the INTL library? Typically in ../intl. 164 # Where is the INTL library? Typically in ../intl.
165 INTL = @LIBINTL@ 165 INTL = @LIBINTL@
166 INTL_DEPS = @LIBINTL_DEP@ 166 INTL_DEPS = @LIBINTL_DEP@
167 INTL_CFLAGS = @INCINTL@ 167 INTL_CFLAGS = @INCINTL@
168 168
169 # Did the user give us a --with-sysroot option?
170 TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
171 TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
172
173 # Did the user give us a --with-gdb-datadir option? 169 # Did the user give us a --with-gdb-datadir option?
174 GDB_DATADIR = @GDB_DATADIR@ 170 GDB_DATADIR = @GDB_DATADIR@
175 171
176 # Helper code from gnulib. 172 # Helper code from gnulib.
177 LIBGNU = gnulib/libgnu.a 173 GNULIB_BUILDDIR = build-gnulib
178 INCGNU = -I$(srcdir)/gnulib -Ignulib 174 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
175 INCGNU = -I$(srcdir)/gnulib/import -I$(GNULIB_BUILDDIR)/import
179 176
180 # Generated headers in the gnulib directory. These must be listed 177 # Generated headers in the gnulib directory. These must be listed
181 # so that they are generated before other files are compiled. 178 # so that they are generated before other files are compiled.
182 GNULIB_H = gnulib/string.h @GNULIB_STDINT_H@ 179 GNULIB_H = $(GNULIB_BUILDDIR)/import/string.h @GNULIB_STDINT_H@
183 180
184 # 181 #
185 # CLI sub directory definitons 182 # CLI sub directory definitons
186 # 183 #
187 SUBDIR_CLI_OBS = \ 184 SUBDIR_CLI_OBS = \
188 cli-dump.o \ 185 cli-dump.o \
189 cli-decode.o cli-script.o cli-cmds.o cli-setshow.o \ 186 cli-decode.o cli-script.o cli-cmds.o cli-setshow.o \
190 cli-logging.o \ 187 cli-logging.o \
191 cli-interp.o cli-utils.o 188 cli-interp.o cli-utils.o
192 SUBDIR_CLI_SRCS = \ 189 SUBDIR_CLI_SRCS = \
193 cli/cli-dump.c \ 190 cli/cli-dump.c \
194 cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \ 191 cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
195 cli/cli-logging.c \ 192 cli/cli-logging.c \
196 cli/cli-interp.c cli/cli-utils.c 193 cli/cli-interp.c cli/cli-utils.c
197 SUBDIR_CLI_DEPS = 194 SUBDIR_CLI_DEPS =
198 SUBDIR_CLI_LDFLAGS= 195 SUBDIR_CLI_LDFLAGS=
199 SUBDIR_CLI_CFLAGS= 196 SUBDIR_CLI_CFLAGS=
200 197
201 # 198 #
202 # MI sub directory definitons 199 # MI sub directory definitons
203 # 200 #
204 SUBDIR_MI_OBS = \ 201 SUBDIR_MI_OBS = \
205 mi-out.o mi-console.o \ 202 mi-out.o mi-console.o \
206 mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \ 203 mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
207 mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o \ 204 mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o \
208 » mi-interp.o \ 205 » mi-cmd-info.o mi-interp.o \
209 mi-main.o mi-parse.o mi-getopt.o 206 mi-main.o mi-parse.o mi-getopt.o
210 SUBDIR_MI_SRCS = \ 207 SUBDIR_MI_SRCS = \
211 mi/mi-out.c mi/mi-console.c \ 208 mi/mi-out.c mi/mi-console.c \
212 mi/mi-cmds.c mi/mi-cmd-env.c \ 209 mi/mi-cmds.c mi/mi-cmd-env.c \
213 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \ 210 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
214 mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \ 211 mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \
215 » mi/mi-cmd-target.c mi/mi-interp.c \ 212 » mi/mi-cmd-target.c mi/mi-cmd-info.c mi/mi-interp.c \
216 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c 213 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
217 SUBDIR_MI_DEPS = 214 SUBDIR_MI_DEPS =
218 SUBDIR_MI_LDFLAGS= 215 SUBDIR_MI_LDFLAGS=
219 SUBDIR_MI_CFLAGS= 216 SUBDIR_MI_CFLAGS=
220 217
221 # 218 #
222 # TUI sub directory definitions 219 # TUI sub directory definitions
223 # 220 #
224 221
225 # Name of the TUI program
226 TUI=gdbtui
227
228 SUBDIR_TUI_OBS = \ 222 SUBDIR_TUI_OBS = \
229 tui-command.o \ 223 tui-command.o \
230 tui-data.o \ 224 tui-data.o \
231 tui-disasm.o \ 225 tui-disasm.o \
232 » tui-file.o tui.o \ 226 » tui-file.o \
233 tui-hooks.o \ 227 tui-hooks.o \
234 tui-interp.o \ 228 tui-interp.o \
235 tui-io.o \ 229 tui-io.o \
236 tui-layout.o \ 230 tui-layout.o \
237 tui-out.o \ 231 tui-out.o \
238 tui-main.o \
239 tui-regs.o \ 232 tui-regs.o \
240 tui-source.o \ 233 tui-source.o \
241 tui-stack.o \ 234 tui-stack.o \
242 tui-win.o \ 235 tui-win.o \
243 tui-windata.o \ 236 tui-windata.o \
244 tui-wingeneral.o \ 237 tui-wingeneral.o \
245 tui-winsource.o \ 238 tui-winsource.o \
246 tui.o 239 tui.o
247 240
248 SUBDIR_TUI_SRCS = \ 241 SUBDIR_TUI_SRCS = \
249 tui/tui-command.c \ 242 tui/tui-command.c \
250 tui/tui-data.c \ 243 tui/tui-data.c \
251 tui/tui-disasm.c \ 244 tui/tui-disasm.c \
252 tui/tui-file.c \ 245 tui/tui-file.c \
253 tui/tui-hooks.c \ 246 tui/tui-hooks.c \
254 tui/tui-interp.c \ 247 tui/tui-interp.c \
255 tui/tui-io.c \ 248 tui/tui-io.c \
256 tui/tui-layout.c \ 249 tui/tui-layout.c \
257 tui/tui-main.c \
258 tui/tui-out.c \ 250 tui/tui-out.c \
259 tui/tui-regs.c \ 251 tui/tui-regs.c \
260 tui/tui-source.c \ 252 tui/tui-source.c \
261 tui/tui-stack.c \ 253 tui/tui-stack.c \
262 tui/tui-win.c \ 254 tui/tui-win.c \
263 tui/tui-windata.c \ 255 tui/tui-windata.c \
264 tui/tui-wingeneral.c \ 256 tui/tui-wingeneral.c \
265 tui/tui-winsource.c \ 257 tui/tui-winsource.c \
266 tui/tui.c 258 tui/tui.c
267 259
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 TARGET_OBS = @TARGET_OBS@ 510 TARGET_OBS = @TARGET_OBS@
519 511
520 # All target-dependent objects files that require 64-bit CORE_ADDR 512 # All target-dependent objects files that require 64-bit CORE_ADDR
521 # (used with --enable-targets=all --enable-64-bit-bfd). 513 # (used with --enable-targets=all --enable-64-bit-bfd).
522 ALL_64_TARGET_OBS = \ 514 ALL_64_TARGET_OBS = \
523 alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \ 515 alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \
524 alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \ 516 alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \
525 amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \ 517 amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \
526 amd64-linux-tdep.o amd64nbsd-tdep.o \ 518 amd64-linux-tdep.o amd64nbsd-tdep.o \
527 amd64obsd-tdep.o amd64-sol2-tdep.o amd64-tdep.o amd64-windows-tdep.o \ 519 amd64obsd-tdep.o amd64-sol2-tdep.o amd64-tdep.o amd64-windows-tdep.o \
528 » ia64-hpux-tdep.o ia64-linux-tdep.o ia64-tdep.o \ 520 » ia64-hpux-tdep.o ia64-linux-tdep.o ia64-vms-tdep.o ia64-tdep.o \
529 mips64obsd-tdep.o \ 521 mips64obsd-tdep.o \
530 sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \ 522 sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \
531 sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o 523 sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o
532 524
533 # All other target-dependent objects files (used with --enable-targets=all). 525 # All other target-dependent objects files (used with --enable-targets=all).
534 ALL_TARGET_OBS = \ 526 ALL_TARGET_OBS = \
535 armbsd-tdep.o arm-linux-tdep.o arm-symbian-tdep.o \ 527 armbsd-tdep.o arm-linux-tdep.o arm-symbian-tdep.o \
536 armnbsd-tdep.o armobsd-tdep.o \ 528 armnbsd-tdep.o armobsd-tdep.o \
537 arm-tdep.o arm-wince-tdep.o \ 529 arm-tdep.o arm-wince-tdep.o \
538 avr-tdep.o \ 530 avr-tdep.o \
(...skipping 18 matching lines...) Expand all
557 m88k-tdep.o \ 549 m88k-tdep.o \
558 mep-tdep.o \ 550 mep-tdep.o \
559 microblaze-tdep.o microblaze-linux-tdep.o \ 551 microblaze-tdep.o microblaze-linux-tdep.o \
560 mips-irix-tdep.o mips-linux-tdep.o \ 552 mips-irix-tdep.o mips-linux-tdep.o \
561 mipsnbsd-tdep.o mips-tdep.o \ 553 mipsnbsd-tdep.o mips-tdep.o \
562 mn10300-linux-tdep.o mn10300-tdep.o \ 554 mn10300-linux-tdep.o mn10300-tdep.o \
563 moxie-tdep.o \ 555 moxie-tdep.o \
564 mt-tdep.o \ 556 mt-tdep.o \
565 nto-tdep.o \ 557 nto-tdep.o \
566 ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \ 558 ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \
559 rl78-tdep.o \
567 rs6000-aix-tdep.o rs6000-tdep.o \ 560 rs6000-aix-tdep.o rs6000-tdep.o \
561 rx-tdep.o \
568 s390-tdep.o \ 562 s390-tdep.o \
569 score-tdep.o \ 563 score-tdep.o \
570 sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \ 564 sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \
571 sparc-linux-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \ 565 sparc-linux-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
572 sparc-sol2-tdep.o sparc-tdep.o \ 566 sparc-sol2-tdep.o sparc-tdep.o \
573 spu-tdep.o spu-multiarch.o solib-spu.o \ 567 spu-tdep.o spu-multiarch.o solib-spu.o \
574 tic6x-tdep.o tic6x-linux-tdep.o \ 568 tic6x-tdep.o tic6x-linux-tdep.o \
569 tilegx-tdep.o tilegx-linux-tdep.o \
575 v850-tdep.o \ 570 v850-tdep.o \
576 vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \ 571 vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \
577 xstormy16-tdep.o \ 572 xstormy16-tdep.o \
578 xtensa-config.o xtensa-tdep.o xtensa-linux-tdep.o \ 573 xtensa-config.o xtensa-tdep.o xtensa-linux-tdep.o \
579 glibc-tdep.o \ 574 glibc-tdep.o \
580 bsd-uthread.o \ 575 bsd-uthread.o \
581 nbsd-tdep.o obsd-tdep.o \ 576 nbsd-tdep.o obsd-tdep.o \
582 sol2-tdep.o \ 577 sol2-tdep.o \
583 » solib-frv.o solib-irix.o solib-svr4.o solib-target.o \ 578 » solib-frv.o solib-irix.o solib-svr4.o \
584 solib-som.o solib-pa64.o solib-darwin.o solib-dsbt.o \ 579 solib-som.o solib-pa64.o solib-darwin.o solib-dsbt.o \
585 dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \ 580 dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \
586 remote-m32r-sdi.o remote-mips.o \ 581 remote-m32r-sdi.o remote-mips.o \
587 xcoffread.o \ 582 xcoffread.o \
588 symfile-mem.o \ 583 symfile-mem.o \
589 corelow.o \
590 windows-tdep.o \ 584 windows-tdep.o \
591 linux-record.o 585 linux-record.o
592 586
593 # Host-dependent makefile fragment comes in here. 587 # Host-dependent makefile fragment comes in here.
594 @host_makefile_frag@ 588 @host_makefile_frag@
595 # End of host-dependent makefile fragment 589 # End of host-dependent makefile fragment
596 590
597 FLAGS_TO_PASS = \ 591 FLAGS_TO_PASS = \
598 "prefix=$(prefix)" \ 592 "prefix=$(prefix)" \
599 "exec_prefix=$(exec_prefix)" \ 593 "exec_prefix=$(exec_prefix)" \
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 "MAKEHTML=$(MAKEHTML)" \ 677 "MAKEHTML=$(MAKEHTML)" \
684 "RUNTEST=$(RUNTEST)" \ 678 "RUNTEST=$(RUNTEST)" \
685 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \ 679 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
686 "FORCE_PARALLEL=$(FORCE_PARALLEL)" 680 "FORCE_PARALLEL=$(FORCE_PARALLEL)"
687 681
688 # All source files that go into linking GDB. 682 # All source files that go into linking GDB.
689 # Links made at configuration time should not be specified here, since 683 # Links made at configuration time should not be specified here, since
690 # SFILES is used in building the distribution archive. 684 # SFILES is used in building the distribution archive.
691 685
692 SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ 686 SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
693 » addrmap.c \ 687 » ada-varobj.c \
688 » addrmap.c auto-load.c \
694 auxv.c ax-general.c ax-gdb.c \ 689 auxv.c ax-general.c ax-gdb.c \
690 agent.c \
695 bcache.c \ 691 bcache.c \
696 bfd-target.c \ 692 bfd-target.c \
697 block.c blockframe.c breakpoint.c buildsym.c \ 693 block.c blockframe.c breakpoint.c buildsym.c \
698 c-exp.y c-lang.c c-typeprint.c c-valprint.c \ 694 c-exp.y c-lang.c c-typeprint.c c-valprint.c \
699 » charset.c cli-out.c coffread.c coff-pe-read.c \ 695 » charset.c cleanups.c cli-out.c coffread.c coff-pe-read.c \
700 » complaints.c completer.c continuations.c corefile.c \ 696 » complaints.c completer.c continuations.c corefile.c corelow.c \
701 cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \ 697 cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
702 d-lang.c d-valprint.c \ 698 d-lang.c d-valprint.c \
703 cp-name-parser.y \ 699 cp-name-parser.y \
704 dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \ 700 dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
705 dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \ 701 dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
706 dwarf2-frame-tailcall.c \ 702 dwarf2-frame-tailcall.c \
707 elfread.c environ.c eval.c event-loop.c event-top.c \ 703 elfread.c environ.c eval.c event-loop.c event-top.c \
708 exceptions.c expprint.c \ 704 exceptions.c expprint.c \
709 f-exp.y f-lang.c f-typeprint.c f-valprint.c filesystem.c \ 705 f-exp.y f-lang.c f-typeprint.c f-valprint.c filesystem.c \
710 findcmd.c findvar.c frame.c frame-base.c frame-unwind.c \ 706 findcmd.c findvar.c frame.c frame-base.c frame-unwind.c \
711 gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \ 707 gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
708 go-exp.y go-lang.c go-typeprint.c go-valprint.c \
712 inf-loop.c \ 709 inf-loop.c \
713 infcall.c \ 710 infcall.c \
714 infcmd.c inflow.c infrun.c \ 711 infcmd.c inflow.c infrun.c \
715 inline-frame.c \ 712 inline-frame.c \
716 interps.c \ 713 interps.c \
717 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \ 714 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
718 language.c linespec.c \ 715 language.c linespec.c \
719 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \ 716 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
720 macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \ 717 macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
721 mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c memory-map.c \ 718 mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c memory-map.c \
722 memrange.c mi/mi-common.c \ 719 memrange.c mi/mi-common.c \
723 objc-exp.y objc-lang.c \ 720 objc-exp.y objc-lang.c \
724 objfiles.c osabi.c observer.c osdata.c \ 721 objfiles.c osabi.c observer.c osdata.c \
725 opencl-lang.c \ 722 opencl-lang.c \
726 p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \ 723 p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
727 proc-service.list progspace.c \ 724 proc-service.list progspace.c \
728 prologue-value.c psymtab.c \ 725 prologue-value.c psymtab.c \
729 regcache.c reggroups.c remote.c remote-fileio.c reverse.c \ 726 regcache.c reggroups.c remote.c remote-fileio.c reverse.c \
730 sentinel-frame.c \ 727 sentinel-frame.c \
731 serial.c ser-base.c ser-unix.c skip.c \ 728 serial.c ser-base.c ser-unix.c skip.c \
732 solib.c solib-target.c source.c \ 729 solib.c solib-target.c source.c \
733 » stabsread.c stack.c std-regs.c symfile.c symfile-mem.c symmisc.c \ 730 » stabsread.c stack.c probe.c stap-probe.c std-regs.c \
734 » symtab.c \ 731 » symfile.c symfile-mem.c symmisc.c symtab.c \
735 target.c target-descriptions.c target-memory.c \ 732 target.c target-descriptions.c target-memory.c \
736 thread.c top.c tracepoint.c \ 733 thread.c top.c tracepoint.c \
737 trad-frame.c \ 734 trad-frame.c \
738 tramp-frame.c \ 735 tramp-frame.c \
739 typeprint.c \ 736 typeprint.c \
740 ui-out.c utils.c ui-file.h ui-file.c \ 737 ui-out.c utils.c ui-file.h ui-file.c \
741 user-regs.c \ 738 user-regs.c \
742 » valarith.c valops.c valprint.c value.c varobj.c vec.c \ 739 » valarith.c valops.c valprint.c value.c varobj.c common/vec.c \
743 » wrapper.c \
744 xml-tdesc.c xml-support.c \ 740 xml-tdesc.c xml-support.c \
745 inferior.c gdb_usleep.c \ 741 inferior.c gdb_usleep.c \
746 record.c gcore.c \ 742 record.c gcore.c \
747 jit.c \ 743 jit.c \
748 xml-syscall.c \ 744 xml-syscall.c \
749 annotate.c common/signals.c copying.c dfp.c gdb.c inf-child.c \ 745 annotate.c common/signals.c copying.c dfp.c gdb.c inf-child.c \
750 regset.c sol-thread.c windows-termcap.c \ 746 regset.c sol-thread.c windows-termcap.c \
751 common/common-utils.c common/xml-utils.c \ 747 common/common-utils.c common/xml-utils.c \
752 » common/ptid.c common/buffer.c gdb-dlfcn.c 748 » common/ptid.c common/buffer.c gdb-dlfcn.c common/agent.c \
749 » common/format.c
753 750
754 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c 751 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
755 752
756 # Header files that need to have srcdir added. Note that in the cases 753 # Header files that need to have srcdir added. Note that in the cases
757 # where we use a macro like $(gdbcmd_h), things are carefully arranged 754 # where we use a macro like $(gdbcmd_h), things are carefully arranged
758 # so that each .h file is listed exactly once (M-x tags-search works 755 # so that each .h file is listed exactly once (M-x tags-search works
759 # wrong if TAGS has files twice). Because this is tricky to get 756 # wrong if TAGS has files twice). Because this is tricky to get
760 # right, it is probably easiest just to list .h files here directly. 757 # right, it is probably easiest just to list .h files here directly.
761 758
762 HFILES_NO_SRCDIR = osf-share/cma_debug_client.h \ 759 HFILES_NO_SRCDIR = osf-share/cma_debug_client.h \
763 osf-share/HP800/cma_thread_io.h osf-share/cma_sequence.h \ 760 osf-share/HP800/cma_thread_io.h osf-share/cma_sequence.h \
764 osf-share/cma_mutex.h osf-share/cma_semaphore_defs.h \ 761 osf-share/cma_mutex.h osf-share/cma_semaphore_defs.h \
765 osf-share/cma_list.h osf-share/cma_handle.h osf-share/cma_stack.h \ 762 osf-share/cma_list.h osf-share/cma_handle.h osf-share/cma_stack.h \
766 osf-share/cma_util.h osf-share/RIOS/cma_thread_io.h \ 763 osf-share/cma_util.h osf-share/RIOS/cma_thread_io.h \
767 osf-share/cma_errors.h osf-share/cma_tcb_defs.h osf-share/cma_attr.h \ 764 osf-share/cma_errors.h osf-share/cma_tcb_defs.h osf-share/cma_attr.h \
768 osf-share/cma_stack_int.h osf-share/cma_init.h \ 765 osf-share/cma_stack_int.h osf-share/cma_init.h \
769 osf-share/cma_deb_core.h osf-share/AT386/cma_thread_io.h \ 766 osf-share/cma_deb_core.h osf-share/AT386/cma_thread_io.h \
770 osf-share/cma_sched.h \ 767 osf-share/cma_sched.h \
771 common/gdb_signals.h common/gdb_thread_db.h common/i386-xstate.h \ 768 common/gdb_signals.h common/gdb_thread_db.h common/i386-xstate.h \
772 common/linux-ptrace.h \ 769 common/linux-ptrace.h \
773 proc-utils.h arm-tdep.h ax-gdb.h ppcnbsd-tdep.h \ 770 proc-utils.h arm-tdep.h ax-gdb.h ppcnbsd-tdep.h \
774 cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \ 771 cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \
775 exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h \ 772 exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h amd64bsd-nat.h \
776 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \ 773 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
777 ia64-tdep.h ada-lang.h varobj.h frv-tdep.h nto-tdep.h serial.h \ 774 ia64-tdep.h ada-lang.h ada-varobj.h varobj.h frv-tdep.h nto-tdep.h serial.h \
778 c-lang.h d-lang.h frame.h event-loop.h block.h cli/cli-setshow.h» \ 775 c-lang.h d-lang.h golang.h frame.h event-loop.h block.h cli/cli-setshow.h \
779 cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h cli/cli-utils.h \ 776 cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h cli/cli-utils.h \
780 cli/cli-script.h macrotab.h symtab.h version.h gnulib/wchar.in.h \ 777 cli/cli-script.h macrotab.h symtab.h version.h \
781 gnulib/string.in.h gnulib/str-two-way.h \ 778 gnulib/import/string.in.h gnulib/import/str-two-way.h \
782 gnulib/stdint.in.h remote.h gdb.h sparc-nat.h \ 779 gnulib/import/stdint.in.h remote.h gdb.h sparc-nat.h \
783 gdbthread.h dwarf2-frame.h dwarf2-frame-tailcall.h nbsd-nat.h dcache.h \ 780 gdbthread.h dwarf2-frame.h dwarf2-frame-tailcall.h nbsd-nat.h dcache.h \
784 amd64-nat.h s390-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \ 781 amd64-nat.h s390-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
785 gdbarch.h bsd-uthread.h gdb_stat.h memory-map.h memrange.h \ 782 gdbarch.h bsd-uthread.h gdb_stat.h memory-map.h memrange.h \
786 mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \ 783 mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \
787 ser-unix.h inf-ptrace.h terminal.h ui-out.h frame-base.h \ 784 ser-unix.h inf-ptrace.h terminal.h ui-out.h frame-base.h \
788 f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \ 785 f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \
789 objfiles.h vec.h disasm.h mips-tdep.h ser-base.h \ 786 objfiles.h common/vec.h disasm.h mips-tdep.h ser-base.h \
790 gdb_curses.h bfd-target.h memattr.h inferior.h ax.h dummy-frame.h \ 787 gdb_curses.h bfd-target.h memattr.h inferior.h ax.h dummy-frame.h \
791 inflow.h fbsd-nat.h libunwind-frame.h completer.h inf-ttrace.h \ 788 inflow.h fbsd-nat.h ia64-libunwind-tdep.h completer.h inf-ttrace.h \
792 solib-target.h gdb_vfork.h alpha-tdep.h dwarf2expr.h \ 789 solib-target.h gdb_vfork.h alpha-tdep.h dwarf2expr.h \
793 m2-lang.h stack.h charset.h addrmap.h command.h solist.h source.h \ 790 m2-lang.h stack.h charset.h cleanups.h addrmap.h command.h solist.h source.h \
794 target.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \ 791 target.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \
795 tui/tui-file.h tui/tui-command.h tui/tui-disasm.h tui/tui-wingeneral.h \ 792 tui/tui-file.h tui/tui-command.h tui/tui-disasm.h tui/tui-wingeneral.h \
796 tui/tui-windata.h tui/tui-data.h tui/tui-win.h tui/tui-stack.h \ 793 tui/tui-windata.h tui/tui-data.h tui/tui-win.h tui/tui-stack.h \
797 tui/tui-winsource.h tui/tui-regs.h tui/tui-io.h tui/tui-layout.h \ 794 tui/tui-winsource.h tui/tui-regs.h tui/tui-io.h tui/tui-layout.h \
798 tui/tui-source.h xcoffsolib.h sol2-tdep.h gregset.h sh-tdep.h \ 795 tui/tui-source.h xcoffsolib.h sol2-tdep.h gregset.h sh-tdep.h sh64-tdep.h \
799 expression.h score-tdep.h gdb_select.h ser-tcp.h buildsym.h valprint.h \ 796 expression.h score-tdep.h gdb_select.h ser-tcp.h buildsym.h valprint.h \
800 call-cmds.h typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \ 797 call-cmds.h typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \
801 mi/mi-out.h mi/mi-main.h mi/mi-common.h mi/mi-cmds.h linux-nat.h \ 798 mi/mi-out.h mi/mi-main.h mi/mi-common.h mi/mi-cmds.h linux-nat.h \
802 complaints.h gdb_proc_service.h gdb_regex.h xtensa-tdep.h inf-loop.h \ 799 complaints.h gdb_proc_service.h gdb_regex.h xtensa-tdep.h inf-loop.h \
803 gdb_wait.h common/gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \ 800 gdb_wait.h common/gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \
804 interps.h auxv.h gdbcmd.h tramp-frame.h mipsnbsd-tdep.h \ 801 interps.h auxv.h gdbcmd.h tramp-frame.h mipsnbsd-tdep.h \
805 amd64-linux-tdep.h linespec.h i387-tdep.h mn10300-tdep.h \ 802 amd64-linux-tdep.h linespec.h i387-tdep.h mn10300-tdep.h \
806 sparc64-tdep.h monitor.h ppcobsd-tdep.h srec.h solib-pa64.h \ 803 sparc64-tdep.h monitor.h ppcobsd-tdep.h srec.h solib-pa64.h \
807 coff-pe-read.h parser-defs.h gdb_ptrace.h mips-linux-tdep.h \ 804 coff-pe-read.h parser-defs.h gdb_ptrace.h mips-linux-tdep.h \
808 m68k-tdep.h spu-tdep.h jv-lang.h environ.h solib-irix.h amd64-tdep.h \ 805 m68k-tdep.h spu-tdep.h jv-lang.h environ.h solib-irix.h amd64-tdep.h \
809 doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h rs6000-tdep.h \ 806 doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h rs6000-tdep.h \
810 common/gdb_locale.h common/gdb_dirent.h arch-utils.h trad-frame.h gnu-nat.h \ 807 common/gdb_locale.h common/gdb_dirent.h arch-utils.h trad-frame.h gnu-nat.h \
811 language.h nbsd-tdep.h wrapper.h solib-svr4.h \ 808 language.h nbsd-tdep.h solib-svr4.h \
812 macroexp.h ui-file.h regcache.h gdb_string.h tracepoint.h i386-tdep.h \ 809 macroexp.h ui-file.h regcache.h gdb_string.h tracepoint.h i386-tdep.h \
813 inf-child.h p-lang.h event-top.h gdbtypes.h user-regs.h \ 810 inf-child.h p-lang.h event-top.h gdbtypes.h user-regs.h \
814 regformats/regdef.h config/alpha/nm-osf3.h config/i386/nm-i386gnu.h \ 811 regformats/regdef.h config/alpha/nm-osf3.h config/i386/nm-i386gnu.h \
815 config/i386/nm-fbsd.h \ 812 config/i386/nm-fbsd.h \
816 config/nm-nto.h config/sparc/nm-sol2.h config/nm-linux.h \ 813 config/nm-nto.h config/sparc/nm-sol2.h config/nm-linux.h \
817 config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \ 814 config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \
818 annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h \ 815 annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h \
819 remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \ 816 remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \
820 sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \ 817 sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \
821 gdb_usleep.h jit.h xml-syscall.h microblaze-tdep.h \ 818 gdb_usleep.h jit.h xml-syscall.h microblaze-tdep.h \
822 psymtab.h psympriv.h progspace.h bfin-tdep.h ia64-hpux-tdep.h \ 819 psymtab.h psympriv.h progspace.h bfin-tdep.h ia64-hpux-tdep.h \
823 amd64-darwin-tdep.h charset-list.h \ 820 amd64-darwin-tdep.h charset-list.h \
824 config/djgpp/langinfo.h config/djgpp/nl_types.h darwin-nat.h \ 821 config/djgpp/langinfo.h config/djgpp/nl_types.h darwin-nat.h \
825 dicos-tdep.h filesystem.h gcore.h gdb_wchar.h hppabsd-tdep.h \ 822 dicos-tdep.h filesystem.h gcore.h gdb_wchar.h hppabsd-tdep.h \
826 i386-darwin-tdep.h i386-nat.h linux-record.h moxie-tdep.h \ 823 i386-darwin-tdep.h i386-nat.h linux-record.h moxie-tdep.h \
827 osdata.h procfs.h python/py-event.h python/py-events.h python/py-stopevent.h \ 824 osdata.h procfs.h python/py-event.h python/py-events.h python/py-stopevent.h \
828 python/python-internal.h python/python.h ravenscar-thread.h record.h \ 825 python/python-internal.h python/python.h ravenscar-thread.h record.h \
829 solib-darwin.h solib-ia64-hpux.h solib-spu.h windows-nat.h xcoffread.h \ 826 solib-darwin.h solib-ia64-hpux.h solib-spu.h windows-nat.h xcoffread.h \
830 gnulib/extra/arg-nonnull.h gnulib/extra/c++defs.h gnulib/extra/warn-on-use.h \ 827 gnulib/import/extra/snippet/arg-nonnull.h gnulib/import/extra/snippet/c++defs.h \
831 gnulib/stddef.in.h inline-frame.h skip.h \ 828 gnulib/import/extra/snippet/warn-on-use.h \
829 gnulib/import/stddef.in.h gnulib/import/inttypes.in.h inline-frame.h skip.h \
832 common/common-utils.h common/xml-utils.h common/buffer.h common/ptid.h \ 830 common/common-utils.h common/xml-utils.h common/buffer.h common/ptid.h \
833 common/linux-osdata.h gdb-dlfcn.h 831 common/format.h \
832 common/linux-osdata.h gdb-dlfcn.h auto-load.h probe.h stap-probe.h
834 833
835 # Header files that already have srcdir in them, or which are in objdir. 834 # Header files that already have srcdir in them, or which are in objdir.
836 835
837 HFILES_WITH_SRCDIR = ../bfd/bfd.h jit-reader.h 836 HFILES_WITH_SRCDIR = ../bfd/bfd.h jit-reader.h
838 837
839 838
840 # GDB "info" files, which should be included in their entirety 839 # GDB "info" files, which should be included in their entirety
841 INFOFILES = gdb.info* 840 INFOFILES = gdb.info*
842 841
843 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar 842 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
(...skipping 11 matching lines...) Expand all
855 # Don't include YYFILES (*.c) because we already include *.y in SFILES, 854 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
856 # and it's more useful to see it in the .y file. 855 # and it's more useful to see it in the .y file.
857 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \ 856 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
858 $(CONFIG_SRCS) 857 $(CONFIG_SRCS)
859 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR) 858 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
860 859
861 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \ 860 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
862 version.o \ 861 version.o \
863 annotate.o \ 862 annotate.o \
864 addrmap.o \ 863 addrmap.o \
865 » auxv.o \ 864 » auto-load.o auxv.o \
865 » agent.o \
866 bfd-target.o \ 866 bfd-target.o \
867 » blockframe.o breakpoint.o findvar.o regcache.o \ 867 » blockframe.o breakpoint.o findvar.o regcache.o cleanups.o \
868 » charset.o continuations.o disasm.o dummy-frame.o dfp.o \ 868 » charset.o continuations.o corelow.o disasm.o dummy-frame.o dfp.o \
869 source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \ 869 source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
870 block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \ 870 block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \
871 infcall.o \ 871 infcall.o \
872 infcmd.o infrun.o \ 872 infcmd.o infrun.o \
873 expprint.o environ.o stack.o thread.o \ 873 expprint.o environ.o stack.o thread.o \
874 exceptions.o \ 874 exceptions.o \
875 filesystem.o \ 875 filesystem.o \
876 inf-child.o \ 876 inf-child.o \
877 interps.o \ 877 interps.o \
878 main.o \ 878 main.o \
879 macrotab.o macrocmd.o macroexp.o macroscope.o \ 879 macrotab.o macrocmd.o macroexp.o macroscope.o \
880 mi-common.o \ 880 mi-common.o \
881 event-loop.o event-top.o inf-loop.o completer.o \ 881 event-loop.o event-top.o inf-loop.o completer.o \
882 gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \ 882 gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
883 memattr.o mem-break.o target.o parse.o language.o buildsym.o \ 883 memattr.o mem-break.o target.o parse.o language.o buildsym.o \
884 findcmd.o \ 884 findcmd.o \
885 std-regs.o \ 885 std-regs.o \
886 signals.o \ 886 signals.o \
887 exec.o reverse.o \ 887 exec.o reverse.o \
888 bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \ 888 bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
889 dbxread.o coffread.o coff-pe-read.o \ 889 dbxread.o coffread.o coff-pe-read.o \
890 dwarf2read.o mipsread.o stabsread.o corefile.o \ 890 dwarf2read.o mipsread.o stabsread.o corefile.o \
891 dwarf2expr.o dwarf2loc.o dwarf2-frame.o dwarf2-frame-tailcall.o \ 891 dwarf2expr.o dwarf2loc.o dwarf2-frame.o dwarf2-frame-tailcall.o \
892 ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o \ 892 ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o \
893 » ada-tasks.o \ 893 » ada-tasks.o ada-varobj.o \
894 ui-out.o cli-out.o \ 894 ui-out.o cli-out.o \
895 » varobj.o vec.o wrapper.o \ 895 » varobj.o vec.o \
896 » go-lang.o go-valprint.o go-typeprint.o \
896 jv-lang.o jv-valprint.o jv-typeprint.o \ 897 jv-lang.o jv-valprint.o jv-typeprint.o \
897 m2-lang.o opencl-lang.o p-lang.o p-typeprint.o p-valprint.o \ 898 m2-lang.o opencl-lang.o p-lang.o p-typeprint.o p-valprint.o \
898 sentinel-frame.o \ 899 sentinel-frame.o \
899 complaints.o typeprint.o \ 900 complaints.o typeprint.o \
900 ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \ 901 ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
901 ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o \ 902 ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o \
902 m2-valprint.o \ 903 m2-valprint.o \
903 serial.o mdebugread.o top.o utils.o \ 904 serial.o mdebugread.o top.o utils.o \
904 ui-file.o \ 905 ui-file.o \
905 user-regs.o \ 906 user-regs.o \
906 frame.o frame-unwind.o doublest.o \ 907 frame.o frame-unwind.o doublest.o \
907 frame-base.o \ 908 frame-base.o \
908 inline-frame.o \ 909 inline-frame.o \
909 gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o \ 910 gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o \
910 cp-namespace.o \ 911 cp-namespace.o \
911 reggroups.o regset.o \ 912 reggroups.o regset.o \
912 trad-frame.o \ 913 trad-frame.o \
913 tramp-frame.o \ 914 tramp-frame.o \
914 solib.o solib-target.o \ 915 solib.o solib-target.o \
915 prologue-value.o memory-map.o memrange.o \ 916 prologue-value.o memory-map.o memrange.o \
916 xml-support.o xml-syscall.o xml-utils.o \ 917 xml-support.o xml-syscall.o xml-utils.o \
917 target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \ 918 target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \
918 inferior.o osdata.o gdb_usleep.o record.o gcore.o \ 919 inferior.o osdata.o gdb_usleep.o record.o gcore.o \
919 » jit.o progspace.o skip.o \ 920 » jit.o progspace.o skip.o probe.o \
920 » common-utils.o buffer.o ptid.o gdb-dlfcn.o 921 » common-utils.o buffer.o ptid.o gdb-dlfcn.o common-agent.o \
922 » format.o
921 923
922 TSOBS = inflow.o 924 TSOBS = inflow.o
923 925
924 SUBDIRS = doc @subdirs@ data-directory 926 SUBDIRS = doc @subdirs@ data-directory $(GNULIB_BUILDDIR)
925 CLEANDIRS = $(SUBDIRS) gnulib 927 CLEANDIRS = $(SUBDIRS)
926 928
927 # List of subdirectories in the build tree that must exist. 929 # List of subdirectories in the build tree that must exist.
928 # This is used to force build failures in existing trees when 930 # This is used to force build failures in existing trees when
929 # a new directory is added. 931 # a new directory is added.
930 # The format here is for the `case' shell command. 932 # The format here is for the `case' shell command.
931 REQUIRED_SUBDIRS = doc | testsuite | gnulib | data-directory 933 REQUIRED_SUBDIRS = doc | testsuite | $(GNULIB_BUILDDIR) | data-directory
932 934
933 # For now, shortcut the "configure GDB for fewer languages" stuff. 935 # For now, shortcut the "configure GDB for fewer languages" stuff.
934 YYFILES = c-exp.c \ 936 YYFILES = c-exp.c \
935 cp-name-parser.c \ 937 cp-name-parser.c \
936 objc-exp.c \ 938 objc-exp.c \
937 ada-lex.c \ 939 ada-lex.c \
938 ada-exp.c \ 940 ada-exp.c \
939 jv-exp.c \ 941 jv-exp.c \
940 » f-exp.c m2-exp.c p-exp.c 942 » f-exp.c go-exp.c m2-exp.c p-exp.c
941 YYOBJ = c-exp.o \ 943 YYOBJ = c-exp.o \
942 cp-name-parser.o \ 944 cp-name-parser.o \
943 objc-exp.o \ 945 objc-exp.o \
944 ada-exp.o \ 946 ada-exp.o \
945 jv-exp.o \ 947 jv-exp.o \
946 » f-exp.o m2-exp.o p-exp.o 948 » f-exp.o go-exp.o m2-exp.o p-exp.o
947 949
948 # Things which need to be built when making a distribution. 950 # Things which need to be built when making a distribution.
949 951
950 DISTSTUFF = $(YYFILES) 952 DISTSTUFF = $(YYFILES)
951 953
952 954
953 # All generated files which can be included by another file. 955 # All generated files which can be included by another file.
954 generated_files = config.h observer.h observer.inc ada-lex.c jit-reader.h \ 956 generated_files = config.h observer.h observer.inc ada-lex.c jit-reader.h \
955 $(GNULIB_H) $(NAT_GENERATED_FILES) 957 $(GNULIB_H) $(NAT_GENERATED_FILES)
956 958
957 .c.o: 959 .c.o:
958 $(COMPILE) $< 960 $(COMPILE) $<
959 $(POSTCOMPILE) 961 $(POSTCOMPILE)
960 962
961 all: gdb$(EXEEXT) $(CONFIG_ALL) 963 all: gdb$(EXEEXT) $(CONFIG_ALL)
962 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/tests uite//'`" subdir_do 964 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/tests uite//'`" subdir_do
963 .PHONY: all-tui
964 all-tui: $(TUI)$(EXEEXT)
965 965
966 installcheck: 966 installcheck:
967 967
968 # The check target can not use subdir_do, because subdir_do does not 968 # The check target can not use subdir_do, because subdir_do does not
969 # use TARGET_FLAGS_TO_PASS. 969 # use TARGET_FLAGS_TO_PASS.
970 check: force 970 check: force
971 @if [ -f testsuite/Makefile ]; then \ 971 @if [ -f testsuite/Makefile ]; then \
972 rootme=`pwd`; export rootme; \ 972 rootme=`pwd`; export rootme; \
973 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \ 973 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
974 cd testsuite; \ 974 cd testsuite; \
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
1033 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \ 1033 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1034 $(INSTALL_PROGRAM) gdb$(EXEEXT) \ 1034 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1035 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \ 1035 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1036 $(SHELL) $(srcdir)/../mkinstalldirs \ 1036 $(SHELL) $(srcdir)/../mkinstalldirs \
1037 $(DESTDIR)$(man1dir) ; \ 1037 $(DESTDIR)$(man1dir) ; \
1038 $(INSTALL_DATA) $(srcdir)/gdb.1 \ 1038 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1039 $(DESTDIR)$(man1dir)/$$transformed_name.1 ; \ 1039 $(DESTDIR)$(man1dir)/$$transformed_name.1 ; \
1040 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \ 1040 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
1041 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-rea der.h 1041 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-rea der.h
1042 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do 1042 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1043 .PHONY: install-tui
1044 install-tui:
1045 transformed_name=`t='$(program_transform_name)'; \
1046 echo $(TUI) | sed -e "$$t"` ; \
1047 if test "x$$transformed_name" = x; then \
1048 transformed_name=$(TUI) ; \
1049 else \
1050 true ; \
1051 fi ; \
1052 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1053 $(INSTALL_PROGRAM) $(TUI)$(EXEEXT) \
1054 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1055 $(SHELL) $(srcdir)/../mkinstalldirs \
1056 $(DESTDIR)$(man1dir) ; \
1057 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1058 $(DESTDIR)$(man1dir)/$$transformed_name.1
1059 1043
1060 install-python: 1044 install-python:
1061 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb 1045 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
1062 1046
1063 uninstall: force $(CONFIG_UNINSTALL) 1047 uninstall: force $(CONFIG_UNINSTALL)
1064 transformed_name=`t='$(program_transform_name)'; \ 1048 transformed_name=`t='$(program_transform_name)'; \
1065 echo gdb | sed -e $$t` ; \ 1049 echo gdb | sed -e $$t` ; \
1066 if test "x$$transformed_name" = x; then \ 1050 if test "x$$transformed_name" = x; then \
1067 transformed_name=gdb ; \ 1051 transformed_name=gdb ; \
1068 else \ 1052 else \
1069 true ; \ 1053 true ; \
1070 fi ; \ 1054 fi ; \
1071 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \ 1055 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1072 $(DESTDIR)$(man1dir)/$$transformed_name.1 1056 $(DESTDIR)$(man1dir)/$$transformed_name.1
1073 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do 1057 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1074 .PHONY: uninstall-tui
1075 uninstall-tui:
1076 transformed_name=`t='$(program_transform_name)'; \
1077 echo $(TUI) | sed -e $$t` ; \
1078 if test "x$$transformed_name" = x; then \
1079 transformed_name=$(TUI) ; \
1080 else \
1081 true ; \
1082 fi ; \
1083 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1084 $(DESTDIR)$(man1dir)/$$transformed_name.1
1085 1058
1086 # The C++ name parser can be built standalone for testing. 1059 # The C++ name parser can be built standalone for testing.
1087 test-cp-name-parser.o: cp-name-parser.c 1060 test-cp-name-parser.o: cp-name-parser.c
1088 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c 1061 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
1089 $(POSTCOMPILE) 1062 $(POSTCOMPILE)
1090 1063
1091 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY) 1064 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
1092 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \ 1065 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
1093 test-cp-name-parser.o $(LIBIBERTY) 1066 test-cp-name-parser.o $(LIBIBERTY)
1094 1067
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 @echo 'void' >>init.c-tmp 1144 @echo 'void' >>init.c-tmp
1172 @echo 'initialize_all_files (void)' >>init.c-tmp 1145 @echo 'initialize_all_files (void)' >>init.c-tmp
1173 @echo '{' >>init.c-tmp 1146 @echo '{' >>init.c-tmp
1174 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp 1147 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
1175 @echo '}' >>init.c-tmp 1148 @echo '}' >>init.c-tmp
1176 @rm init.l-tmp 1149 @rm init.l-tmp
1177 @mv init.c-tmp init.c 1150 @mv init.c-tmp init.c
1178 1151
1179 .PRECIOUS: init.c 1152 .PRECIOUS: init.c
1180 1153
1154 # Create a library of the gdb object files and build GDB by linking
1155 # against that.
1156 #
1157 # init.o is very important. It pulls in the rest of GDB.
1158 LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
1159 libgdb.a: $(LIBGDB_OBS)
1160 -rm -f libgdb.a
1161 $(AR) q libgdb.a $(LIBGDB_OBS)
1162 $(RANLIB) libgdb.a
1163
1181 # Removing the old gdb first works better if it is running, at least on SunOS. 1164 # Removing the old gdb first works better if it is running, at least on SunOS.
1182 gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS) 1165 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1183 rm -f gdb$(EXEEXT) 1166 rm -f gdb$(EXEEXT)
1184 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \ 1167 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1185 » » -o gdb$(EXEEXT) gdb.o libgdb.a \ 1168 » » -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
1186 » » $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1187
1188 $(TUI)$(EXEEXT): tui-main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1189 » rm -f $(TUI)$(EXEEXT)
1190 » $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1191 » » -o $(TUI)$(EXEEXT) tui-main.o libgdb.a \
1192 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) 1169 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1193 1170
1194 # Convenience rule to handle recursion. 1171 # Convenience rule to handle recursion.
1195 $(LIBGNU) $(GNULIB_H): all-lib 1172 $(LIBGNU) $(GNULIB_H): all-lib
1196 all-lib: gnulib/Makefile 1173 all-lib: $(GNULIB_BUILDDIR)/Makefile
1197 » @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=gnulib subdir_do 1174 » @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=$(GNULIB_BUILDDIR) subdir_do
1198 .PHONY: all-lib 1175 .PHONY: all-lib
1199 1176
1200 # Convenience rule to handle recursion. 1177 # Convenience rule to handle recursion.
1201 .PHONY: all-data-directory 1178 .PHONY: all-data-directory
1202 all-data-directory: data-directory/Makefile 1179 all-data-directory: data-directory/Makefile
1203 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do 1180 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
1204 1181
1205 # Create a library of the gdb object files and build GDB by linking
1206 # against that.
1207 #
1208 # init.o is very important. It pulls in the rest of GDB.
1209 LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
1210 libgdb.a: $(LIBGDB_OBS)
1211 -rm -f libgdb.a
1212 $(AR) q libgdb.a $(LIBGDB_OBS)
1213 $(RANLIB) libgdb.a
1214
1215 # This is useful when debugging GDB, because some Unix's don't let you run GDB 1182 # This is useful when debugging GDB, because some Unix's don't let you run GDB
1216 # on itself without copying the executable. So "make gdb1" will make 1183 # on itself without copying the executable. So "make gdb1" will make
1217 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1". 1184 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1218 # Removing gdb1 before the copy is the right thing if gdb1 is open 1185 # Removing gdb1 before the copy is the right thing if gdb1 is open
1219 # in another process. 1186 # in another process.
1220 gdb1$(EXEEXT): gdb$(EXEEXT) 1187 gdb1$(EXEEXT): gdb$(EXEEXT)
1221 rm -f gdb1$(EXEEXT) 1188 rm -f gdb1$(EXEEXT)
1222 cp gdb$(EXEEXT) gdb1$(EXEEXT) 1189 cp gdb$(EXEEXT) gdb1$(EXEEXT)
1223 1190
1224 # Put the proper machine-specific files first, so M-. on a machine 1191 # Put the proper machine-specific files first, so M-. on a machine
(...skipping 19 matching lines...) Expand all
1244 clean mostlyclean: $(CONFIG_CLEAN) 1211 clean mostlyclean: $(CONFIG_CLEAN)
1245 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do 1212 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
1246 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp 1213 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
1247 rm -f init.c version.c observer.h observer.inc 1214 rm -f init.c version.c observer.h observer.inc
1248 rm -f gdb$(EXEEXT) core make.log 1215 rm -f gdb$(EXEEXT) core make.log
1249 rm -f gdb[0-9]$(EXEEXT) 1216 rm -f gdb[0-9]$(EXEEXT)
1250 rm -f test-cp-name-parser$(EXEEXT) 1217 rm -f test-cp-name-parser$(EXEEXT)
1251 rm -f xml-builtin.c stamp-xml 1218 rm -f xml-builtin.c stamp-xml
1252 rm -f $(DEPDIR)/* 1219 rm -f $(DEPDIR)/*
1253 1220
1254 .PHONY: clean-tui
1255 clean-tui:
1256 rm -f $(TUI)$(EXEEXT)
1257
1258 # This used to depend on c-exp.c m2-exp.c TAGS 1221 # This used to depend on c-exp.c m2-exp.c TAGS
1259 # I believe this is wrong; the makefile standards for distclean just 1222 # I believe this is wrong; the makefile standards for distclean just
1260 # describe removing files; the only sort of "re-create a distribution" 1223 # describe removing files; the only sort of "re-create a distribution"
1261 # functionality described is if the distributed files are unmodified. 1224 # functionality described is if the distributed files are unmodified.
1262 # NB: While GDBSERVER might be configured on native systems, it isn't 1225 # NB: While GDBSERVER might be configured on native systems, it isn't
1263 # always included in SUBDIRS. Remove the gdbserver files explicitly. 1226 # always included in SUBDIRS. Remove the gdbserver files explicitly.
1264 distclean: clean 1227 distclean: clean
1265 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do 1228 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
1229 rm -rf $(GNULIB_BUILDDIR)
1266 rm -f gdbserver/config.status gdbserver/config.log 1230 rm -f gdbserver/config.status gdbserver/config.log
1267 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h 1231 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1268 rm -f gdbserver/Makefile gdbserver/config.cache 1232 rm -f gdbserver/Makefile gdbserver/config.cache
1269 » rm -f nm.h config.status config.h stamp-h .gdbinit jit-reader.h 1233 » rm -f nm.h config.status config.h stamp-h gdb-gdb.gdb jit-reader.h
1270 rm -f y.output yacc.acts yacc.tmp y.tab.h 1234 rm -f y.output yacc.acts yacc.tmp y.tab.h
1271 rm -f config.log config.cache 1235 rm -f config.log config.cache
1272 rm -f Makefile 1236 rm -f Makefile
1273 rm -rf $(DEPDIR) 1237 rm -rf $(DEPDIR)
1274 1238
1275 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean 1239 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1276 realclean: maintainer-clean 1240 realclean: maintainer-clean
1277 1241
1278 local-maintainer-clean: 1242 local-maintainer-clean:
1279 @echo "This command is intended for maintainers to use;" 1243 @echo "This command is intended for maintainers to use;"
1280 @echo "it deletes files that may require special tools to rebuild." 1244 @echo "it deletes files that may require special tools to rebuild."
1281 rm -f c-exp.c \ 1245 rm -f c-exp.c \
1282 cp-name-parser.c \ 1246 cp-name-parser.c \
1283 ada-lex.c ada-exp.c \ 1247 ada-lex.c ada-exp.c \
1284 objc-exp.c \ 1248 objc-exp.c \
1285 jv-exp.tab \ 1249 jv-exp.tab \
1286 » » f-exp.c m2-exp.c p-exp.c 1250 » » f-exp.c go-exp.c m2-exp.c p-exp.c
1287 rm -f TAGS $(INFOFILES) 1251 rm -f TAGS $(INFOFILES)
1288 rm -f $(YYFILES) 1252 rm -f $(YYFILES)
1289 rm -f nm.h config.status 1253 rm -f nm.h config.status
1290 1254
1291 do-maintainer-clean: 1255 do-maintainer-clean:
1292 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \ 1256 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
1293 subdir_do 1257 subdir_do
1294 1258
1295 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS) 1259 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1296 cd doc; $(MAKE) $(MFLAGS) diststuff 1260 cd doc; $(MAKE) $(MFLAGS) diststuff
(...skipping 14 matching lines...) Expand all
1311 else true ; fi ; \ 1275 else true ; fi ; \
1312 done 1276 done
1313 1277
1314 Makefile: Makefile.in config.status @frags@ 1278 Makefile: Makefile.in config.status @frags@
1315 # Regenerate the Makefile and the tm.h / nm.h links. 1279 # Regenerate the Makefile and the tm.h / nm.h links.
1316 CONFIG_FILES="Makefile" \ 1280 CONFIG_FILES="Makefile" \
1317 CONFIG_COMMANDS= \ 1281 CONFIG_COMMANDS= \
1318 CONFIG_HEADERS= \ 1282 CONFIG_HEADERS= \
1319 $(SHELL) config.status 1283 $(SHELL) config.status
1320 1284
1321 gnulib/Makefile: gnulib/Makefile.in gnulib/Makefile.in config.status @frags@ 1285 $(GNULIB_BUILDDIR)/Makefile: gnulib/Makefile.in config.status @frags@
1322 » CONFIG_FILES="gnulib/Makefile" \ 1286 » @cd $(GNULIB_BUILDDIR); CONFIG_FILES="Makefile" \
1323 CONFIG_COMMANDS="depfiles" \ 1287 CONFIG_COMMANDS="depfiles" \
1324 CONFIG_HEADERS= \ 1288 CONFIG_HEADERS= \
1325 CONFIG_LINKS= \ 1289 CONFIG_LINKS= \
1326 $(SHELL) config.status 1290 $(SHELL) config.status
1327 1291
1328 data-directory/Makefile: data-directory/Makefile.in config.status @frags@ 1292 data-directory/Makefile: data-directory/Makefile.in config.status @frags@
1329 CONFIG_FILES="data-directory/Makefile" \ 1293 CONFIG_FILES="data-directory/Makefile" \
1330 CONFIG_COMMANDS="depfiles" \ 1294 CONFIG_COMMANDS="depfiles" \
1331 CONFIG_HEADERS= \ 1295 CONFIG_HEADERS= \
1332 CONFIG_LINKS= \ 1296 CONFIG_LINKS= \
1333 $(SHELL) config.status 1297 $(SHELL) config.status
1334 1298
1335 jit-reader.h: $(srcdir)/jit-reader.in 1299 jit-reader.h: $(srcdir)/jit-reader.in
1336 $(SHELL) config.status $@ 1300 $(SHELL) config.status $@
1337 1301
1338 config.h: stamp-h ; @true 1302 config.h: stamp-h ; @true
1339 stamp-h: $(srcdir)/config.in config.status 1303 stamp-h: $(srcdir)/config.in config.status
1340 CONFIG_HEADERS=config.h:config.in \ 1304 CONFIG_HEADERS=config.h:config.in \
1341 CONFIG_COMMANDS="default depdir" \ 1305 CONFIG_COMMANDS="default depdir" \
1342 CONFIG_FILES= \ 1306 CONFIG_FILES= \
1343 CONFIG_LINKS= \ 1307 CONFIG_LINKS= \
1344 $(SHELL) config.status 1308 $(SHELL) config.status
1345 1309
1346 config.status: $(srcdir)/configure configure.tgt configure.host 1310 config.status: $(srcdir)/configure configure.tgt configure.host
1347 $(SHELL) config.status --recheck 1311 $(SHELL) config.status --recheck
1348 1312
1349 ACLOCAL = aclocal 1313 ACLOCAL = aclocal
1350 ACLOCAL_AMFLAGS = -I gnulib/m4 -I ../config 1314 ACLOCAL_AMFLAGS = -I ../config
1351 aclocal_m4_deps = \ 1315 aclocal_m4_deps = \
1352 configure.ac \ 1316 configure.ac \
1353 » gnulib/m4/00gnulib.m4 \ 1317 » acx_configure_dir.m4 \
1354 » gnulib/m4/extensions.m4 \
1355 » gnulib/m4/gnulib-common.m4 \
1356 » gnulib/m4/gnulib-comp.m4 \
1357 » gnulib/m4/include_next.m4 \
1358 » gnulib/m4/longlong.m4 \
1359 » gnulib/m4/memchr.m4 \
1360 » gnulib/m4/memmem.m4 \
1361 » gnulib/m4/mmap-anon.m4 \
1362 » gnulib/m4/multiarch.m4 \
1363 » gnulib/m4/onceonly.m4 \
1364 » gnulib/m4/stddef_h.m4 \
1365 » gnulib/m4/stdint.m4 \
1366 » gnulib/m4/string_h.m4 \
1367 » gnulib/m4/warn-on-use.m4 \
1368 » gnulib/m4/wchar_h.m4 \
1369 » gnulib/m4/wchar_t.m4 \
1370 » gnulib/m4/wint_t.m4 \
1371 ../config/extensions.m4 \ 1318 ../config/extensions.m4 \
1372 ../config/lead-dot.m4 \ 1319 ../config/lead-dot.m4 \
1373 ../config/proginstall.m4 \ 1320 ../config/proginstall.m4 \
1374 ../bfd/bfd.m4 \ 1321 ../bfd/bfd.m4 \
1375 ../config/acinclude.m4 \ 1322 ../config/acinclude.m4 \
1376 ../config/override.m4 \ 1323 ../config/override.m4 \
1377 ../config/gettext-sister.m4 \ 1324 ../config/gettext-sister.m4 \
1378 ../config/lib-ld.m4 \ 1325 ../config/lib-ld.m4 \
1379 ../config/lib-prefix.m4 \ 1326 ../config/lib-prefix.m4 \
1380 ../config/lib-link.m4 \ 1327 ../config/lib-link.m4 \
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
1476 amd64obsd-nat.c amd64obsd-tdep.c \ 1423 amd64obsd-nat.c amd64obsd-tdep.c \
1477 amd64-darwin-tdep.c \ 1424 amd64-darwin-tdep.c \
1478 amd64-dicos-tdep.c \ 1425 amd64-dicos-tdep.c \
1479 amd64-linux-nat.c amd64-linux-tdep.c \ 1426 amd64-linux-nat.c amd64-linux-tdep.c \
1480 amd64-sol2-tdep.c \ 1427 amd64-sol2-tdep.c \
1481 arm-linux-nat.c arm-linux-tdep.c arm-symbian-tdep.c arm-tdep.c \ 1428 arm-linux-nat.c arm-linux-tdep.c arm-symbian-tdep.c arm-tdep.c \
1482 armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \ 1429 armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \
1483 avr-tdep.c \ 1430 avr-tdep.c \
1484 bfin-linux-tdep.c bfin-tdep.c \ 1431 bfin-linux-tdep.c bfin-tdep.c \
1485 bsd-uthread.c bsd-kvm.c \ 1432 bsd-uthread.c bsd-kvm.c \
1486 » core-regset.c corelow.c \ 1433 » core-regset.c \
1487 dcache.c dicos-tdep.c darwin-nat.c \ 1434 dcache.c dicos-tdep.c darwin-nat.c \
1488 exec.c \ 1435 exec.c \
1489 fbsd-nat.c \ 1436 fbsd-nat.c \
1490 fork-child.c \ 1437 fork-child.c \
1491 glibc-tdep.c \ 1438 glibc-tdep.c \
1492 go32-nat.c h8300-tdep.c \ 1439 go32-nat.c h8300-tdep.c \
1493 hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \ 1440 hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
1494 hppa-linux-tdep.c hppa-linux-nat.c \ 1441 hppa-linux-tdep.c hppa-linux-nat.c \
1495 hppabsd-nat.c hppabsd-tdep.c \ 1442 hppabsd-nat.c hppabsd-tdep.c \
1496 hppaobsd-tdep.c \ 1443 hppaobsd-tdep.c \
1497 hppanbsd-nat.c hppanbsd-tdep.c \ 1444 hppanbsd-nat.c hppanbsd-tdep.c \
1498 i386-tdep.c i386-linux-nat.c \ 1445 i386-tdep.c i386-linux-nat.c \
1499 i386v4-nat.c i386-cygwin-tdep.c \ 1446 i386v4-nat.c i386-cygwin-tdep.c \
1500 i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \ 1447 i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
1501 i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \ 1448 i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \
1502 i387-tdep.c \ 1449 i387-tdep.c \
1503 i386-darwin-tdep.c i386-darwin-nat.c \ 1450 i386-darwin-tdep.c i386-darwin-nat.c \
1504 i386-dicos-tdep.c \ 1451 i386-dicos-tdep.c \
1505 i386-linux-tdep.c i386-nat.c \ 1452 i386-linux-tdep.c i386-nat.c \
1506 i386-sol2-nat.c i386-sol2-tdep.c \ 1453 i386-sol2-nat.c i386-sol2-tdep.c \
1507 i386gnu-nat.c i386gnu-tdep.c \ 1454 i386gnu-nat.c i386gnu-tdep.c \
1508 ia64-hpux-nat.c ia64-hpux-tdep.c \ 1455 ia64-hpux-nat.c ia64-hpux-tdep.c \
1509 » ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \ 1456 » ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c ia64-vms-tdep.c \
1510 inf-ptrace.c inf-ttrace.c \ 1457 inf-ptrace.c inf-ttrace.c \
1511 irix5-nat.c \ 1458 irix5-nat.c \
1512 » libunwind-frame.c \ 1459 » ia64-libunwind-tdep.c \
1513 linux-fork.c \ 1460 linux-fork.c \
1514 linux-tdep.c \ 1461 linux-tdep.c \
1515 linux-record.c \ 1462 linux-record.c \
1516 lm32-tdep.c \ 1463 lm32-tdep.c \
1517 m68hc11-tdep.c \ 1464 m68hc11-tdep.c \
1518 m32r-tdep.c \ 1465 m32r-tdep.c \
1519 m32r-linux-nat.c m32r-linux-tdep.c \ 1466 m32r-linux-nat.c m32r-linux-tdep.c \
1520 m68k-tdep.c \ 1467 m68k-tdep.c \
1521 m68kbsd-nat.c m68kbsd-tdep.c \ 1468 m68kbsd-nat.c m68kbsd-tdep.c \
1522 m68klinux-nat.c m68klinux-tdep.c \ 1469 m68klinux-nat.c m68klinux-tdep.c \
1523 m88k-tdep.c m88kbsd-nat.c \ 1470 m88k-tdep.c m88kbsd-nat.c \
1524 microblaze-tdep.c microblaze-linux-tdep.c \ 1471 microblaze-tdep.c microblaze-linux-tdep.c \
1525 mingw-hdep.c \ 1472 mingw-hdep.c \
1526 mips-linux-nat.c mips-linux-tdep.c \ 1473 mips-linux-nat.c mips-linux-tdep.c \
1527 mips-irix-tdep.c \ 1474 mips-irix-tdep.c \
1528 mips-tdep.c \ 1475 mips-tdep.c \
1529 mipsnbsd-nat.c mipsnbsd-tdep.c \ 1476 mipsnbsd-nat.c mipsnbsd-tdep.c \
1530 mips64obsd-nat.c mips64obsd-tdep.c \ 1477 mips64obsd-nat.c mips64obsd-tdep.c \
1531 nbsd-nat.c nbsd-tdep.c obsd-tdep.c \ 1478 nbsd-nat.c nbsd-tdep.c obsd-tdep.c \
1532 solib-osf.c \ 1479 solib-osf.c \
1533 somread.c solib-som.c \ 1480 somread.c solib-som.c \
1534 posix-hdep.c \ 1481 posix-hdep.c \
1535 ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \ 1482 ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
1536 ppcnbsd-nat.c ppcnbsd-tdep.c \ 1483 ppcnbsd-nat.c ppcnbsd-tdep.c \
1537 ppcobsd-nat.c ppcobsd-tdep.c \ 1484 ppcobsd-nat.c ppcobsd-tdep.c \
1538 procfs.c \ 1485 procfs.c \
1539 remote-m32r-sdi.c remote-mips.c \ 1486 remote-m32r-sdi.c remote-mips.c \
1540 remote-sim.c \ 1487 remote-sim.c \
1541 dcache.c \ 1488 dcache.c \
1489 rl78-tdep.c \
1542 rs6000-nat.c rs6000-tdep.c \ 1490 rs6000-nat.c rs6000-tdep.c \
1491 rx-tdep.c \
1543 s390-tdep.c s390-nat.c \ 1492 s390-tdep.c s390-nat.c \
1544 score-tdep.c \ 1493 score-tdep.c \
1545 ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \ 1494 ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \
1546 sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \ 1495 sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
1547 sol2-tdep.c \ 1496 sol2-tdep.c \
1548 solib-irix.c solib-svr4.c solib-sunos.c \ 1497 solib-irix.c solib-svr4.c solib-sunos.c \
1549 sparc-linux-nat.c sparc-linux-tdep.c \ 1498 sparc-linux-nat.c sparc-linux-tdep.c \
1550 sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-sol2-tdep.c \ 1499 sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-sol2-tdep.c \
1551 sparc-nat.c sparc-tdep.c sparc64-linux-nat.c sparc64-linux-tdep.c \ 1500 sparc-nat.c sparc-tdep.c sparc64-linux-nat.c sparc64-linux-tdep.c \
1552 sparc64-nat.c sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \ 1501 sparc64-nat.c sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
1553 sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \ 1502 sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
1554 sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \ 1503 sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
1555 spu-linux-nat.c spu-tdep.c spu-multiarch.c solib-spu.c \ 1504 spu-linux-nat.c spu-tdep.c spu-multiarch.c solib-spu.c \
1505 tilegx-linux-nat.c tilegx-tdep.c tilegx-linux-tdep.c \
1556 v850-tdep.c \ 1506 v850-tdep.c \
1557 vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \ 1507 vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
1558 windows-nat.c windows-tdep.c \ 1508 windows-nat.c windows-tdep.c \
1559 xcoffread.c xcoffsolib.c \ 1509 xcoffread.c xcoffsolib.c \
1560 xstormy16-tdep.c \ 1510 xstormy16-tdep.c \
1561 xtensa-tdep.c xtensa-config.c \ 1511 xtensa-tdep.c xtensa-config.c \
1562 xtensa-linux-tdep.c xtensa-linux-nat.c xtensa-xtregs.c 1512 xtensa-linux-tdep.c xtensa-linux-nat.c xtensa-xtregs.c
1563 1513
1564 # Some files need explicit build rules (due to -Werror problems) or due 1514 # Some files need explicit build rules (due to -Werror problems) or due
1565 # to sub-directory fun 'n' games. 1515 # to sub-directory fun 'n' games.
1566 1516
1567 # main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR.
1568 main.o: $(srcdir)/main.c
1569 $(COMPILE) $(TARGET_SYSTEM_ROOT_DEFINE) -DBINDIR=\"$(bindir)\" $(srcdir) /main.c
1570 $(POSTCOMPILE)
1571
1572 # FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral 1517 # FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral
1573 # errors. It turns out that that is the least of monitor.c's 1518 # errors. It turns out that that is the least of monitor.c's
1574 # problems. The function print_vsprintf appears to be using 1519 # problems. The function print_vsprintf appears to be using
1575 # va_arg(long) to extract CORE_ADDR parameters - something that 1520 # va_arg(long) to extract CORE_ADDR parameters - something that
1576 # definitly will not work. "monitor.c" needs to be rewritten so that 1521 # definitly will not work. "monitor.c" needs to be rewritten so that
1577 # it doesn't use format strings and instead uses callbacks. 1522 # it doesn't use format strings and instead uses callbacks.
1578 monitor.o: $(srcdir)/monitor.c 1523 monitor.o: $(srcdir)/monitor.c
1579 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \ 1524 $(COMPILE.pre) $(INTERNAL_CFLAGS) $(GDB_WARN_CFLAGS_NO_FORMAT) \
1580 $(COMPILE.post) $(srcdir)/monitor.c 1525 $(COMPILE.post) $(srcdir)/monitor.c
1581 $(POSTCOMPILE) 1526 $(POSTCOMPILE)
(...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
1890 $(POSTCOMPILE) 1835 $(POSTCOMPILE)
1891 1836
1892 mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c 1837 mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c
1893 $(COMPILE) $(srcdir)/mi/mi-cmd-env.c 1838 $(COMPILE) $(srcdir)/mi/mi-cmd-env.c
1894 $(POSTCOMPILE) 1839 $(POSTCOMPILE)
1895 1840
1896 mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c 1841 mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c
1897 $(COMPILE) $(srcdir)/mi/mi-cmd-file.c 1842 $(COMPILE) $(srcdir)/mi/mi-cmd-file.c
1898 $(POSTCOMPILE) 1843 $(POSTCOMPILE)
1899 1844
1845 mi-cmd-info.o: $(srcdir)/mi/mi-cmd-info.c
1846 $(COMPILE) $(srcdir)/mi/mi-cmd-info.c
1847 $(POSTCOMPILE)
1848
1900 mi-cmds.o: $(srcdir)/mi/mi-cmds.c 1849 mi-cmds.o: $(srcdir)/mi/mi-cmds.c
1901 $(COMPILE) $(srcdir)/mi/mi-cmds.c 1850 $(COMPILE) $(srcdir)/mi/mi-cmds.c
1902 $(POSTCOMPILE) 1851 $(POSTCOMPILE)
1903 1852
1904 mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c 1853 mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c
1905 $(COMPILE) $(srcdir)/mi/mi-cmd-stack.c 1854 $(COMPILE) $(srcdir)/mi/mi-cmd-stack.c
1906 $(POSTCOMPILE) 1855 $(POSTCOMPILE)
1907 1856
1908 mi-cmd-target.o: $(srcdir)/mi/mi-cmd-target.c 1857 mi-cmd-target.o: $(srcdir)/mi/mi-cmd-target.c
1909 $(COMPILE) $(srcdir)/mi/mi-cmd-target.c 1858 $(COMPILE) $(srcdir)/mi/mi-cmd-target.c
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
1963 $(POSTCOMPILE) 1912 $(POSTCOMPILE)
1964 1913
1965 ptid.o: ${srcdir}/common/ptid.c 1914 ptid.o: ${srcdir}/common/ptid.c
1966 $(COMPILE) $(srcdir)/common/ptid.c 1915 $(COMPILE) $(srcdir)/common/ptid.c
1967 $(POSTCOMPILE) 1916 $(POSTCOMPILE)
1968 1917
1969 buffer.o: ${srcdir}/common/buffer.c 1918 buffer.o: ${srcdir}/common/buffer.c
1970 $(COMPILE) $(srcdir)/common/buffer.c 1919 $(COMPILE) $(srcdir)/common/buffer.c
1971 $(POSTCOMPILE) 1920 $(POSTCOMPILE)
1972 1921
1922 format.o: ${srcdir}/common/format.c
1923 $(COMPILE) $(srcdir)/common/format.c
1924 $(POSTCOMPILE)
1925
1973 linux-osdata.o: ${srcdir}/common/linux-osdata.c 1926 linux-osdata.o: ${srcdir}/common/linux-osdata.c
1974 $(COMPILE) $(srcdir)/common/linux-osdata.c 1927 $(COMPILE) $(srcdir)/common/linux-osdata.c
1975 $(POSTCOMPILE) 1928 $(POSTCOMPILE)
1976 1929
1977 linux-procfs.o: $(srcdir)/common/linux-procfs.c 1930 linux-procfs.o: $(srcdir)/common/linux-procfs.c
1978 $(COMPILE) $(srcdir)/common/linux-procfs.c 1931 $(COMPILE) $(srcdir)/common/linux-procfs.c
1979 $(POSTCOMPILE) 1932 $(POSTCOMPILE)
1980 1933
1934 linux-ptrace.o: $(srcdir)/common/linux-ptrace.c
1935 $(COMPILE) $(srcdir)/common/linux-ptrace.c
1936 $(POSTCOMPILE)
1937
1938 common-agent.o: $(srcdir)/common/agent.c
1939 $(COMPILE) $(srcdir)/common/agent.c
1940 $(POSTCOMPILE)
1941
1942 vec.o: ${srcdir}/common/vec.c
1943 $(COMPILE) $(srcdir)/common/vec.c
1944 $(POSTCOMPILE)
1945
1981 # 1946 #
1982 # gdb/tui/ dependencies 1947 # gdb/tui/ dependencies
1983 # 1948 #
1984 # Need to explicitly specify the compile rule as make will do nothing 1949 # Need to explicitly specify the compile rule as make will do nothing
1985 # or try to compile the object file into the sub-directory. 1950 # or try to compile the object file into the sub-directory.
1986 1951
1987 tui.o: $(srcdir)/tui/tui.c 1952 tui.o: $(srcdir)/tui/tui.c
1988 $(COMPILE) $(srcdir)/tui/tui.c 1953 $(COMPILE) $(srcdir)/tui/tui.c
1989 $(POSTCOMPILE) 1954 $(POSTCOMPILE)
1990 1955
(...skipping 22 matching lines...) Expand all
2013 $(POSTCOMPILE) 1978 $(POSTCOMPILE)
2014 1979
2015 tui-io.o: $(srcdir)/tui/tui-io.c 1980 tui-io.o: $(srcdir)/tui/tui-io.c
2016 $(COMPILE) $(srcdir)/tui/tui-io.c 1981 $(COMPILE) $(srcdir)/tui/tui-io.c
2017 $(POSTCOMPILE) 1982 $(POSTCOMPILE)
2018 1983
2019 tui-layout.o: $(srcdir)/tui/tui-layout.c 1984 tui-layout.o: $(srcdir)/tui/tui-layout.c
2020 $(COMPILE) $(srcdir)/tui/tui-layout.c 1985 $(COMPILE) $(srcdir)/tui/tui-layout.c
2021 $(POSTCOMPILE) 1986 $(POSTCOMPILE)
2022 1987
2023 tui-main.o: $(srcdir)/tui/tui-main.c
2024 $(COMPILE) $(srcdir)/tui/tui-main.c
2025 $(POSTCOMPILE)
2026
2027 tui-out.o: $(srcdir)/tui/tui-out.c 1988 tui-out.o: $(srcdir)/tui/tui-out.c
2028 $(COMPILE) $(srcdir)/tui/tui-out.c 1989 $(COMPILE) $(srcdir)/tui/tui-out.c
2029 $(POSTCOMPILE) 1990 $(POSTCOMPILE)
2030 1991
2031 tui-regs.o: $(srcdir)/tui/tui-regs.c 1992 tui-regs.o: $(srcdir)/tui/tui-regs.c
2032 $(COMPILE) $(srcdir)/tui/tui-regs.c 1993 $(COMPILE) $(srcdir)/tui/tui-regs.c
2033 $(POSTCOMPILE) 1994 $(POSTCOMPILE)
2034 1995
2035 tui-source.o: $(srcdir)/tui/tui-source.c 1996 tui-source.o: $(srcdir)/tui/tui-source.c
2036 $(COMPILE) $(srcdir)/tui/tui-source.c 1997 $(COMPILE) $(srcdir)/tui/tui-source.c
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
2202 @GMAKE_TRUE@else 2163 @GMAKE_TRUE@else
2203 @GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \ 2164 @GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
2204 @GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC) 2165 @GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
2205 # depcomp handles atomicity for us, so we don't need a postcompile 2166 # depcomp handles atomicity for us, so we don't need a postcompile
2206 # step. 2167 # step.
2207 @GMAKE_TRUE@override POSTCOMPILE = 2168 @GMAKE_TRUE@override POSTCOMPILE =
2208 @GMAKE_TRUE@endif 2169 @GMAKE_TRUE@endif
2209 2170
2210 # A list of all the objects we might care about in this build, for 2171 # A list of all the objects we might care about in this build, for
2211 # dependency tracking. 2172 # dependency tracking.
2212 all_object_files = gdb.o tui-main.o $(LIBGDB_OBS) gdbtk-main.o \ 2173 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2213 test-cp-name-parser.o 2174 test-cp-name-parser.o
2214 2175
2215 # Ensure that generated files are created early. Use order-only 2176 # Ensure that generated files are created early. Use order-only
2216 # dependencies if available. They require GNU make 3.80 or newer, 2177 # dependencies if available. They require GNU make 3.80 or newer,
2217 # and the .VARIABLES variable was introduced at the same time. 2178 # and the .VARIABLES variable was introduced at the same time.
2218 @GMAKE_TRUE@ifdef .VARIABLES 2179 @GMAKE_TRUE@ifdef .VARIABLES
2219 @GMAKE_TRUE@$(all_object_files): | $(generated_files) 2180 @GMAKE_TRUE@$(all_object_files): | $(generated_files)
2220 @GMAKE_TRUE@else 2181 @GMAKE_TRUE@else
2221 $(all_object_files) : $(generated_files) 2182 $(all_object_files) : $(generated_files)
2222 @GMAKE_TRUE@endif 2183 @GMAKE_TRUE@endif
2223 2184
2224 # Dependencies. 2185 # Dependencies.
2225 @GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files)) 2186 @GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
2226 2187
2227 ### end of the gdb Makefile.in. 2188 ### end of the gdb Makefile.in.
OLDNEW
« no previous file with comments | « gdb/MAINTAINERS ('k') | gdb/NEWS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698