1# $MirOS: src/gnu/usr.bin/binutils/gdb/Makefile.in,v 1.7 2006/02/02 23:41:50 tg Exp $
2# XXX hacked
3#
4# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
5# 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
6# Inc.
7
8# This file is part of GDB.
9
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24prefix = @prefix@
25exec_prefix = @exec_prefix@
26
27host_alias = @host_alias@
28target_alias = @target_alias@
29program_transform_name = @program_transform_name@
30bindir = @bindir@
31libdir = @libdir@
32tooldir = $(libdir)/$(target_alias)
33
34datadir = @datadir@
35mandir = @mandir@
36man1dir = $(mandir)/man1
37man2dir = $(mandir)/man2
38man3dir = $(mandir)/man3
39man4dir = $(mandir)/man4
40man5dir = $(mandir)/man5
41man6dir = $(mandir)/man6
42man7dir = $(mandir)/man7
43man8dir = $(mandir)/man8
44man9dir = $(mandir)/man9
45infodir = @infodir@
46htmldir = $(prefix)/html
47includedir = @includedir@
48
49# This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
50top_builddir = .
51
52SHELL = @SHELL@
53EXEEXT = @EXEEXT@
54
55AWK = @AWK@
56LN_S = @LN_S@
57
58INSTALL = @INSTALL@
59INSTALL_PROGRAM = @INSTALL_PROGRAM@
60INSTALL_DATA = @INSTALL_DATA@
61
62DESTDIR =
63
64AR = @AR@
65AR_FLAGS = qv
66RANLIB = @RANLIB@
67DLLTOOL = @DLLTOOL@
68WINDRES = @WINDRES@
69MIG = @MIG@
70
71XGETTEXT = @XGETTEXT@
72GMSGFMT = @GMSGFMT@
73MSGMERGE = msgmerge
74
75PACKAGE = @PACKAGE@
76CATALOGS = @CATALOGS@
77
78# If you are compiling with GCC, make sure that either 1) You have the
79# fixed include files where GCC can reach them, or 2) You use the
80# -traditional flag.  Otherwise the ioctl calls in inflow.c
81# will be incorrectly compiled.  The "fixincludes" script in the gcc
82# distribution will fix your include files up.
83CC=@CC@
84
85# Directory containing source files.
86srcdir = @srcdir@
87VPATH = @srcdir@
88
89YACC=@YACC@
90
91# This is used to rebuild ada-lex.c from ada-lex.l.  If the program is
92# not defined, but ada-lex.c is present, compilation will continue,
93# possibly with a warning.
94FLEX = flex
95
96YLWRAP = $(GNUSYSTEM_AUX_DIR)/ylwrap
97
98# where to find makeinfo, preferably one designed for texinfo-2
99MAKEINFO = makeinfo --no-split
100
101MAKEHTML = texi2html
102
103MAKEHTMLFLAGS = -glossary -menu -split_chapter
104
105# Set this up with gcc if you have gnu ld and the loader will print out
106# line numbers for undefined references.
107#CC_LD=gcc -static
108CC_LD=$(CC)
109
110# Where is our "include" directory?  Typically $(srcdir)/../include.
111# This is essentially the header file directory for the library
112# routines in libiberty.
113INCLUDE_DIR =  $(LIBIBERTY_HDRS)
114INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
115
116# Where is the "-liberty" library?  Typically in ../libiberty.
117LIBIBERTY = -liberty
118DEPLIBIBERTY =
119
120# Where is the BFD library?  Typically in ../bfd.
121BFD_DIR = ../bfd
122BFD = $(BFD_DIR)/libbfd.a
123BFD_SRC = $(srcdir)/$(BFD_DIR)
124BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
125
126# Where is the READLINE library?  Typically in ../readline.
127READLINE = -ledit
128DEPREADLINE =
129READLINE_CFLAGS =
130
131WARN_CFLAGS = @WARN_CFLAGS@
132WERROR_CFLAGS = @WERROR_CFLAGS@
133GDB_WARN_CFLAGS = $(WARN_CFLAGS) -Wno-unused # XXX for now
134GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
135
136# Where is the ICONV library?  This can be empty if libc has iconv.
137LIBICONV = @LIBICONV@
138
139# Did the user give us a --with-sysroot option?
140TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
141TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
142
143#
144# CLI sub directory definitons
145#
146SUBDIR_CLI_OBS = \
147	cli-dump.o \
148	cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o \
149	cli-logging.o \
150	cli-interp.o
151SUBDIR_CLI_SRCS = \
152	cli/cli-dump.c \
153	cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
154	cli/cli-logging.c \
155	cli/cli-interp.c \
156	cli/cli-utils.c
157SUBDIR_CLI_DEPS =
158SUBDIR_CLI_LDFLAGS=
159SUBDIR_CLI_CFLAGS=
160
161# Opcodes currently live in one of two places.  Either they are in the
162# opcode library, typically ../opcodes, or they are in a header file
163# in INCLUDE_DIR.
164# Where is the "-lopcodes" library, with (some of) the opcode tables and
165# disassemblers?
166OPCODES_DIR = ../opcodes
167OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
168OPCODES = $(OPCODES_DIR)/libopcodes.a
169# Where are the other opcode tables which only have header file
170# versions?
171OP_INCLUDE = $(INCLUDE_DIR)/opcode
172OPCODES_CFLAGS = -I$(OP_INCLUDE)
173
174# The simulator is usually nonexistent; targets that include one
175# should set this to list all the .o or .a files to be linked in.
176SIM =
177
178WIN32LIBS = @WIN32LIBS@
179
180# Where is the TCL library?  Typically in ../tcl.
181LIB_INSTALL_DIR = $(libdir)
182# This variable is needed when doing dynamic linking.
183LIB_RUNTIME_DIR = $(libdir)
184TCL = @TCL_CC_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
185TCL_CFLAGS = @TCLHDIR@
186GDBTKLIBS = @GDBTKLIBS@
187# Extra flags that the GDBTK files need:
188GDBTK_CFLAGS = @GDBTK_CFLAGS@
189
190# Where is the TK library?  Typically in ../tk.
191TK = @TK_BUILD_LIB_SPEC@
192TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
193
194# Where is Itcl?  Typically in ../itcl/itcl.
195ITCL_CFLAGS = @ITCLHDIR@
196ITCL = @ITCLLIB@
197
198# Where is Itk?  Typically in ../itcl/itk.
199ITK_CFLAGS = @ITKHDIR@
200ITK = @ITKLIB@
201
202X11_CFLAGS = @TK_XINCLUDES@
203X11_LDFLAGS =
204X11_LIBS =
205
206WIN32LDAPP = @WIN32LDAPP@
207
208LIBGUI = @LIBGUI@
209GUI_CFLAGS_X = @GUI_CFLAGS_X@
210IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
211
212# The version of gdbtk we're building. This should be kept
213# in sync with GDBTK_VERSION and friends in gdbtk.h.
214GDBTK_VERSION = 1.0
215GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
216
217# Gdbtk requires an absolute path to the source directory or
218# the testsuite won't run properly.
219GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
220
221SUBDIR_GDBTK_OBS = \
222	gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-interp.o \
223	gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o
224SUBDIR_GDBTK_SRCS = \
225	gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \
226	gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c \
227	gdbtk/generic/gdbtk-interp.c \
228	gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \
229	gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c \
230	gdbtk/generic/gdbtk-main.c
231SUBDIR_GDBTK_DEPS = \
232	$(LIBGUI) $(ITCL_DEPS) $(ITK_DEPS) $(TK_DEPS) $(TCL_DEPS)
233SUBDIR_GDBTK_LDFLAGS=
234SUBDIR_GDBTK_CFLAGS= -DGDBTK
235
236CONFIG_OBS= @CONFIG_OBS@
237CONFIG_SRCS= @CONFIG_SRCS@
238CONFIG_DEPS= @CONFIG_DEPS@
239CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
240ENABLE_CFLAGS= @ENABLE_CFLAGS@
241CONFIG_ALL= @CONFIG_ALL@
242CONFIG_CLEAN= @CONFIG_CLEAN@
243CONFIG_INSTALL = @CONFIG_INSTALL@
244CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
245
246# -I. for config files.
247# -I$(srcdir) for gdb internal headers.
248# -I$(srcdir)/config for more generic config files.
249
250# It is also possible that you will need to add -I/usr/include/sys if
251# your system doesn't have fcntl.h in /usr/include (which is where it
252# should be according to Posix).
253DEFS = @DEFS@
254GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
255
256# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
257# from the config directory.
258GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
259
260PROFILE_CFLAGS = @PROFILE_CFLAGS@
261
262# CFLAGS is specifically reserved for setting from the command line
263# when running make.  I.E.  "make CFLAGS=-Wmissing-prototypes".
264CFLAGS = @CFLAGS@
265
266# Need to pass this to testsuite for "make check".  Probably should be
267# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
268# so "make check" has the same result no matter where it is run.
269CXXFLAGS = -g -O
270
271# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
272INTERNAL_WARN_CFLAGS = \
273	$(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
274	$(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
275	$(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
276	$(INTL_CFLAGS) $(ENABLE_CFLAGS) \
277	$(GDB_WARN_CFLAGS)
278INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
279
280# LDFLAGS is specifically reserved for setting from the command line
281# when running make.
282LDFLAGS = @LDFLAGS@
283
284# Profiling options need to go here to work.
285# I think it's perfectly reasonable for a user to set -pg in CFLAGS
286# and have it work; that's why CFLAGS is here.
287# PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
288INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS)
289
290# If your system is missing alloca(), or, more likely, it's there but
291# it doesn't work, then refer to libiberty.
292
293# Libraries and corresponding dependencies for compiling gdb.
294# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
295# LIBIBERTY appears twice on purpose.
296# If you have the Cygnus libraries installed,
297# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
298INSTALLED_LIBS=-lbfd $(READLINE) -lopcodes -liberty \
299	$(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
300	-lintl -liberty
301CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(INTL) $(LIBIBERTY) \
302	$(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
303	$(LIBICONV) \
304	$(LIBIBERTY) $(WIN32LIBS) -lcompat
305CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(DEPREADLINE) \
306	$(OPCODES) $(INTL_DEPS) $(DEPLIBIBERTY) $(CONFIG_DEPS)
307
308ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
309ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
310
311DIST=gdb
312
313LINT=/usr/5bin/lint
314LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
315	$(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
316	$(INTL_CFLAGS)
317
318RUNTEST = runtest
319RUNTESTFLAGS=
320
321# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
322# interface to the serial port.  Hopefully if get ported to OS/2, VMS,
323# etc., then there will be (as part of the C library or perhaps as
324# part of libiberty) a POSIX interface.  But at least for now the
325# host-dependent makefile fragment might need to use something else
326# besides ser-unix.o
327SER_HARDWIRE = @SER_HARDWIRE@
328
329# The `remote' debugging target is supported for most architectures,
330# but not all (e.g. 960)
331REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o
332
333# This is remote-sim.o if a simulator is to be linked in.
334SIM_OBS =
335
336# Host and target-dependent makefile fragments come in here.
337@host_makefile_frag@
338@target_makefile_frag@
339# End of host and target-dependent makefile fragments
340
341# Possibly ignore the simulator.  If the simulator is being ignored,
342# these expand into SIM= and SIM_OBJ=, overriding the entries from
343# target_makefile_frag
344#
345@IGNORE_SIM@
346@IGNORE_SIM_OBS@
347
348FLAGS_TO_PASS = \
349	"prefix=$(prefix)" \
350	"exec_prefix=$(exec_prefix)" \
351	"infodir=$(infodir)" \
352	"libdir=$(libdir)" \
353	"mandir=$(mandir)" \
354	"datadir=$(datadir)" \
355	"includedir=$(includedir)" \
356	"against=$(against)" \
357	"DESTDIR=$(DESTDIR)" \
358	"AR=$(AR)" \
359	"AR_FLAGS=$(AR_FLAGS)" \
360	"CC=$(CC)" \
361	"CFLAGS=$(CFLAGS)" \
362	"CXX=$(CXX)" \
363	"CXXFLAGS=$(CXXFLAGS)" \
364	"DLLTOOL=$(DLLTOOL)" \
365	"LDFLAGS=$(LDFLAGS)" \
366	"RANLIB=$(RANLIB)" \
367	"MAKEINFO=$(MAKEINFO)" \
368	"MAKEHTML=$(MAKEHTML)" \
369	"MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
370	"INSTALL=$(INSTALL)" \
371	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
372	"INSTALL_DATA=$(INSTALL_DATA)" \
373	"RUNTEST=$(RUNTEST)" \
374	"RUNTESTFLAGS=$(RUNTESTFLAGS)"
375
376# Flags that we pass when building the testsuite.
377
378# empty for native, $(target_alias)/ for cross
379target_subdir = @target_subdir@
380
381CC_FOR_TARGET = ` \
382  if [ -f $${rootme}/../gcc/xgcc ] ; then \
383    if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
384      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
385    else \
386      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
387    fi; \
388  else \
389    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
390      echo $(CC); \
391    else \
392      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
393    fi; \
394  fi`
395
396CXX = gcc
397CXX_FOR_TARGET = ` \
398  if [ -f $${rootme}/../gcc/xgcc ] ; then \
399    if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
400      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
401    else \
402      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
403    fi; \
404  else \
405    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
406      echo $(CXX); \
407    else \
408      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
409    fi; \
410  fi`
411
412# The use of $$(x_FOR_TARGET) reduces the command line length by not
413# duplicating the lengthy definition.
414TARGET_FLAGS_TO_PASS = \
415	"prefix=$(prefix)" \
416	"exec_prefix=$(exec_prefix)" \
417	"against=$(against)" \
418	'CC=$$(CC_FOR_TARGET)' \
419	"CC_FOR_TARGET=$(CC_FOR_TARGET)" \
420	"CFLAGS=$(CFLAGS)" \
421	'CXX=$$(CXX_FOR_TARGET)' \
422	"CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
423	"CXXFLAGS=$(CXXFLAGS)" \
424	"INSTALL=$(INSTALL)" \
425	"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
426	"INSTALL_DATA=$(INSTALL_DATA)" \
427	"MAKEINFO=$(MAKEINFO)" \
428	"MAKEHTML=$(MAKEHTML)" \
429	"RUNTEST=$(RUNTEST)" \
430	"RUNTESTFLAGS=$(RUNTESTFLAGS)"
431
432# All source files that go into linking GDB.
433# Links made at configuration time should not be specified here, since
434# SFILES is used in building the distribution archive.
435
436SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c  \
437	ax-general.c ax-gdb.c \
438	bcache.c \
439	bfd-target.c \
440	block.c blockframe.c breakpoint.c buildsym.c \
441	c-exp.y c-lang.c c-typeprint.c c-valprint.c \
442	charset.c cli-out.c coffread.c coff-pe-read.c \
443	complaints.c completer.c corefile.c \
444	cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
445	cp-name-parser.y \
446	dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
447	dwarfread.c dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
448	elfread.c environ.c eval.c event-loop.c event-top.c expprint.c \
449	f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c frame.c \
450	frame-base.c \
451	frame-unwind.c \
452	gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
453	hpacc-abi.c \
454	inf-loop.c \
455	infcall.c \
456	infcmd.c inflow.c infrun.c \
457	interps.c \
458	jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
459	kod.c kod-cisco.c \
460	language.c linespec.c \
461	m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
462	macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
463	mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c \
464	nlmread.c \
465	objc-exp.y objc-lang.c \
466	objfiles.c osabi.c observer.c \
467	p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
468	regcache.c reggroups.c remote.c remote-fileio.c \
469	scm-exp.c scm-lang.c scm-valprint.c \
470	sentinel-frame.c \
471	serial.c ser-base.c ser-unix.c \
472	solib.c solib-null.c source.c \
473	stabsread.c stack.c std-regs.c symfile.c symfile-mem.c symmisc.c \
474	symtab.c \
475	target.c thread.c top.c tracepoint.c \
476	trad-frame.c \
477	tramp-frame.c \
478	typeprint.c \
479	ui-out.c utils.c ui-file.h ui-file.c \
480	user-regs.c \
481	valarith.c valops.c valprint.c value.c varobj.c \
482	wrapper.c
483
484LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
485
486# "system" headers.  Using these in dependencies is a rather personal
487# choice. (-rich, summer 1993)
488# (Why would we not want to depend on them?  If one of these changes in a
489# non-binary-compatible way, it is a real pain to remake the right stuff
490# without these dependencies -kingdon, 13 Mar 1994)
491aout_aout64_h =	$(INCLUDE_DIR)/aout/aout64.h
492aout_stabs_gnu_h =	$(INCLUDE_DIR)/aout/stabs_gnu.h
493getopt_h =	$(INCLUDE_DIR)/getopt.h
494floatformat_h =	$(INCLUDE_DIR)/floatformat.h
495bfd_h =		$(BFD_DIR)/bfd.h
496coff_sym_h =	$(INCLUDE_DIR)/coff/sym.h
497coff_symconst_h =	$(INCLUDE_DIR)/coff/symconst.h
498coff_ecoff_h =	$(INCLUDE_DIR)/coff/ecoff.h
499coff_internal_h =	$(INCLUDE_DIR)/coff/internal.h
500dis_asm_h =	$(INCLUDE_DIR)/dis-asm.h $(bfd_h)
501elf_reloc_macros_h =	$(INCLUDE_DIR)/elf/reloc-macros.h
502elf_sh_h =	$(INCLUDE_DIR)/elf/sh.h
503elf_arm_h =	$(INCLUDE_DIR)/elf/arm.h $(elf_reloc_macros_h)
504elf_bfd_h =	$(BFD_SRC)/elf-bfd.h
505elf_frv_h =	$(INCLUDE_DIR)/elf/frv.h $(elf_reloc_macros_h)
506libaout_h =	$(BFD_SRC)/libaout.h
507libiberty_h =	$(INCLUDE_DIR)/libiberty.h
508libbfd_h =	$(BFD_SRC)/libbfd.h
509remote_sim_h =	$(INCLUDE_DIR)/gdb/remote-sim.h
510demangle_h =    $(INCLUDE_DIR)/demangle.h
511obstack_h =     $(INCLUDE_DIR)/obstack.h
512opcode_m68hc11_h = $(INCLUDE_DIR)/opcode/m68hc11.h
513frv_desc_h =	$(OPCODES_SRC)/frv-desc.h
514sh_opc_h = 	$(OPCODES_SRC)/sh-opc.h
515gdb_callback_h = $(INCLUDE_DIR)/gdb/callback.h
516gdb_sim_arm_h =	$(INCLUDE_DIR)/gdb/sim-arm.h
517gdb_sim_d10v_h = $(INCLUDE_DIR)/gdb/sim-d10v.h
518gdb_sim_frv_h = $(INCLUDE_DIR)/gdb/sim-frv.h
519gdb_sim_ppc_h =	$(INCLUDE_DIR)/gdb/sim-ppc.h
520gdb_sim_sh_h =	$(INCLUDE_DIR)/gdb/sim-sh.h
521splay_tree_h =  $(INCLUDE_DIR)/splay-tree.h
522safe_ctype_h =  $(INCLUDE_DIR)/safe-ctype.h
523hashtab_h =	$(INCLUDE_DIR)/hashtab.h
524
525#
526# $BUILD/ headers
527#
528
529config_h = config.h
530exc_request_U_h = exc_request_U.h
531exc_request_S_h = exc_request_S.h
532msg_reply_S_h = msg_reply_S.h
533msg_U_h = msg_U.h
534notify_S_h = notify_S.h
535observer_h = observer.h
536observer_inc = observer.inc
537process_reply_S_h = process_reply_S.h
538
539#
540# config/ headers
541#
542
543xm_h =		@xm_h@
544tm_h =		@tm_h@
545nm_h =		@nm_h@
546
547#
548# gdb/ headers
549#
550
551ada_lang_h = ada-lang.h $(value_h) $(gdbtypes_h) $(breakpoint_h)
552ada_lex_c = ada-lex.c $(gdb_string_h)
553alphabsd_tdep_h = alphabsd-tdep.h
554alpha_tdep_h = alpha-tdep.h
555amd64_nat_h = amd64-nat.h
556amd64_tdep_h = amd64-tdep.h $(i386_tdep_h)
557annotate_h = annotate.h $(symtab_h) $(gdbtypes_h)
558arch_utils_h = arch-utils.h
559arm_tdep_h = arm-tdep.h
560auxv_h = auxv.h
561ax_gdb_h = ax-gdb.h
562ax_h = ax.h $(doublest_h)
563bcache_h = bcache.h
564bfd_target_h = bfd-target.h
565block_h = block.h
566breakpoint_h = breakpoint.h $(frame_h) $(value_h) $(gdb_events_h)
567bsd_kvm_h = bsd-kvm.h
568bsd_uthread_h = bsd-uthread.h
569buildsym_h = buildsym.h
570call_cmds_h = call-cmds.h
571charset_h = charset.h
572c_lang_h = c-lang.h $(value_h) $(macroexp_h)
573cli_out_h = cli-out.h
574coff_pe_read_h = coff-pe-read.h
575coff_solib_h = coff-solib.h
576command_h = command.h
577complaints_h = complaints.h
578completer_h = completer.h
579cp_abi_h = cp-abi.h
580cp_support_h = cp-support.h $(symtab_h)
581dcache_h = dcache.h
582defs_h = defs.h $(config_h) $(ansidecl_h) $(gdb_locale_h) $(gdb_signals_h) \
583	$(libiberty_h) $(bfd_h) $(ui_file_h) $(xm_h) $(nm_h) $(tm_h) \
584	$(fopen_bin_h) $(gdbarch_h)
585dictionary_h = dictionary.h
586disasm_h = disasm.h
587doublest_h = doublest.h $(floatformat_h)
588dummy_frame_h = dummy-frame.h
589dwarf2expr_h = dwarf2expr.h
590dwarf2_frame_h = dwarf2-frame.h
591dwarf2loc_h = dwarf2loc.h
592environ_h = environ.h
593event_loop_h = event-loop.h
594event_top_h = event-top.h
595exceptions_h = exceptions.h $(ui_out_h)
596exec_h = exec.h $(target_h)
597expression_h = expression.h $(symtab_h) $(doublest_h)
598fbsd_nat_h = fbsd-nat.h
599f_lang_h = f-lang.h
600frame_base_h = frame-base.h
601frame_h = frame.h
602frame_unwind_h = frame-unwind.h $(frame_h)
603frv_tdep_h = frv-tdep.h
604gdbarch_h = gdbarch.h
605gdb_assert_h = gdb_assert.h
606gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h)
607gdbcore_h = gdbcore.h $(bfd_h)
608gdb_curses_h = gdb_curses.h
609gdb_dirent_h = gdb_dirent.h
610gdb_events_h = gdb-events.h
611gdb_h = gdb.h
612gdb_locale_h = gdb_locale.h
613gdb_obstack_h = gdb_obstack.h $(obstack_h)
614gdb_proc_service_h = gdb_proc_service.h $(gregset_h)
615gdb_ptrace_h = gdb_ptrace.h
616gdb_regex_h = gdb_regex.h $(xregex_h)
617gdb_stabs_h = gdb-stabs.h
618gdb_stat_h = gdb_stat.h
619gdb_string_h = gdb_string.h
620gdb_thread_db_h = gdb_thread_db.h
621gdbthread_h = gdbthread.h $(breakpoint_h) $(frame_h)
622gdbtypes_h = gdbtypes.h
623gdb_vfork_h = gdb_vfork.h
624gdb_wait_h = gdb_wait.h
625glibc_tdep_h = glibc-tdep.h
626gnu_nat_h = gnu-nat.h
627gnu_v2_abi_h = gnu-v2-abi.h
628gregset_h = gregset.h
629hppa_tdep_h = hppa-tdep.h
630i386bsd_nat_h = i386bsd-nat.h
631i386_linux_tdep_h = i386-linux-tdep.h
632i386_tdep_h = i386-tdep.h
633i387_tdep_h = i387-tdep.h
634ia64_tdep_h = ia64-tdep.h
635infcall_h = infcall.h
636inf_child_h = inf-child.h
637inferior_h = inferior.h $(breakpoint_h) $(target_h) $(frame_h)
638inf_loop_h = inf-loop.h
639inflow_h = inflow.h $(terminal_h)
640inf_ptrace_h = inf-ptrace.h
641inf_ttrace_h = inf-ttrace.h
642interps_h = interps.h $(exceptions_h)
643jv_lang_h = jv-lang.h
644kod_h = kod.h
645language_h = language.h
646libunwind_frame_h = libunwind-frame.h $(libunwind_h)
647linespec_h = linespec.h
648linux_nat_h = linux-nat.h $(target_h)
649m2_lang_h = m2-lang.h
650m32r_tdep_h = m32r-tdep.h
651m68k_tdep_h = m68k-tdep.h
652m88k_tdep_h = m88k-tdep.h
653macroexp_h = macroexp.h
654macroscope_h = macroscope.h $(macrotab_h) $(symtab_h)
655macrotab_h = macrotab.h
656main_h = main.h
657mdebugread_h = mdebugread.h $(coff_sym_h) $(coff_symconst_h)
658memattr_h = memattr.h
659mips_mdebug_tdep_h = mips-mdebug-tdep.h
660mipsnbsd_tdep_h = mipsnbsd-tdep.h
661mips_tdep_h = mips-tdep.h
662mn10300_tdep_h = mn10300-tdep.h
663monitor_h = monitor.h
664nbsd_tdep_h = nbsd-tdep.h
665nto_tdep_h = nto-tdep.h $(defs_h) $(solist_h) $(osabi_h) $(regset_h)
666objc_lang_h = objc-lang.h
667objfiles_h = objfiles.h $(gdb_obstack_h) $(symfile_h)
668ocd_h = ocd.h
669osabi_h = osabi.h
670parser_defs_h = parser-defs.h $(doublest_h)
671p_lang_h = p-lang.h
672ppcnbsd_tdep_h = ppcnbsd-tdep.h
673ppcobsd_tdep_h = ppcobsd-tdep.h
674ppc_tdep_h = ppc-tdep.h
675proc_utils_h = proc-utils.h
676regcache_h = regcache.h
677reggroups_h = reggroups.h
678regset_h = regset.h
679remote_fileio_h = remote-fileio.h
680remote_h = remote.h
681remote_utils_h = remote-utils.h $(target_h)
682s390_tdep_h = s390-tdep.h
683scm_lang_h = scm-lang.h $(scm_tags_h)
684scm_tags_h = scm-tags.h
685sentinel_frame_h = sentinel-frame.h
686serial_h = serial.h
687ser_base_h = ser-base.h
688ser_unix_h = ser-unix.h
689shnbsd_tdep_h = shnbsd-tdep.h
690sh_tdep_h = sh-tdep.h
691sim_regno_h = sim-regno.h
692solib_h = solib.h
693solib_pa64_h = solib-pa64.h
694solib_som_h = solib-som.h
695solib_svr4_h = solib-svr4.h
696solist_h = solist.h
697source_h = source.h
698sparc64_tdep_h = sparc64-tdep.h $(sparc_tdep_h)
699sparc_nat_h = sparc-nat.h
700sparc_tdep_h = sparc-tdep.h
701srec_h = srec.h
702stabsread_h = stabsread.h
703stack_h = stack.h
704symfile_h = symfile.h
705symtab_h = symtab.h
706target_h = target.h $(bfd_h) $(symtab_h) $(dcache_h) $(memattr_h)
707terminal_h = terminal.h
708top_h = top.h
709tracepoint_h = tracepoint.h
710trad_frame_h = trad-frame.h $(frame_h)
711tramp_frame_h = tramp-frame.h $(frame_h)
712typeprint_h = typeprint.h
713ui_file_h = ui-file.h
714ui_out_h = ui-out.h
715user_regs_h = user-regs.h
716valprint_h = valprint.h
717value_h = value.h $(doublest_h) $(frame_h) $(symtab_h) $(gdbtypes_h) \
718	$(expression_h)
719varobj_h = varobj.h $(symtab_h) $(gdbtypes_h)
720vax_tdep_h = vax-tdep.h
721version_h = version.h
722wince_stub_h = wince-stub.h
723wrapper_h = wrapper.h $(gdb_h)
724xcoffsolib_h = xcoffsolib.h
725
726#
727# gdb/cli/ headers
728#
729
730cli_cmds_h = $(srcdir)/cli/cli-cmds.h
731cli_decode_h = $(srcdir)/cli/cli-decode.h $(command_h)
732cli_dump_h = $(srcdir)/cli/cli-dump.h
733cli_script_h = $(srcdir)/cli/cli-script.h
734cli_setshow_h = $(srcdir)/cli/cli-setshow.h
735cli_utils_h = $(srcdir)/cli/cli-utils.h
736
737# Header files that need to have srcdir added.  Note that in the cases
738# where we use a macro like $(gdbcmd_h), things are carefully arranged
739# so that each .h file is listed exactly once (M-x tags-search works
740# wrong if TAGS has files twice).  Because this is tricky to get
741# right, it is probably easiest just to list .h files here directly.
742
743HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
744	exceptions.h \
745	environ.h $(gdbcmd_h) gdb.h gdbcore.h \
746	gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
747	objfiles.h parser-defs.h serial.h solib.h \
748	symfile.h symfile-mem.h stabsread.h target.h terminal.h typeprint.h \
749	xcoffsolib.h \
750	macrotab.h macroexp.h macroscope.h \
751	ada-lang.h c-lang.h f-lang.h \
752	jv-lang.h \
753	m2-lang.h  p-lang.h \
754	complaints.h valprint.h \
755	gdbthread.h \
756	dcache.h remote-utils.h top.h solib-som.h
757
758# Header files that already have srcdir in them, or which are in objdir.
759
760HFILES_WITH_SRCDIR = ../bfd/bfd.h
761
762
763# GDB "info" files, which should be included in their entirety
764INFOFILES = gdb.info*
765
766REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
767
768# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
769# default their values the way we do for SER_HARDWIRE; in the future
770# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
771# variables analogous to SER_HARDWIRE which get defaulted in this
772# Makefile.in
773
774DEPFILES = $(TDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
775	   $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_OBS)
776
777SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
778# Don't include YYFILES (*.c) because we already include *.y in SFILES,
779# and it's more useful to see it in the .y file.
780TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
781	$(SUBDIR_CLI_SRCS)
782TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
783
784COMMON_OBS = $(DEPFILES) $(YYOBJ) \
785	mi-common.o \
786	version.o \
787	annotate.o \
788	auxv.o \
789	bfd-target.o \
790	blockframe.o breakpoint.o findvar.o regcache.o \
791	charset.o disasm.o dummy-frame.o \
792	source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
793	block.o symtab.o symfile.o symmisc.o linespec.o dictionary.o \
794	infcall.o \
795	infcmd.o infrun.o \
796	expprint.o environ.o stack.o thread.o \
797	exceptions.o \
798	inf-child.o \
799	interps.o \
800	main.o \
801	macrotab.o macrocmd.o macroexp.o macroscope.o \
802	event-loop.o event-top.o inf-loop.o completer.o \
803	gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
804	memattr.o mem-break.o target.o parse.o language.o buildsym.o \
805	std-regs.o \
806	signals.o \
807	kod.o kod-cisco.o \
808	gdb-events.o \
809	exec.o bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
810	dbxread.o coffread.o coff-pe-read.o elfread.o \
811	dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
812	dwarf2expr.o dwarf2loc.o dwarf2-frame.o \
813	ada-lang.o c-lang.o f-lang.o objc-lang.o \
814	ui-out.o cli-out.o \
815	varobj.o wrapper.o \
816	jv-lang.o jv-valprint.o jv-typeprint.o \
817	m2-lang.o p-lang.o p-typeprint.o p-valprint.o \
818	scm-exp.o scm-lang.o scm-valprint.o \
819	sentinel-frame.o \
820	complaints.o typeprint.o \
821	ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
822	ada-valprint.o c-valprint.o cp-valprint.o f-valprint.o m2-valprint.o \
823	nlmread.o serial.o mdebugread.o top.o utils.o \
824	ui-file.o \
825	user-regs.o \
826	frame.o frame-unwind.o doublest.o \
827	frame-base.o \
828	gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o cp-support.o \
829	cp-namespace.o \
830	reggroups.o regset.o \
831	trad-frame.o \
832	tramp-frame.o \
833	solib.o solib-null.o
834
835TSOBS = inflow.o
836
837SUBDIRS = @subdirs@
838
839# For now, shortcut the "configure GDB for fewer languages" stuff.
840YYFILES = c-exp.c \
841	cp-name-parser.c \
842	objc-exp.c \
843	ada-exp.c \
844	jv-exp.c \
845	f-exp.c m2-exp.c p-exp.c
846YYOBJ = c-exp.o \
847	cp-name-parser.o \
848	objc-exp.o \
849	ada-exp.o \
850	jv-exp.o \
851	f-exp.o m2-exp.o p-exp.o
852
853# Things which need to be built when making a distribution.
854
855DISTSTUFF = $(YYFILES)
856
857# Prevent Sun make from putting in the machine type.  Setting
858# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
859.c.o:
860	$(CC) -c $(INTERNAL_CFLAGS) $<
861
862all: gdb$(EXEEXT) $(CONFIG_ALL)
863	@$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
864
865installcheck:
866
867info dvi install-info clean-info html install-html: force
868	@$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
869
870# Traditionally "install" depends on "all".  But it may be useful
871# not to; for example, if the user has made some trivial change to a
872# source file and doesn't care about rebuilding or just wants to save the
873# time it takes for make to check that all is up to date.
874# install-only is intended to address that need.
875install: all install-only
876install-only: $(CONFIG_INSTALL)
877	transformed_name=`t='$(program_transform_name)'; \
878			  echo gdb | sed -e "$$t"` ; \
879		if test "x$$transformed_name" = x; then \
880		  transformed_name=gdb ; \
881		else \
882		  true ; \
883		fi ; \
884		$(SHELL) $(GNUSYSTEM_AUX_DIR)/mkinstalldirs $(DESTDIR)$(bindir) ; \
885		$(INSTALL_PROGRAM) gdb$(EXEEXT) \
886			$(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT)
887	@$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
888
889
890# We do this by grepping through sources.  If that turns out to be too slow,
891# maybe we could just require every .o file to have an initialization routine
892# of a given name (top.o -> _initialize_top, etc.).
893#
894# Formatting conventions:  The name of the _initialize_* routines must start
895# in column zero, and must not be inside #if.
896#
897# Note that the set of files with init functions might change, or the names
898# of the functions might change, so this files needs to depend on all the
899# object files that will be linked into gdb.
900
901# FIXME: There is a problem with this approach - init.c may force
902# unnecessary files to be linked in.
903
904# FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
905# the first call is to _initialize_gdbtypes (implemented by explicitly
906# putting that function's name first in the init.l-tmp file).  This is
907# a hack to ensure that all the architecture dependant global
908# builtin_type_* variables are initialized before anything else
909# (per-architecture code is called in the same order that it is
910# registered).  The ``correct fix'' is to have all the builtin types
911# made part of the architecture and initialize them on-demand (using
912# gdbarch_data) just like everything else.  The catch is that other
913# modules still take the address of these builtin types forcing them
914# to be variables, sigh!
915
916# NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
917# anchored on the first column and excludes the ``/'' character so
918# that it doesn't add the $(srcdir) prefix to any file that already
919# has an absolute path.  It turns out that $(DEC)'s True64 make
920# automatically adds the $(srcdir) prefixes when it encounters files
921# in sub-directories such as cli/ and mi/.
922
923# NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
924# duplicates.  Files in the gdb/ directory can end up appearing in
925# COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
926
927INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS)
928init.c: $(INIT_FILES)
929	@echo Making init.c
930	@rm -f init.c-tmp init.l-tmp
931	@touch init.c-tmp
932	@echo gdbtypes > init.l-tmp
933	@-echo $(INIT_FILES) | \
934	tr ' ' '\012' | \
935	sed \
936	    -e '/^gdbtypes.[co]$$/d' \
937	    -e '/^init.[co]$$/d' \
938	    -e '/xdr_ld.[co]$$/d' \
939	    -e '/xdr_ptrace.[co]$$/d' \
940	    -e '/xdr_rdb.[co]$$/d' \
941	    -e '/udr.[co]$$/d' \
942	    -e '/udip2soc.[co]$$/d' \
943	    -e '/udi2go32.[co]$$/d' \
944	    -e '/version.[co]$$/d' \
945	    -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
946	    -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
947	    -e 's/\.[co]$$/.c/' \
948	    -e 's,signals\.c,signals/signals\.c,' \
949	    -e 's|^\([^  /][^     ]*\)|$(srcdir)/\1|g' | \
950	while read f; do \
951	    sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
952	done | \
953	while read f; do \
954	    case " $$fs " in \
955	        *" $$f "* ) ;; \
956	        * ) echo $$f ; fs="$$fs $$f";; \
957            esac; \
958	done >> init.l-tmp
959	@echo '/* Do not modify this file.  */' >>init.c-tmp
960	@echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
961	@echo '#include "defs.h"      /* For initialize_file_ftype.  */' >>init.c-tmp
962	@echo '#include "call-cmds.h" /* For initialize_all_files.  */' >>init.c-tmp
963	@sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
964	@echo 'void' >>init.c-tmp
965	@echo 'initialize_all_files (void)' >>init.c-tmp
966	@echo '{' >>init.c-tmp
967	@sed -e 's/\(.*\)/  _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
968	@echo '}' >>init.c-tmp
969	@rm init.l-tmp
970	@mv init.c-tmp init.c
971
972.PRECIOUS: init.c
973
974init.o: init.c $(defs_h) $(call_cmds_h)
975
976# Removing the old gdb first works better if it is running, at least on SunOS.
977gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
978	rm -f gdb$(EXEEXT)
979	$(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
980		-o gdb$(EXEEXT) gdb.o libgdb.a \
981		$(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
982
983# Create a library of the gdb object files and build GDB by linking
984# against that.
985#
986# init.o is very important.  It pulls in the rest of GDB.
987LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
988libgdb.a: $(LIBGDB_OBS)
989	-rm -f libgdb.a
990	$(AR) q libgdb.a $(LIBGDB_OBS)
991	$(RANLIB) libgdb.a
992
993# Put the proper machine-specific files first, so M-. on a machine
994# specific routine gets the one for the correct machine.  (FIXME: those
995# files go in twice; we should be removing them from the main list).
996
997# TAGS depends on all the files that go into it so you can rebuild TAGS
998# with `make TAGS' and not have to say `rm TAGS' first.
999
1000TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
1001	@echo Making TAGS
1002	@etags $(srcdir)/$(DEPRECATED_TM_FILE) \
1003	  $(srcdir)/$(XM_FILE) \
1004	  $(srcdir)/$(NAT_FILE) \
1005	`(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
1006		echo $(srcdir)/$$i ; \
1007	done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1008		echo $$i ; \
1009	done) | sed -e 's/\.o$$/\.c/'` \
1010	`find $(srcdir)/config -name '*.h' -print`
1011
1012tags: TAGS
1013
1014clean mostlyclean: $(CONFIG_CLEAN)
1015	@$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
1016	rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
1017	rm -f init.c version.c
1018	rm -f gdb$(EXEEXT) core make.log
1019	rm -f gdb[0-9]$(EXEEXT)
1020	rm -f test-cp-name-parser$(EXEEXT)
1021
1022# This used to depend on c-exp.c m2-exp.c TAGS
1023# I believe this is wrong; the makefile standards for distclean just
1024# describe removing files; the only sort of "re-create a distribution"
1025# functionality described is if the distributed files are unmodified.
1026# NB: While GDBSERVER might be configured on native systems, it isn't
1027# always included in SUBDIRS.  Remove the gdbserver files explictly.
1028distclean: clean
1029	@$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
1030	rm -f gdbserver/config.status gdbserver/config.log
1031	rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1032	rm -f gdbserver/Makefile gdbserver/config.cache
1033	rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
1034	rm -f y.output yacc.acts yacc.tmp y.tab.h
1035	rm -f config.log config.cache
1036	rm -f Makefile
1037
1038maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1039realclean: maintainer-clean
1040
1041local-maintainer-clean:
1042	@echo "This command is intended for maintainers to use;"
1043	@echo "it deletes files that may require special tools to rebuild."
1044	rm -f c-exp.c \
1045		cp-name-parser.c \
1046		ada-lex.c ada-exp.c \
1047	        objc-exp.c \
1048		jv-exp.tab \
1049		f-exp.c m2-exp.c p-exp.c
1050	rm -f TAGS $(INFOFILES)
1051	rm -f $(YYFILES)
1052	rm -f nm.h tm.h xm.h config.status
1053
1054do-maintainer-clean:
1055	@$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
1056		subdir_do
1057
1058diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1059	cd doc; $(MAKE) $(MFLAGS) diststuff
1060
1061subdir_do: force
1062	@for i in $(DODIRS); do \
1063		if [ -f ./$$i/Makefile ] ; then \
1064			if (cd ./$$i; \
1065				$(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1066			else exit 1 ; fi ; \
1067		else true ; fi ; \
1068	done
1069
1070Makefile: Makefile.in config.status @frags@
1071	$(SHELL) config.status
1072
1073config.h: stamp-h ; @true
1074stamp-h: config.in config.status
1075	CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
1076
1077config.status: configure configure.tgt configure.host
1078	$(SHELL) config.status --recheck
1079
1080force:
1081
1082# Documentation!
1083# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
1084doc/refcard.dvi:
1085	cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
1086
1087# GDB QUICK REFERENCE (PostScript output, common PS fonts)
1088doc/refcard.ps:
1089	cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
1090
1091# GDB MANUAL: TeX dvi file
1092doc/gdb.dvi:
1093	cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
1094
1095# GDB MANUAL: info file
1096doc/gdb.info:
1097	cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
1098
1099# Make copying.c from COPYING
1100$(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \
1101		$(srcdir)/COPYING $(srcdir)/copying.awk
1102	awk -f $(srcdir)/copying.awk \
1103		< $(srcdir)/COPYING > $(srcdir)/copying.tmp
1104	mv $(srcdir)/copying.tmp $(srcdir)/copying.c
1105
1106version.c: Makefile version.in
1107	rm -f version.c-tmp version.c
1108	echo '#include "version.h"' >> version.c-tmp
1109	echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp
1110	echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
1111	echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
1112	mv version.c-tmp version.c
1113version.o: version.c $(version_h)
1114
1115observer.h: observer.sh doc/observer.texi
1116	$(SHELL) ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
1117
1118observer.inc: observer.sh doc/observer.texi
1119	$(SHELL) ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
1120
1121lint: $(LINTFILES)
1122	$(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1123	   `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
1124
1125gdb.cxref: $(SFILES)
1126	cxref -I. $(SFILES) >gdb.cxref
1127
1128force_update:
1129
1130# GNU Make has an annoying habit of putting *all* the Makefile variables
1131# into the environment, unless you include this target as a circumvention.
1132# Rumor is that this will be fixed (and this target can be removed)
1133# in GNU Make 4.0.
1134.NOEXPORT:
1135
1136# GNU Make 3.63 has a different problem: it keeps tacking command line
1137# overrides onto the definition of $(MAKE).  This variable setting
1138# will remove them.
1139MAKEOVERRIDES=
1140
1141ALLDEPFILES = \
1142	aix-thread.c \
1143	alpha-nat.c alphabsd-nat.c \
1144	alpha-tdep.c alpha-linux-tdep.c alphabsd-tdep.c alphanbsd-tdep.c \
1145	alpha-osf1-tdep.c alphafbsd-tdep.c alpha-mdebug-tdep.c \
1146	amd64-nat.c amd64-tdep.c \
1147	amd64bsd-nat.c amdfbsd-nat.c amd64fbsd-tdep.c \
1148	amd64nbsd-nat.c amd64nbsd-tdep.c \
1149	amd64obsd-nat.c amd64obsd-tdep.c \
1150	amd64-linux-nat.c amd64-linux-tdep.c \
1151	amd64-sol2-tdep.c \
1152	arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \
1153	armnbsd-nat.c armnbsd-tdep.c \
1154	avr-tdep.c \
1155	bsd-uthread.c bsd-kvm.c \
1156	coff-solib.c \
1157	core-regset.c core-aout.c corelow.c \
1158	dcache.c exec.c \
1159	fbsd-nat.c \
1160	fork-child.c \
1161	glibc-tdep.c \
1162	go32-nat.c h8300-tdep.c \
1163	hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
1164	hppa-linux-tdep.c hppa-linux-nat.c \
1165	hppabsd-nat.c hppabsd-tdep.c \
1166	hpread.c \
1167	i386-tdep.c i386v-nat.c i386-linux-nat.c \
1168	i386v4-nat.c i386-cygwin-tdep.c \
1169	i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
1170	i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \
1171	i387-tdep.c \
1172	i386-linux-tdep.c i386-nat.c \
1173	i386-sol2-nat.c i386-sol2-tdep.c \
1174	i386gnu-nat.c i386gnu-tdep.c \
1175	ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
1176	inf-ptrace.c inf-ttrace.c \
1177	infptrace.c inftarg.c irix4-nat.c irix5-nat.c \
1178	libunwind-frame.c \
1179	lynx-nat.c m3-nat.c \
1180	m68hc11-tdep.c \
1181	m32r-tdep.c \
1182	m32r-linux-nat.c m32r-linux-tdep.c \
1183	m68k-tdep.c \
1184	m68kbsd-nat.c m68kbsd-tdep.c \
1185	m88k-tdep.c m88kbsd-nat.c \
1186	mcore-tdep.c \
1187	mips-linux-nat.c mips-linux-tdep.c \
1188	mips-irix-tdep.c \
1189	mips-tdep.c mipsm3-nat.c mipsv4-nat.c \
1190	mipsnbsd-nat.c mipsnbsd-tdep.c \
1191	mips64obsd-nat.c mips64obsd-tdep.c \
1192	nbsd-tdep.c \
1193	ns32k-tdep.c solib-osf.c \
1194	somread.c solib-som.c $(HPREAD_SOURCE) \
1195	ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
1196	ppcnbsd-nat.c ppcnbsd-tdep.c \
1197	ppcobsd-nat.c ppcobsd-tdep.c \
1198	procfs.c \
1199	remote-e7000.c \
1200	remote-hms.c remote-m32r-sdi.c remote-mips.c \
1201	remote-rdp.c remote-sim.c \
1202	remote-st.c remote-utils.c dcache.c \
1203	rs6000-nat.c rs6000-tdep.c \
1204	s390-tdep.c s390-nat.c \
1205	ser-go32.c ser-pipe.c ser-tcp.c \
1206	sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
1207	solib-irix.c solib-svr4.c solib-sunos.c \
1208	sparc-linux-tdep.c sparc-nat.c sparc-sol2-nat.c sparc-sol2-tdep.c \
1209	sparc-tdep.c sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-linux-nat.c \
1210	sparc64-linux-tdep.c sparc64-nat.c sparc64-sol2-tdep.c \
1211	sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
1212	sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
1213	sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
1214	symm-tdep.c symm-nat.c \
1215	v850-tdep.c \
1216	vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
1217	win32-nat.c \
1218	xcoffread.c xcoffsolib.c \
1219	xstormy16-tdep.c
1220
1221# Some files need explict build rules (due to -Werror problems) or due
1222# to sub-directory fun 'n' games.
1223
1224# Provide explicit rule/dependency - works for more makes.
1225copying.o: $(srcdir)/copying.c
1226	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c
1227
1228hpux-thread.o: $(srcdir)/hpux-thread.c
1229	$(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1230		-I$(srcdir)/osf-share/HP800 -I/usr/include/dce \
1231		$(srcdir)/hpux-thread.c
1232
1233# main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR.
1234main.o: main.c
1235	$(CC) -c $(INTERNAL_CFLAGS) $(TARGET_SYSTEM_ROOT_DEFINE) \
1236		-DBINDIR=\"$(bindir)\" $(srcdir)/main.c
1237
1238# FIXME: cagney/2004-09-16: "gnu-v3-abi.c", with a GCC 3.4 compiler,
1239# gets a "assignment from incompatible pointer type" warning.  The
1240# return types - "enum gnu_v3_dtor_kinds" vs "enum ctor_kinds" -
1241# conflict.
1242gnu-v3-abi.o: $(srcdir)/gnu-v3-abi.c
1243	$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
1244		$(srcdir)/gnu-v3-abi.c
1245
1246# FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral
1247# errors.  It turns out that that is the least of monitor.c's
1248# problems.  The function print_vsprintf appears to be using
1249# va_arg(long) to extract CORE_ADDR parameters - something that
1250# definitly will not work.  "monitor.c" needs to be rewritten so that
1251# it doesn't use format strings and instead uses callbacks.
1252monitor.o: $(srcdir)/monitor.c
1253	$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/monitor.c
1254
1255# FIXME: cagney/2003-08-10: Do not try to build "printcmd.c" with
1256# -Wformat-nonliteral.  It needs to be overhauled so that it doesn't
1257# pass user input strings as the format parameter to host printf
1258# function calls.
1259printcmd.o: $(srcdir)/printcmd.c
1260	$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) -Wno-format $(srcdir)/printcmd.c
1261
1262# FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1263# match output format strings.
1264procfs.o: $(srcdir)/procfs.c
1265	$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/procfs.c
1266
1267# FIXME: Thread-db.o gets warnings because the definitions of the register
1268# sets are different from kernel to kernel.
1269linux-thread-db.o: $(srcdir)/linux-thread-db.c
1270	$(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
1271		$(srcdir)/linux-thread-db.c
1272
1273v850ice.o: $(srcdir)/v850ice.c
1274	$(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1275		$(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1276		$(GDBTK_CFLAGS) \
1277		$(srcdir)/v850ice.c
1278
1279#
1280# YACC/LEX dependencies
1281#
1282# LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
1283# exist in srcdir, then compiled in objdir to LANG-exp.o.  If we
1284# said LANG-exp.c rather than ./c-exp.c some makes would
1285# sometimes re-write it into $(srcdir)/c-exp.c.  Remove bogus
1286# decls for malloc/realloc/free which conflict with everything else.
1287# Strictly speaking c-exp.c should therefore depend on
1288# Makefile.in, but that was a pretty big annoyance.
1289
1290.SUFFIXES: .y .l
1291.y.c:
1292	$(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- $(YACC) $(YFLAGS)
1293	-sed -e '/extern.*malloc/d' \
1294	     -e '/extern.*realloc/d' \
1295	     -e '/extern.*free/d' \
1296	     -e '/include.*malloc.h/d' \
1297	     -e 's/\([^x]\)malloc/\1xmalloc/g' \
1298	     -e 's/\([^x]\)realloc/\1xrealloc/g' \
1299	     -e '/^#line.*y.tab.c/d' \
1300	  < $@.tmp > $@.new
1301	-rm $@.tmp
1302	mv $@.new ./$*.c
1303.l.c:
1304	if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
1305	    $(FLEX) -o$@ $< && \
1306	    rm -f $@.new && \
1307	    sed -e '/extern.*malloc/d' \
1308	        -e '/extern.*realloc/d' \
1309	        -e '/extern.*free/d' \
1310	        -e '/include.*malloc.h/d' \
1311	        -e 's/\([^x]\)malloc/\1xmalloc/g' \
1312	        -e 's/\([^x]\)realloc/\1xrealloc/g' \
1313		-e 's/yy_flex_xrealloc/yyxrealloc/g' \
1314	      < $@ > $@.new && \
1315	    rm -f $@ && \
1316	    mv $@.new $@; \
1317	elif [ -f $@ ]; then \
1318	    echo "Warning: $*.c older than $*.l and flex not available."; \
1319	else \
1320	    echo "$@ missing and flex not available."; \
1321	    false; \
1322	fi
1323
1324.PRECIOUS: ada-exp.c ada-lex.c
1325.PRECIOUS: c-exp.c
1326.PRECIOUS: f-exp.c
1327.PRECIOUS: jv-exp.c
1328.PRECIOUS: m2-exp.c
1329.PRECIOUS: objc-exp.c
1330.PRECIOUS: p-exp.c
1331
1332#
1333# gdb/ dependencies
1334#
1335
1336abug-rom.o: abug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1337	$(serial_h) $(regcache_h) $(m68k_tdep_h)
1338ada-exp.o: ada-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1339	$(parser_defs_h) $(language_h) $(ada_lang_h) $(bfd_h) $(symfile_h) \
1340	$(objfiles_h) $(frame_h) $(block_h) $(ada_lex_c)
1341ada-lang.o: ada-lang.c $(defs_h) $(gdb_string_h) $(demangle_h) \
1342	$(gdb_regex_h) $(frame_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) \
1343	$(expression_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
1344	$(inferior_h) $(symfile_h) $(objfiles_h) $(breakpoint_h) \
1345	$(gdbcore_h) $(hashtab_h) $(gdb_obstack_h) $(ada_lang_h) \
1346	$(completer_h) $(gdb_stat_h) $(ui_out_h) $(block_h) $(infcall_h) \
1347	$(dictionary_h) $(exceptions_h)
1348ada-typeprint.o: ada-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) \
1349	$(symtab_h) $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) \
1350	$(target_h) $(command_h) $(gdbcmd_h) $(language_h) $(demangle_h) \
1351	$(c_lang_h) $(typeprint_h) $(ada_lang_h) $(gdb_string_h)
1352ada-valprint.o: ada-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1353	$(gdbtypes_h) $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \
1354	$(language_h) $(annotate_h) $(ada_lang_h) $(c_lang_h) $(infcall_h) \
1355	$(exceptions_h)
1356aix-thread.o: aix-thread.c $(defs_h) $(gdb_assert_h) $(gdbthread_h) \
1357	$(target_h) $(inferior_h) $(regcache_h) $(gdbcmd_h) $(ppc_tdep_h) \
1358	$(gdb_string_h)
1359alphabsd-nat.o: alphabsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1360	$(alpha_tdep_h) $(alphabsd_tdep_h) $(inf_ptrace_h) $(gregset_h)
1361alphabsd-tdep.o: alphabsd-tdep.c $(defs_h) $(alpha_tdep_h) \
1362	$(alphabsd_tdep_h)
1363alphafbsd-tdep.o: alphafbsd-tdep.c $(defs_h) $(value_h) $(osabi_h) \
1364	$(alpha_tdep_h)
1365alpha-linux-tdep.o: alpha-linux-tdep.c $(defs_h) $(frame_h) $(gdb_assert_h) \
1366	$(osabi_h) $(solib_svr4_h) $(alpha_tdep_h)
1367alpha-mdebug-tdep.o: alpha-mdebug-tdep.c $(defs_h) $(frame_h) \
1368	$(frame_unwind_h) $(frame_base_h) $(symtab_h) $(gdbcore_h) \
1369	$(block_h) $(gdb_assert_h) $(alpha_tdep_h) $(mdebugread_h)
1370alpha-nat.o: alpha-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \
1371	$(gdbcore_h) $(target_h) $(regcache_h) $(alpha_tdep_h) $(gregset_h)
1372alphanbsd-tdep.o: alphanbsd-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
1373	$(regcache_h) $(value_h) $(osabi_h) $(gdb_string_h) $(alpha_tdep_h) \
1374	$(alphabsd_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h)
1375alpha-osf1-tdep.o: alpha-osf1-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1376	$(value_h) $(osabi_h) $(gdb_string_h) $(objfiles_h) $(alpha_tdep_h)
1377alpha-tdep.o: alpha-tdep.c $(defs_h) $(doublest_h) $(frame_h) \
1378	$(frame_unwind_h) $(frame_base_h) $(dwarf2_frame_h) $(inferior_h) \
1379	$(symtab_h) $(value_h) $(gdbcmd_h) $(gdbcore_h) $(dis_asm_h) \
1380	$(symfile_h) $(objfiles_h) $(gdb_string_h) $(linespec_h) \
1381	$(regcache_h) $(reggroups_h) $(arch_utils_h) $(osabi_h) $(block_h) \
1382	$(infcall_h) $(elf_bfd_h) $(alpha_tdep_h)
1383amd64bsd-nat.o: amd64bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1384	$(target_h) $(gdb_assert_h) $(amd64_tdep_h) $(amd64_nat_h) \
1385	$(inf_ptrace_h)
1386amd64fbsd-nat.o: amd64fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1387	$(target_h) $(gdb_assert_h) $(fbsd_nat_h) $(amd64_tdep_h) \
1388	$(amd64_nat_h) $(bsd_kvm_h)
1389amd64fbsd-tdep.o: amd64fbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1390	$(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_assert_h) \
1391	$(gdb_string_h) $(amd64_tdep_h) $(bsd_uthread_h) $(solib_svr4_h)
1392amd64-linux-nat.o: amd64-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1393	$(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
1394	$(gdb_proc_service_h) $(gregset_h) $(amd64_tdep_h) \
1395	$(i386_linux_tdep_h) $(amd64_nat_h)
1396amd64-linux-tdep.o: amd64-linux-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1397	$(regcache_h) $(osabi_h) $(symtab_h) $(gdb_string_h) $(amd64_tdep_h) \
1398	$(solib_svr4_h)
1399amd64-nat.o: amd64-nat.c $(defs_h) $(gdbarch_h) $(regcache_h) \
1400	$(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(amd64_tdep_h)
1401amd64nbsd-nat.o: amd64nbsd-nat.c $(defs_h) $(target_h) $(gdb_assert_h) \
1402	$(amd64_tdep_h) $(amd64_nat_h)
1403amd64nbsd-tdep.o: amd64nbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1404	$(gdbcore_h) $(osabi_h) $(symtab_h) $(gdb_assert_h) $(amd64_tdep_h) \
1405	$(nbsd_tdep_h) $(solib_svr4_h)
1406amd64obsd-nat.o: amd64obsd-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
1407	$(target_h) $(gdb_assert_h) $(amd64_tdep_h) $(amd64_nat_h) \
1408	$(bsd_kvm_h)
1409amd64obsd-tdep.o: amd64obsd-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1410	$(symtab_h) $(objfiles_h) $(osabi_h) $(regset_h) $(target_h) \
1411	$(gdb_assert_h) $(gdb_string_h) $(amd64_tdep_h) $(i387_tdep_h) \
1412	$(solib_svr4_h)
1413amd64-sol2-tdep.o: amd64-sol2-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1414	$(regcache_h) $(osabi_h) $(symtab_h) $(gdb_string_h) $(amd64_tdep_h) \
1415	$(solib_svr4_h)
1416amd64-tdep.o: amd64-tdep.c $(defs_h) $(arch_utils_h) $(block_h) \
1417	$(dummy_frame_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
1418	$(inferior_h) $(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(regcache_h) \
1419	$(regset_h) $(symfile_h) $(gdb_assert_h) $(amd64_tdep_h) \
1420	$(i387_tdep_h)
1421annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) \
1422	$(gdbtypes_h) $(breakpoint_h)
1423arch-utils.o: arch-utils.c $(defs_h) $(arch_utils_h) $(buildsym_h) \
1424	$(gdbcmd_h) $(inferior_h) $(gdb_string_h) $(regcache_h) \
1425	$(gdb_assert_h) $(sim_regno_h) $(gdbcore_h) $(osabi_h) $(version_h) \
1426	$(floatformat_h)
1427arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1428	$(gdb_string_h) $(regcache_h) $(arm_tdep_h) $(gregset_h)
1429arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \
1430	$(gdbtypes_h) $(floatformat_h) $(gdbcore_h) $(frame_h) $(regcache_h) \
1431	$(doublest_h) $(solib_svr4_h) $(osabi_h) $(arm_tdep_h) \
1432	$(glibc_tdep_h)
1433armnbsd-nat.o: armnbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1434	$(regcache_h) $(target_h) $(gdb_string_h) $(arm_tdep_h) $(inf_ptrace_h)
1435armnbsd-tdep.o: armnbsd-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \
1436	$(arm_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h)
1437arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \
1438	$(gdbcore_h) $(gdb_string_h) $(dis_asm_h) $(regcache_h) \
1439	$(doublest_h) $(value_h) $(arch_utils_h) $(osabi_h) \
1440	$(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(arm_tdep_h) \
1441	$(gdb_sim_arm_h) $(elf_bfd_h) $(coff_internal_h) $(elf_arm_h) \
1442	$(gdb_assert_h) $(bfd_in2_h) $(libcoff_h) $(objfiles_h) \
1443	$(dwarf2_frame_h)
1444auxv.o: auxv.c $(defs_h) $(target_h) $(gdbtypes_h) $(command_h) \
1445	$(inferior_h) $(valprint_h) $(gdb_assert_h) $(auxv_h) \
1446	$(elf_common_h)
1447avr-tdep.o: avr-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1448	$(frame_base_h) $(trad_frame_h) $(gdbcmd_h) $(gdbcore_h) \
1449	$(inferior_h) $(symfile_h) $(arch_utils_h) $(regcache_h) \
1450	$(gdb_string_h) $(dis_asm_h)
1451ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) \
1452	$(value_h) $(expression_h) $(command_h) $(gdbcmd_h) $(frame_h) \
1453	$(target_h) $(ax_h) $(ax_gdb_h) $(gdb_string_h) $(block_h) \
1454	$(regcache_h)
1455ax-general.o: ax-general.c $(defs_h) $(ax_h) $(value_h) $(gdb_string_h)
1456bcache.o: bcache.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(gdb_string_h) \
1457	$(gdb_assert_h)
1458bfd-target.o: bfd-target.c $(defs_h) $(target_h) $(bfd_target_h) \
1459	$(gdb_assert_h) $(gdb_string_h)
1460block.o: block.c $(defs_h) $(block_h) $(symtab_h) $(symfile_h) \
1461	$(gdb_obstack_h) $(cp_support_h)
1462blockframe.o: blockframe.c $(defs_h) $(symtab_h) $(bfd_h) $(objfiles_h) \
1463	$(frame_h) $(gdbcore_h) $(value_h) $(target_h) $(inferior_h) \
1464	$(annotate_h) $(regcache_h) $(gdb_assert_h) $(dummy_frame_h) \
1465	$(command_h) $(gdbcmd_h) $(block_h)
1466breakpoint.o: breakpoint.c $(defs_h) $(symtab_h) $(frame_h) $(breakpoint_h) \
1467	$(gdbtypes_h) $(expression_h) $(gdbcore_h) $(gdbcmd_h) $(value_h) \
1468	$(command_h) $(inferior_h) $(gdbthread_h) $(target_h) $(language_h) \
1469	$(gdb_string_h) $(demangle_h) $(annotate_h) $(symfile_h) \
1470	$(objfiles_h) $(source_h) $(linespec_h) $(completer_h) $(gdb_h) \
1471	$(ui_out_h) $(cli_script_h) $(gdb_assert_h) $(block_h) $(solib_h) \
1472	$(solist_h) $(observer_h) $(exceptions_h) $(gdb_events_h) $(mi_common_h)
1473bsd-kvm.o: bsd-kvm.c $(defs_h) $(cli_cmds_h) $(command_h) $(frame_h) \
1474	$(regcache_h) $(target_h) $(value_h) $(gdbcore_h) $(gdb_assert_h) \
1475	$(readline_h) $(bsd_kvm_h)
1476bsd-uthread.o: bsd-uthread.c $(defs_h) $(gdbcore_h) $(gdbthread_h) \
1477	$(inferior_h) $(objfiles_h) $(observer_h) $(regcache_h) $(solib_h) \
1478	$(solist_h) $(symfile_h) $(target_h) $(gdb_assert_h) \
1479	$(gdb_obstack_h) $(bsd_uthread_h)
1480buildsym.o: buildsym.c $(defs_h) $(bfd_h) $(gdb_obstack_h) $(symtab_h) \
1481	$(symfile_h) $(objfiles_h) $(gdbtypes_h) $(gdb_assert_h) \
1482	$(complaints_h) $(gdb_string_h) $(expression_h) $(bcache_h) \
1483	$(filenames_h) $(macrotab_h) $(demangle_h) $(block_h) \
1484	$(cp_support_h) $(dictionary_h) $(buildsym_h) $(stabsread_h)
1485c-exp.o: c-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1486	$(parser_defs_h) $(language_h) $(c_lang_h) $(bfd_h) $(symfile_h) \
1487	$(objfiles_h) $(charset_h) $(block_h) $(cp_support_h)
1488charset.o: charset.c $(defs_h) $(charset_h) $(gdbcmd_h) $(gdb_assert_h) \
1489	$(gdb_string_h)
1490c-lang.o: c-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1491	$(parser_defs_h) $(language_h) $(c_lang_h) $(valprint_h) \
1492	$(macroscope_h) $(gdb_assert_h) $(charset_h) $(gdb_string_h) \
1493	$(demangle_h) $(cp_support_h)
1494cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h) $(gdb_string_h) \
1495	$(gdb_assert_h)
1496coff-pe-read.o: coff-pe-read.c $(coff_pe_read_h) $(bfd_h) $(defs_h) \
1497	$(gdbtypes_h) $(symtab_h) $(symfile_h) $(objfiles_h)
1498coffread.o: coffread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(demangle_h) \
1499	$(breakpoint_h) $(bfd_h) $(gdb_obstack_h) $(gdb_string_h) \
1500	$(coff_internal_h) $(libcoff_h) $(objfiles_h) $(buildsym_h) \
1501	$(gdb_stabs_h) $(stabsread_h) $(complaints_h) $(target_h) \
1502	$(gdb_assert_h) $(block_h) $(dictionary_h) $(coff_pe_read_h)
1503coff-solib.o: coff-solib.c $(defs_h) $(frame_h) $(bfd_h) $(gdbcore_h) \
1504	$(symtab_h) $(symfile_h) $(objfiles_h)
1505complaints.o: complaints.c $(defs_h) $(complaints_h) $(gdb_assert_h) \
1506	$(command_h) $(gdbcmd_h)
1507completer.o: completer.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1508	$(filenames_h) $(language_h) $(cli_decode_h) $(gdbcmd_h) \
1509	$(readline_h) $(completer_h)
1510copying.o: copying.c $(defs_h) $(command_h) $(gdbcmd_h)
1511core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(regcache_h) \
1512	$(gdb_dirent_h) $(gdb_stat_h)
1513corefile.o: corefile.c $(defs_h) $(gdb_string_h) $(inferior_h) $(symtab_h) \
1514	$(command_h) $(gdbcmd_h) $(bfd_h) $(target_h) $(gdbcore_h) \
1515	$(dis_asm_h) $(gdb_stat_h) $(completer_h) $(exceptions_h)
1516corelow.o: corelow.c $(defs_h) $(arch_utils_h) $(gdb_string_h) $(frame_h) \
1517	$(inferior_h) $(symtab_h) $(command_h) $(bfd_h) $(target_h) \
1518	$(gdbcore_h) $(gdbthread_h) $(regcache_h) $(regset_h) $(symfile_h) \
1519	$(exec_h) $(readline_h) $(observer_h) $(gdb_assert_h) \
1520	$(exceptions_h) $(solib_h)
1521core-regset.o: core-regset.c $(defs_h) $(command_h) $(gdbcore_h) \
1522	$(inferior_h) $(target_h) $(gdb_string_h) $(gregset_h)
1523cp-abi.o: cp-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(command_h) $(gdbcmd_h) \
1524	$(ui_out_h) $(gdb_string_h)
1525cp-name-parser.o: cp-name-parser.c $(safe_ctype_h) $(libiberty_h) $(demangle_h)
1526cp-namespace.o: cp-namespace.c $(defs_h) $(cp_support_h) $(gdb_obstack_h) \
1527	$(symtab_h) $(symfile_h) $(gdb_assert_h) $(block_h) $(objfiles_h) \
1528	$(gdbtypes_h) $(dictionary_h) $(command_h) $(frame_h)
1529cp-support.o: cp-support.c $(defs_h) $(cp_support_h) $(gdb_string_h) \
1530	$(demangle_h) $(gdb_assert_h) $(gdbcmd_h) $(dictionary_h) \
1531	$(objfiles_h) $(frame_h) $(symtab_h) $(block_h) $(complaints_h) \
1532	$(gdbtypes_h)
1533cpu32bug-rom.o: cpu32bug-rom.c $(defs_h) $(gdbcore_h) $(target_h) \
1534	$(monitor_h) $(serial_h) $(regcache_h) $(m68k_tdep_h)
1535cp-valprint.o: cp-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
1536	$(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \
1537	$(demangle_h) $(annotate_h) $(gdb_string_h) $(c_lang_h) $(target_h) \
1538	$(cp_abi_h) $(valprint_h) $(cp_support_h) $(language_h)
1539cris-tdep.o: cris-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1540	$(frame_base_h) $(trad_frame_h) $(dwarf2_frame_h) $(symtab_h) \
1541	$(inferior_h) $(gdbtypes_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) \
1542	$(value_h) $(opcode_cris_h) $(arch_utils_h) $(regcache_h) \
1543	$(gdb_assert_h) $(objfiles_h) $(solib_h) $(solib_svr4_h) \
1544	$(gdb_string_h) $(dis_asm_h)
1545c-typeprint.o: c-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
1546	$(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
1547	$(language_h) $(demangle_h) $(c_lang_h) $(typeprint_h) $(cp_abi_h) \
1548	$(gdb_string_h)
1549c-valprint.o: c-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1550	$(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \
1551	$(c_lang_h) $(cp_abi_h) $(target_h)
1552# OBSOLETE d10v-tdep.o: d10v-tdep.c
1553dbug-rom.o: dbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1554	$(serial_h) $(regcache_h) $(m68k_tdep_h)
1555dbxread.o: dbxread.c $(defs_h) $(gdb_string_h) $(gdb_obstack_h) \
1556	$(gdb_stat_h) $(symtab_h) $(breakpoint_h) $(target_h) $(gdbcore_h) \
1557	$(libaout_h) $(objfiles_h) $(buildsym_h) $(stabsread_h) \
1558	$(gdb_stabs_h) $(demangle_h) $(complaints_h) $(cp_abi_h) \
1559	$(gdb_assert_h) $(gdb_string_h) $(aout_aout64_h) $(aout_stab_gnu_h)
1560dcache.o: dcache.c $(defs_h) $(dcache_h) $(gdbcmd_h) $(gdb_string_h) \
1561	$(gdbcore_h) $(target_h)
1562demangle.o: demangle.c $(defs_h) $(command_h) $(gdbcmd_h) $(demangle_h) \
1563	$(gdb_string_h)
1564dictionary.o: dictionary.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
1565	$(buildsym_h) $(gdb_assert_h) $(dictionary_h)
1566dink32-rom.o: dink32-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1567	$(serial_h) $(symfile_h) $(inferior_h) $(regcache_h)
1568disasm.o: disasm.c $(defs_h) $(target_h) $(value_h) $(ui_out_h) \
1569	$(gdb_string_h) $(disasm_h) $(gdbcore_h) $(dis_asm_h)
1570doublest.o: doublest.c $(defs_h) $(doublest_h) $(floatformat_h) \
1571	$(gdb_assert_h) $(gdb_string_h) $(gdbtypes_h)
1572dsrec.o: dsrec.c $(defs_h) $(serial_h) $(srec_h) $(gdb_assert_h) \
1573	$(gdb_string_h)
1574dummy-frame.o: dummy-frame.c $(defs_h) $(dummy_frame_h) $(regcache_h) \
1575	$(frame_h) $(inferior_h) $(gdb_assert_h) $(frame_unwind_h) \
1576	$(command_h) $(gdbcmd_h) $(gdb_string_h)
1577dve3900-rom.o: dve3900-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1578	$(serial_h) $(inferior_h) $(command_h) $(gdb_string_h) $(regcache_h) \
1579	$(mips_tdep_h)
1580dwarf2expr.o: dwarf2expr.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) \
1581	$(gdbcore_h) $(elf_dwarf2_h) $(dwarf2expr_h)
1582dwarf2-frame.o: dwarf2-frame.c $(defs_h) $(dwarf2expr_h) $(elf_dwarf2_h) \
1583	$(frame_h) $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) \
1584	$(gdbtypes_h) $(symtab_h) $(objfiles_h) $(regcache_h) \
1585	$(gdb_assert_h) $(gdb_string_h) $(complaints_h) $(dwarf2_frame_h)
1586dwarf2loc.o: dwarf2loc.c $(defs_h) $(ui_out_h) $(value_h) $(frame_h) \
1587	$(gdbcore_h) $(target_h) $(inferior_h) $(ax_h) $(ax_gdb_h) \
1588	$(regcache_h) $(objfiles_h) $(exceptions_h) $(elf_dwarf2_h) \
1589	$(dwarf2expr_h) $(dwarf2loc_h) $(gdb_string_h)
1590dwarf2read.o: dwarf2read.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \
1591	$(objfiles_h) $(elf_dwarf2_h) $(buildsym_h) $(demangle_h) \
1592	$(expression_h) $(filenames_h) $(macrotab_h) $(language_h) \
1593	$(complaints_h) $(bcache_h) $(dwarf2expr_h) $(dwarf2loc_h) \
1594	$(cp_support_h) $(hashtab_h) $(command_h) $(gdbcmd_h) \
1595	$(gdb_string_h) $(gdb_assert_h)
1596dwarfread.o: dwarfread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(objfiles_h) \
1597	$(elf_dwarf_h) $(buildsym_h) $(demangle_h) $(expression_h) \
1598	$(language_h) $(complaints_h) $(gdb_string_h)
1599elfread.o: elfread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(elf_bfd_h) \
1600	$(elf_mips_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \
1601	$(stabsread_h) $(gdb_stabs_h) $(complaints_h) $(demangle_h)
1602environ.o: environ.c $(defs_h) $(environ_h) $(gdb_string_h)
1603eval.o: eval.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1604	$(value_h) $(expression_h) $(target_h) $(frame_h) $(language_h) \
1605	$(f_lang_h) $(cp_abi_h) $(infcall_h) $(objc_lang_h) $(block_h) \
1606	$(parser_defs_h) $(cp_support_h)
1607event-loop.o: event-loop.c $(defs_h) $(event_loop_h) $(event_top_h) \
1608	$(gdb_string_h) $(exceptions_h) $(gdb_assert_h)
1609event-top.o: event-top.c $(defs_h) $(top_h) $(inferior_h) $(target_h) \
1610	$(terminal_h) $(event_loop_h) $(event_top_h) $(interps_h) \
1611	$(exceptions_h) $(gdbcmd_h) $(readline_h) $(readline_history_h)
1612exceptions.o: exceptions.c $(defs_h) $(exceptions_h) $(breakpoint_h) \
1613	$(target_h) $(inferior_h) $(annotate_h) $(ui_out_h) $(gdb_assert_h) \
1614	$(gdb_string_h) $(serial_h)
1615exec.o: exec.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) $(gdbcmd_h) \
1616	$(language_h) $(symfile_h) $(objfiles_h) $(completer_h) $(value_h) \
1617	$(exec_h) $(readline_h) $(gdb_string_h) $(gdbcore_h) $(gdb_stat_h) \
1618	$(xcoffsolib_h) $(observer_h)
1619expprint.o: expprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1620	$(value_h) $(language_h) $(parser_defs_h) $(user_regs_h) $(target_h) \
1621	$(gdb_string_h) $(block_h)
1622fbsd-nat.o: fbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h) \
1623	$(regset_h) $(gdb_assert_h) $(gdb_string_h) $(elf_bfd_h) \
1624	$(fbsd_nat_h)
1625f-exp.o: f-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1626	$(parser_defs_h) $(language_h) $(f_lang_h) $(bfd_h) $(symfile_h) \
1627	$(objfiles_h) $(block_h)
1628findvar.o: findvar.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(frame_h) \
1629	$(value_h) $(gdbcore_h) $(inferior_h) $(target_h) $(gdb_string_h) \
1630	$(gdb_assert_h) $(floatformat_h) $(symfile_h) $(regcache_h) \
1631	$(user_regs_h) $(block_h)
1632f-lang.o: f-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1633	$(expression_h) $(parser_defs_h) $(language_h) $(f_lang_h) \
1634	$(valprint_h) $(value_h)
1635fork-child.o: fork-child.c $(defs_h) $(gdb_string_h) $(frame_h) \
1636	$(inferior_h) $(target_h) $(gdb_wait_h) $(gdb_vfork_h) $(gdbcore_h) \
1637	$(terminal_h) $(gdbthread_h) $(command_h) $(solib_h)
1638frame-base.o: frame-base.c $(defs_h) $(frame_base_h) $(frame_h) \
1639	$(gdb_obstack_h)
1640frame.o: frame.c $(defs_h) $(frame_h) $(target_h) $(value_h) $(inferior_h) \
1641	$(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(user_regs_h) \
1642	$(gdb_obstack_h) $(dummy_frame_h) $(sentinel_frame_h) $(gdbcore_h) \
1643	$(annotate_h) $(language_h) $(frame_unwind_h) $(frame_base_h) \
1644	$(command_h) $(gdbcmd_h) $(observer_h) $(objfiles_h) $(exceptions_h)
1645frame-unwind.o: frame-unwind.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1646	$(gdb_assert_h) $(dummy_frame_h) $(gdb_obstack_h)
1647frv-linux-tdep.o: frv-linux-tdep.c $(defs_h) $(target_h) $(frame_h) \
1648	$(osabi_h) $(elf_bfd_h) $(elf_frv_h) $(frv_tdep_h) $(trad_frame_h) \
1649	$(frame_unwind_h)
1650frv-tdep.o: frv-tdep.c $(defs_h) $(gdb_string_h) $(inferior_h) $(gdbcore_h) \
1651	$(arch_utils_h) $(regcache_h) $(frame_h) $(frame_unwind_h) \
1652	$(frame_base_h) $(trad_frame_h) $(dis_asm_h) $(gdb_assert_h) \
1653	$(sim_regno_h) $(gdb_sim_frv_h) $(opcodes_frv_desc_h) $(symtab_h) \
1654	$(elf_bfd_h) $(elf_frv_h) $(osabi_h) $(infcall_h) $(frv_tdep_h)
1655f-typeprint.o: f-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
1656	$(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
1657	$(f_lang_h) $(gdb_string_h)
1658f-valprint.o: f-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1659	$(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \
1660	$(f_lang_h) $(frame_h) $(gdbcore_h) $(command_h) $(block_h)
1661gcore.o: gcore.c $(defs_h) $(elf_bfd_h) $(infcall_h) $(inferior_h) \
1662	$(gdbcore_h) $(objfiles_h) $(symfile_h) $(cli_decode_h) \
1663	$(gdb_assert_h)
1664gdbarch.o: gdbarch.c $(defs_h) $(arch_utils_h) $(gdbcmd_h) $(inferior_h) \
1665	$(symcat_h) $(floatformat_h) $(gdb_assert_h) $(gdb_string_h) \
1666	$(gdb_events_h) $(reggroups_h) $(osabi_h) $(gdb_obstack_h)
1667gdb.o: gdb.c $(defs_h) $(main_h) $(gdb_string_h) $(interps_h)
1668gdb-events.o: gdb-events.c $(defs_h) $(gdb_events_h) $(gdbcmd_h)
1669gdbtypes.o: gdbtypes.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
1670	$(symfile_h) $(objfiles_h) $(gdbtypes_h) $(expression_h) \
1671	$(language_h) $(target_h) $(value_h) $(demangle_h) $(complaints_h) \
1672	$(gdbcmd_h) $(wrapper_h) $(cp_abi_h) $(gdb_assert_h)
1673glibc-tdep.o: glibc-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \
1674	$(objfiles_h) $(glibc_tdep_h)
1675gnu-nat.o: gnu-nat.c $(gdb_string_h) $(defs_h) $(inferior_h) $(symtab_h) \
1676	$(value_h) $(language_h) $(target_h) $(gdb_wait_h) $(gdbcmd_h) \
1677	$(gdbcore_h) $(gdbthread_h) $(gdb_assert_h) $(gdb_obstack_h) \
1678	$(gnu_nat_h) $(exc_request_S_h) $(notify_S_h) $(process_reply_S_h) \
1679	$(msg_reply_S_h) $(exc_request_U_h) $(msg_U_h)
1680gnu-v2-abi.o: gnu-v2-abi.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1681	$(gdbtypes_h) $(value_h) $(demangle_h) $(cp_abi_h) $(cp_support_h) \
1682	$(gnu_v2_abi_h)
1683gnu-v3-abi.o: gnu-v3-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(cp_support_h) \
1684	$(demangle_h) $(gdb_assert_h) $(gdb_string_h)
1685go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) $(gdb_wait_h) $(gdbcore_h) \
1686	$(command_h) $(gdbcmd_h) $(floatformat_h) $(buildsym_h) \
1687	$(i387_tdep_h) $(i386_tdep_h) $(value_h) $(regcache_h) \
1688	$(gdb_string_h) $(top_h)
1689h8300-tdep.o: h8300-tdep.c $(defs_h) $(value_h) $(arch_utils_h) $(regcache_h) \
1690	$(gdbcore_h) $(objfiles_h) $(gdb_assert_h) $(dis_asm_h) \
1691	 $(dwarf2_frame_h) $(frame_base_h) $(frame_unwind_h)
1692hpacc-abi.o: hpacc-abi.c $(defs_h) $(value_h) $(gdb_regex_h) $(gdb_string_h) \
1693	$(gdbtypes_h) $(gdbcore_h) $(cp_abi_h) $(gnu_v2_abi_h)
1694hppabsd-nat.o: hppabsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1695	$(target_h) $(hppa_tdep_h) $(inf_ptrace_h)
1696hppabsd-tdep.o: hppabsd-tdep.c $(defs_h) $(arch_utils_h) $(symtab_h) \
1697	$(objfiles_h) $(osabi_h) $(regcache_h) $(regset_h) $(target_h) \
1698	$(value_h) $(gdb_assert_h) $(gdb_string_h) $(elf_common_h) \
1699	$(hppa_tdep_h) $(solib_svr4_h)
1700hppa-hpux-nat.o: hppa-hpux-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1701	$(target_h) $(gdb_assert_h) $(hppa_tdep_h) $(inf_ptrace_h) \
1702	$(inf_ttrace_h)
1703hppa-hpux-tdep.o: hppa-hpux-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \
1704	$(osabi_h) $(frame_h) $(frame_unwind_h) $(trad_frame_h) $(symtab_h) \
1705	$(objfiles_h) $(inferior_h) $(infcall_h) $(observer_h) \
1706	$(hppa_tdep_h) $(solib_som_h) $(solib_pa64_h) $(regset_h) \
1707	$(exceptions_h) $(gdb_string_h)
1708hppa-linux-nat.o: hppa-linux-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
1709	$(gdb_string_h) $(inferior_h) $(hppa_tdep_h) $(gregset_h)
1710hppa-linux-tdep.o: hppa-linux-tdep.c $(defs_h) $(gdbcore_h) $(osabi_h) \
1711	$(target_h) $(objfiles_h) $(solib_svr4_h) $(glibc_tdep_h) \
1712	$(frame_unwind_h) $(trad_frame_h) $(dwarf2_frame_h) $(value_h) \
1713	$(hppa_tdep_h) $(elf_common_h)
1714hppa-tdep.o: hppa-tdep.c $(defs_h) $(bfd_h) $(inferior_h) $(regcache_h) \
1715	$(completer_h) $(osabi_h) $(gdb_assert_h) $(arch_utils_h) \
1716	$(symtab_h) $(dis_asm_h) $(trad_frame_h) $(frame_unwind_h) \
1717	$(frame_base_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) \
1718	$(hppa_tdep_h)
1719hpread.o: hpread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(hp_symtab_h) \
1720	$(syms_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \
1721	$(complaints_h) $(gdb_stabs_h) $(gdbtypes_h) $(demangle_h) \
1722	$(solib_som_h) $(gdb_assert_h) $(hppa_tdep_h) $(gdb_string_h)
1723hpux-thread.o: hpux-thread.c $(defs_h) $(gdbthread_h) $(target_h) \
1724	$(inferior_h) $(regcache_h) $(gdb_stat_h) $(gdbcore_h) \
1725	$(hppa_tdep_h)
1726i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1727	$(gdb_assert_h) $(i386_tdep_h) $(i387_tdep_h) $(i386bsd_nat_h) \
1728	$(inf_ptrace_h)
1729i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1730	$(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_string_h) $(i386_tdep_h)
1731i386-cygwin-tdep.o: i386-cygwin-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \
1732	$(i386_tdep_h)
1733i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1734	$(target_h) $(fbsd_nat_h) $(i386_tdep_h) $(i386bsd_nat_h) \
1735	$(bsd_kvm_h)
1736i386fbsd-tdep.o: i386fbsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \
1737	$(osabi_h) $(regcache_h) $(gdb_assert_h) $(i386_tdep_h) \
1738	$(i387_tdep_h) $(bsd_uthread_h) $(solib_svr4_h)
1739i386gnu-nat.o: i386gnu-nat.c $(defs_h) $(inferior_h) $(floatformat_h) \
1740	$(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) \
1741	$(gnu_nat_h) $(i387_tdep_h) $(gregset_h)
1742i386gnu-tdep.o: i386gnu-tdep.c $(defs_h) $(osabi_h) $(i386_tdep_h)
1743i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1744	$(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
1745	$(gregset_h) $(i387_tdep_h) $(i386_tdep_h) $(i386_linux_tdep_h) \
1746	$(gdb_proc_service_h)
1747i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
1748	$(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \
1749	$(dwarf2_frame_h) $(gdb_string_h) $(i386_tdep_h) \
1750	$(i386_linux_tdep_h) $(glibc_tdep_h) $(solib_svr4_h)
1751i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h)
1752i386nbsd-nat.o: i386nbsd-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
1753	$(target_h) $(i386_tdep_h) $(i386bsd_nat_h) $(bsd_kvm_h)
1754i386nbsd-tdep.o: i386nbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1755	$(gdbcore_h) $(regcache_h) $(regset_h) $(osabi_h) $(symtab_h) \
1756	$(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h) \
1757	$(nbsd_tdep_h) $(solib_svr4_h)
1758i386-nto-tdep.o: i386-nto-tdep.c $(defs_h) $(frame_h) $(osabi_h) \
1759	$(regcache_h) $(target_h) $(gdb_assert_h) $(gdb_string_h) \
1760	$(i386_tdep_h) $(i387_tdep_h) $(nto_tdep_h) $(solib_svr4_h)
1761i386obsd-nat.o: i386obsd-nat.c $(defs_h) $(i386_tdep_h)
1762i386obsd-tdep.o: i386obsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1763	$(gdbcore_h) $(regcache_h) $(regset_h) $(symtab_h) $(objfiles_h) \
1764	$(osabi_h) $(target_h) $(gdb_assert_h) $(gdb_string_h) \
1765	$(i386_tdep_h) $(i387_tdep_h) $(solib_svr4_h) $(bsd_uthread_h)
1766i386-sol2-nat.o: i386-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \
1767	$(amd64_nat_h) $(amd64_tdep_h)
1768i386-sol2-tdep.o: i386-sol2-tdep.c $(defs_h) $(value_h) $(osabi_h) \
1769	$(gdb_string_h) $(i386_tdep_h) $(solib_svr4_h)
1770i386-stub.o: i386-stub.c
1771i386-tdep.o: i386-tdep.c $(defs_h) $(arch_utils_h) $(command_h) \
1772	$(dummy_frame_h) $(dwarf2_frame_h) $(doublest_h) $(floatformat_h) \
1773	$(frame_h) $(frame_base_h) $(frame_unwind_h) $(inferior_h) \
1774	$(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(osabi_h) $(regcache_h) \
1775	$(reggroups_h) $(regset_h) $(symfile_h) $(symtab_h) $(target_h) \
1776	$(value_h) $(dis_asm_h) $(gdb_assert_h) $(gdb_string_h) \
1777	$(i386_tdep_h) $(i387_tdep_h)
1778i386v4-nat.o: i386v4-nat.c $(defs_h) $(value_h) $(inferior_h) $(regcache_h) \
1779	$(i386_tdep_h) $(i387_tdep_h) $(gregset_h)
1780i386v-nat.o: i386v-nat.c $(defs_h) $(frame_h) $(inferior_h) $(language_h) \
1781	$(gdbcore_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \
1782	$(i386_tdep_h)
1783i387-tdep.o: i387-tdep.c $(defs_h) $(doublest_h) $(floatformat_h) $(frame_h) \
1784	$(gdbcore_h) $(inferior_h) $(language_h) $(regcache_h) $(value_h) \
1785	$(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h)
1786ia64-linux-nat.o: ia64-linux-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \
1787	$(target_h) $(gdbcore_h) $(regcache_h) $(ia64_tdep_h) $(gdb_wait_h) \
1788	$(gregset_h)
1789ia64-linux-tdep.o: ia64-linux-tdep.c $(defs_h) $(ia64_tdep_h) \
1790	$(arch_utils_h) $(gdbcore_h) $(regcache_h) $(osabi_h) $(solib_svr4_h)
1791ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1792	$(arch_utils_h) $(floatformat_h) $(regcache_h) $(reggroups_h) \
1793	$(frame_h) $(frame_base_h) $(frame_unwind_h) $(doublest_h) \
1794	$(value_h) $(gdb_assert_h) $(objfiles_h) $(elf_common_h) \
1795	$(elf_bfd_h) $(dis_asm_h) $(infcall_h) $(osabi_h) $(ia64_tdep_h) \
1796	$(elf_ia64_h) $(libunwind_frame_h) $(libunwind_ia64_h)
1797infcall.o: infcall.c $(defs_h) $(breakpoint_h) $(target_h) $(regcache_h) \
1798	$(inferior_h) $(gdb_assert_h) $(block_h) $(gdbcore_h) $(language_h) \
1799	$(objfiles_h) $(gdbcmd_h) $(command_h) $(gdb_string_h) $(infcall_h) \
1800	$(dummy_frame_h)
1801inf-child.o: inf-child.c $(defs_h) $(regcache_h) $(memattr_h) $(symtab_h) \
1802	$(target_h) $(inferior_h) $(gdb_string_h)
1803infcmd.o: infcmd.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1804	$(frame_h) $(inferior_h) $(environ_h) $(value_h) $(gdbcmd_h) \
1805	$(symfile_h) $(gdbcore_h) $(target_h) $(language_h) $(symfile_h) \
1806	$(objfiles_h) $(completer_h) $(ui_out_h) $(event_top_h) \
1807	$(parser_defs_h) $(regcache_h) $(reggroups_h) $(block_h) \
1808	$(solib_h) $(gdb_assert_h)
1809inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \
1810	$(event_top_h) $(inf_loop_h) $(remote_h) $(exceptions_h)
1811inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \
1812	$(serial_h) $(terminal_h) $(target_h) $(gdbthread_h) $(gdb_string_h) \
1813	$(inflow_h)
1814inf-ptrace.o: inf-ptrace.c $(defs_h) $(command_h) $(inferior_h) $(inflow_h) \
1815	$(gdbcore_h) $(observer_h) $(regcache_h) $(gdb_assert_h) \
1816	$(gdb_string_h) $(gdb_ptrace_h) $(gdb_wait_h) $(inf_child_h)
1817	$(CC) -c $(INTERNAL_CFLAGS) $< -Wno-error
1818
1819infptrace.o: infptrace.c $(defs_h) $(command_h) $(frame_h) $(gdbcore_h) \
1820	$(inferior_h) $(regcache_h) $(target_h) $(gdb_assert_h) \
1821	$(gdb_wait_h) $(gdb_string_h) $(gdb_dirent_h) $(gdb_ptrace_h)
1822infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \
1823	$(inferior_h) $(exceptions_h) $(breakpoint_h) $(gdb_wait_h) \
1824	$(gdbcore_h) $(gdbcmd_h) $(cli_script_h) $(target_h) $(gdbthread_h) \
1825	$(annotate_h) $(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) \
1826	$(value_h) $(observer_h) $(language_h) $(solib_h) $(gdb_assert_h) \
1827	$(mi_common_h)
1828inftarg.o: inftarg.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
1829	$(gdbcore_h) $(command_h) $(gdb_stat_h) $(observer_h) $(gdb_wait_h) \
1830	$(inflow_h)
1831inf-ttrace.o: inf-ttrace.c $(defs_h) $(command_h) $(gdbcore_h) \
1832	$(gdbthread_h) $(inferior_h) $(observer_h) $(target_h) \
1833	$(gdb_assert_h) $(gdb_string_h) $(inf_child_h) $(inf_ttrace_h)
1834interps.o: interps.c $(defs_h) $(gdbcmd_h) $(ui_out_h) $(event_loop_h) \
1835	$(event_top_h) $(interps_h) $(completer_h) $(gdb_string_h) \
1836	$(gdb_events_h) $(gdb_assert_h) $(top_h) $(exceptions_h)
1837iq2000-tdep.o: iq2000-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
1838	$(frame_unwind_h) $(dwarf2_frame_h) $(gdbtypes_h) $(value_h) \
1839	$(dis_asm_h) $(gdb_string_h) $(arch_utils_h) $(regcache_h) \
1840	$(osabi_h) $(gdbcore_h)
1841irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \
1842	$(regcache_h) $(gdb_string_h) $(gregset_h) $(mips_tdep_h)
1843jv-exp.o: jv-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1844	$(parser_defs_h) $(language_h) $(jv_lang_h) $(bfd_h) $(symfile_h) \
1845	$(objfiles_h) $(block_h)
1846jv-lang.o: jv-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1847	$(parser_defs_h) $(language_h) $(gdbtypes_h) $(symtab_h) \
1848	$(symfile_h) $(objfiles_h) $(gdb_string_h) $(value_h) $(c_lang_h) \
1849	$(jv_lang_h) $(gdbcore_h) $(block_h) $(demangle_h) $(dictionary_h)
1850jv-typeprint.o: jv-typeprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
1851	$(value_h) $(demangle_h) $(jv_lang_h) $(gdb_string_h) $(typeprint_h) \
1852	$(c_lang_h) $(cp_abi_h)
1853jv-valprint.o: jv-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
1854	$(gdbcore_h) $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \
1855	$(language_h) $(jv_lang_h) $(c_lang_h) $(annotate_h) $(gdb_string_h)
1856kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) $(target_h) $(gdb_string_h) \
1857	$(kod_h)
1858kod-cisco.o: kod-cisco.c $(defs_h) $(gdb_string_h) $(kod_h)
1859language.o: language.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1860	$(value_h) $(gdbcmd_h) $(expression_h) $(language_h) $(target_h) \
1861	$(parser_defs_h) $(jv_lang_h) $(demangle_h)
1862libunwind-frame.o: libunwind-frame.c $(defs_h) $(inferior_h) $(frame_h) \
1863	$(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
1864	$(symtab_h) $(objfiles_h) $(regcache_h) $(gdb_assert_h) \
1865	$(gdb_string_h) $(libunwind_frame_h) $(complaints_h)
1866linespec.o: linespec.c $(defs_h) $(symtab_h) $(frame_h) $(command_h) \
1867	$(symfile_h) $(objfiles_h) $(source_h) $(demangle_h) $(value_h) \
1868	$(completer_h) $(cp_abi_h) $(parser_defs_h) $(block_h) \
1869	$(objc_lang_h) $(linespec_h) $(exceptions_h)
1870linux-nat.o: linux-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdb_string_h) \
1871	$(gdb_wait_h) $(gdb_assert_h) $(linux_nat_h) $(gdbthread_h) \
1872	$(gdbcmd_h) $(regcache_h) $(elf_bfd_h) $(gregset_h) $(gdbcore_h) \
1873	$(gdbthread_h) $(gdb_stat_h)
1874linux-thread-db.o: linux-thread-db.c $(defs_h) $(gdb_assert_h) \
1875	$(gdb_proc_service_h) $(gdb_thread_db_h) $(bfd_h) $(exceptions_h) \
1876	$(gdbthread_h) $(inferior_h) $(symfile_h) $(objfiles_h) $(target_h) \
1877	$(regcache_h) $(solib_svr4_h)
1878lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
1879	$(gdbcore_h) $(regcache_h)
1880m2-exp.o: m2-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(language_h) \
1881	$(value_h) $(parser_defs_h) $(m2_lang_h) $(bfd_h) $(symfile_h) \
1882	$(objfiles_h) $(block_h)
1883m2-lang.o: m2-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1884	$(parser_defs_h) $(language_h) $(m2_lang_h) $(c_lang_h) \
1885	$(valprint_h)
1886m2-typeprint.o: m2-typeprint.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \
1887	$(expression_h) $(value_h) $(gdbcore_h) $(target_h) $(m2_lang_h)
1888m2-valprint.o: m2-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
1889	$(m2_lang_h) $(c_lang_h)
1890m32r-linux-nat.o: m32r-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1891	$(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
1892	$(gregset_h) $(m32r_tdep_h)
1893m32r-linux-tdep.o: m32r-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
1894	$(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \
1895	$(regset_h) $(gdb_string_h) $(glibc_tdep_h) $(solib_svr4_h) \
1896	$(trad_frame_h) $(frame_unwind_h) $(m32r_tdep_h)
1897m32r-rom.o: m32r-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(exceptions_h) \
1898	$(monitor_h) $(serial_h) $(symtab_h) $(command_h) $(gdbcmd_h) \
1899	$(symfile_h) $(gdb_string_h) $(objfiles_h) $(inferior_h) \
1900	$(regcache_h)
1901m32r-stub.o: m32r-stub.c $(syscall_h)
1902m32r-tdep.o: m32r-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1903	$(frame_base_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \
1904	$(gdb_string_h) $(value_h) $(inferior_h) $(symfile_h) $(objfiles_h) \
1905	$(osabi_h) $(language_h) $(arch_utils_h) $(regcache_h) \
1906	$(trad_frame_h) $(dis_asm_h) $(gdb_assert_h) $(m32r_tdep_h)
1907m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1908	$(frame_base_h) $(dwarf2_frame_h) $(trad_frame_h) $(symtab_h) \
1909	$(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(gdb_string_h) $(value_h) \
1910	$(inferior_h) $(dis_asm_h) $(symfile_h) $(objfiles_h) \
1911	$(arch_utils_h) $(regcache_h) $(reggroups_h) $(target_h) \
1912	$(opcode_m68hc11_h) $(elf_m68hc11_h) $(elf_bfd_h)
1913m68kbsd-nat.o: m68kbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1914	$(regcache_h) $(gdb_assert_h) $(m68k_tdep_h) $(inf_ptrace_h) \
1915	$(bsd_kvm_h)
1916m68kbsd-tdep.o: m68kbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
1917	$(regcache_h) $(regset_h) $(gdb_assert_h) $(gdb_string_h) \
1918	$(m68k_tdep_h) $(solib_svr4_h)
1919m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1920	$(language_h) $(gdbcore_h) $(gdb_string_h) $(regcache_h) \
1921	$(m68k_tdep_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \
1922	$(gregset_h)
1923m68klinux-tdep.o: m68klinux-tdep.c $(defs_h) $(gdbcore_h) $(doublest_h) \
1924	$(floatformat_h) $(frame_h) $(target_h) $(gdb_string_h) \
1925	$(gdbtypes_h) $(osabi_h) $(regcache_h) $(objfiles_h) $(symtab_h) \
1926	$(m68k_tdep_h) $(trad_frame_h) $(frame_unwind_h) $(glibc_tdep_h) \
1927	$(solib_svr4_h)
1928m68k-stub.o: m68k-stub.c
1929m68k-tdep.o: m68k-tdep.c $(defs_h) $(dwarf2_frame_h) $(frame_h) \
1930	$(frame_base_h) $(frame_unwind_h) $(floatformat_h) $(symtab_h) \
1931	$(gdbcore_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \
1932	$(inferior_h) $(regcache_h) $(arch_utils_h) $(osabi_h) $(dis_asm_h) \
1933	$(m68k_tdep_h) $(gregset_h)
1934m88kbsd-nat.o: m88kbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1935	$(target_h) $(m88k_tdep_h) $(inf_ptrace_h)
1936m88k-tdep.o: m88k-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) $(frame_h) \
1937	$(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
1938	$(regcache_h) $(regset_h) $(symtab_h) $(trad_frame_h) $(value_h) \
1939	$(gdb_assert_h) $(gdb_string_h) $(m88k_tdep_h)
1940macrocmd.o: macrocmd.c $(defs_h) $(macrotab_h) $(macroexp_h) $(macroscope_h) \
1941	$(command_h) $(gdbcmd_h)
1942macroexp.o: macroexp.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(macrotab_h) \
1943	$(macroexp_h) $(gdb_assert_h)
1944macroscope.o: macroscope.c $(defs_h) $(macroscope_h) $(symtab_h) $(source_h) \
1945	$(target_h) $(frame_h) $(inferior_h) $(complaints_h)
1946macrotab.o: macrotab.c $(defs_h) $(gdb_obstack_h) $(splay_tree_h) \
1947	$(symtab_h) $(symfile_h) $(objfiles_h) $(macrotab_h) $(gdb_assert_h) \
1948	$(bcache_h) $(complaints_h)
1949main.o: main.c $(defs_h) $(top_h) $(target_h) $(inferior_h) $(symfile_h) \
1950	$(gdbcore_h) $(exceptions_h) $(getopt_h) $(gdb_stat_h) \
1951	$(gdb_string_h) $(event_loop_h) $(ui_out_h) $(interps_h) $(main_h)
1952maint.o: maint.c $(defs_h) $(command_h) $(gdbcmd_h) $(symtab_h) \
1953	$(gdbtypes_h) $(demangle_h) $(gdbcore_h) $(expression_h) \
1954	$(language_h) $(symfile_h) $(objfiles_h) $(value_h) $(cli_decode_h)
1955mdebugread.o: mdebugread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \
1956	$(objfiles_h) $(gdb_obstack_h) $(buildsym_h) $(stabsread_h) \
1957	$(complaints_h) $(demangle_h) $(gdb_assert_h) $(block_h) \
1958	$(dictionary_h) $(mdebugread_h) $(gdb_stat_h) $(gdb_string_h) \
1959	$(bfd_h) $(coff_ecoff_h) $(libaout_h) $(aout_aout64_h) \
1960	$(aout_stab_gnu_h) $(expression_h)
1961memattr.o: memattr.c $(defs_h) $(command_h) $(gdbcmd_h) $(memattr_h) \
1962	$(target_h) $(value_h) $(language_h) $(gdb_string_h)
1963mem-break.o: mem-break.c $(defs_h) $(symtab_h) $(breakpoint_h) $(inferior_h) \
1964	$(target_h)
1965minsyms.o: minsyms.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \
1966	$(symfile_h) $(objfiles_h) $(demangle_h) $(value_h) $(cp_abi_h)
1967mips64obsd-nat.o: mips64obsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1968	$(target_h) $(mips_tdep_h) $(inf_ptrace_h)
1969mips64obsd-tdep.o: mips64obsd-tdep.c $(defs_h) $(osabi_h) $(regcache_h) \
1970	$(regset_h) $(trad_frame_h) $(tramp_frame_h) $(gdb_assert_h) \
1971	$(gdb_string_h) $(mips_tdep_h) $(solib_svr4_h)
1972mips-irix-tdep.o: mips-irix-tdep.c $(defs_h) $(osabi_h) $(elf_bfd_h)
1973mips-linux-nat.o: mips-linux-nat.c $(defs_h) $(mips_tdep_h)
1974mips-linux-tdep.o: mips-linux-tdep.c $(defs_h) $(gdbcore_h) $(target_h) \
1975	$(solib_svr4_h) $(osabi_h) $(mips_tdep_h) $(gdb_string_h) \
1976	$(gdb_assert_h) $(frame_h) $(regcache_h) $(trad_frame_h) \
1977	$(tramp_frame_h)
1978mips-mdebug-tdep.o: mips-mdebug-tdep.c $(defs_h) $(frame_h) $(mips_tdep_h) \
1979	$(trad_frame_h) $(block_h) $(symtab_h) $(objfiles_h) $(elf_mips_h) \
1980	$(elf_bfd_h) $(gdb_assert_h) $(frame_unwind_h) $(frame_base_h) \
1981	$(mips_mdebug_tdep_h) $(mdebugread_h)
1982mipsnbsd-nat.o: mipsnbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1983	$(target_h) $(mips_tdep_h) $(mipsnbsd_tdep_h) $(inf_ptrace_h)
1984mipsnbsd-tdep.o: mipsnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
1985	$(regset_h) $(target_h) $(value_h) $(osabi_h) $(gdb_assert_h) \
1986	$(gdb_string_h) $(nbsd_tdep_h) $(mipsnbsd_tdep_h) $(mips_tdep_h) \
1987	$(solib_svr4_h)
1988mipsread.o: mipsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
1989	$(objfiles_h) $(buildsym_h) $(stabsread_h) $(coff_sym_h) \
1990	$(coff_internal_h) $(coff_ecoff_h) $(libcoff_h) $(libecoff_h) \
1991	$(elf_common_h) $(elf_mips_h)
1992mips-tdep.o: mips-tdep.c $(defs_h) $(gdb_string_h) $(gdb_assert_h) \
1993	$(frame_h) $(inferior_h) $(symtab_h) $(value_h) $(gdbcmd_h) \
1994	$(language_h) $(gdbcore_h) $(symfile_h) $(objfiles_h) $(gdbtypes_h) \
1995	$(target_h) $(arch_utils_h) $(regcache_h) $(osabi_h) $(mips_tdep_h) \
1996	$(block_h) $(reggroups_h) $(opcode_mips_h) $(elf_mips_h) \
1997	$(elf_bfd_h) $(symcat_h) $(sim_regno_h) $(dis_asm_h) \
1998	$(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(infcall_h) \
1999	$(floatformat_h)
2000mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \
2001	$(regcache_h) $(gregset_h)
2002mn10300-tdep.o: mn10300-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) \
2003	$(gdbtypes_h) $(regcache_h) $(gdb_string_h) $(gdb_assert_h) \
2004	$(frame_h) $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) \
2005	$(symtab_h) $(dwarf2_frame_h) $(regcache_h) $(mn10300_tdep_h)
2006monitor.o: monitor.c $(defs_h) $(gdbcore_h) $(target_h) $(exceptions_h) \
2007	$(gdb_string_h) $(command_h) $(serial_h) $(monitor_h) $(gdbcmd_h) \
2008	$(inferior_h) $(gdb_regex_h) $(srec_h) $(regcache_h)
2009nbsd-tdep.o: nbsd-tdep.c $(defs_h) $(gdb_string_h) $(solib_svr4_h)
2010nlmread.o: nlmread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
2011	$(objfiles_h) $(buildsym_h) $(stabsread_h) $(block_h)
2012nto-procfs.o: nto-procfs.c $(defs_h) $(gdb_dirent_h) $(exceptions_h) \
2013	$(gdb_string_h) $(gdbcore_h) $(inferior_h) $(target_h) $(objfiles_h) \
2014	$(gdbthread_h) $(nto_tdep_h) $(command_h) $(regcache_h)
2015nto-tdep.o: nto-tdep.c $(gdb_stat_h) $(gdb_string_h) $(nto_tdep_h) $(top_h) \
2016	$(cli_decode_h) $(cli_cmds_h) $(inferior_h) $(gdbarch_h) $(bfd_h) \
2017	$(elf_bfd_h) $(solib_svr4_h) $(gdbcore_h)
2018objc-exp.o: objc-exp.c $(defs_h) $(gdb_string_h) $(expression_h) \
2019	$(objc_lang_h) $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
2020	$(bfd_h) $(symfile_h) $(objfiles_h) $(top_h) $(completer_h) \
2021	$(block_h)
2022objc-lang.o: objc-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2023	$(parser_defs_h) $(language_h) $(c_lang_h) $(objc_lang_h) \
2024	$(exceptions_h) $(complaints_h) $(value_h) $(symfile_h) \
2025	$(objfiles_h) $(gdb_string_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) \
2026	$(frame_h) $(gdb_regex_h) $(regcache_h) $(block_h) $(infcall_h) \
2027	$(valprint_h) $(gdb_assert_h)
2028objfiles.o: objfiles.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
2029	$(objfiles_h) $(gdb_stabs_h) $(target_h) $(bcache_h) $(mdebugread_h) \
2030	$(gdb_assert_h) $(gdb_stat_h) $(gdb_obstack_h) $(gdb_string_h) \
2031	$(hashtab_h) $(breakpoint_h) $(block_h) $(dictionary_h)
2032observer.o: observer.c $(defs_h) $(observer_h) $(command_h) $(gdbcmd_h) \
2033	$(observer_inc)
2034ocd.o: ocd.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) $(inferior_h) \
2035	$(bfd_h) $(symfile_h) $(target_h) $(exceptions_h) $(gdbcmd_h) \
2036	$(objfiles_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(regcache_h)
2037osabi.o: osabi.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(osabi_h) \
2038	$(arch_utils_h) $(gdbcmd_h) $(command_h) $(elf_bfd_h)
2039parse.o: parse.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2040	$(frame_h) $(expression_h) $(value_h) $(command_h) $(language_h) \
2041	$(parser_defs_h) $(gdbcmd_h) $(symfile_h) $(inferior_h) \
2042	$(doublest_h) $(gdb_assert_h) $(block_h)
2043p-exp.o: p-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
2044	$(parser_defs_h) $(language_h) $(p_lang_h) $(bfd_h) $(symfile_h) \
2045	$(objfiles_h) $(block_h)
2046p-lang.o: p-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2047	$(expression_h) $(parser_defs_h) $(language_h) $(p_lang_h) \
2048	$(valprint_h) $(value_h)
2049ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) \
2050	$(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \
2051	$(objfiles_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(ppc_tdep_h) \
2052	$(regcache_h) $(gdb_assert_h)
2053ppcbug-rom.o: ppcbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2054	$(serial_h) $(regcache_h)
2055ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdb_string_h) $(frame_h) \
2056	$(inferior_h) $(gdbcore_h) $(regcache_h) $(gdb_assert_h) \
2057	$(gdb_wait_h) $(gregset_h) $(ppc_tdep_h)
2058ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(frame_h) $(inferior_h) \
2059	$(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) \
2060	$(objfiles_h) $(regcache_h) $(value_h) $(osabi_h) $(regset_h) \
2061	$(solib_svr4_h) $(ppc_tdep_h) $(trad_frame_h) $(frame_unwind_h) \
2062	$(tramp_frame_h)
2063ppcnbsd-nat.o: ppcnbsd-nat.c $(defs_h) $(inferior_h) $(gdb_assert_h) \
2064	$(gdbcore_h) $(regcache_h) $(bsd_kvm_h) $(ppc_tdep_h) \
2065	$(ppcnbsd_tdep_h) $(inf_ptrace_h)
2066ppcnbsd-tdep.o: ppcnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
2067	$(target_h) $(breakpoint_h) $(value_h) $(osabi_h) $(ppc_tdep_h) \
2068	$(ppcnbsd_tdep_h) $(nbsd_tdep_h) $(tramp_frame_h) $(trad_frame_h) \
2069	$(gdb_assert_h) $(solib_svr4_h)
2070ppcobsd-nat.o: ppcobsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
2071	$(regcache_h) $(ppc_tdep_h) $(ppcobsd_tdep_h) $(inf_ptrace_h) \
2072	$(bsd_kvm_h)
2073ppcobsd-tdep.o: ppcobsd-tdep.c $(defs_h) $(arch_utils_h) $(floatformat_h) \
2074	$(osabi_h) $(regcache_h) $(regset_h) $(trad_frame_h) \
2075	$(tramp_frame_h) $(gdb_assert_h) $(gdb_string_h) $(ppc_tdep_h) \
2076	$(ppcobsd_tdep_h) $(solib_svr4_h)
2077ppc-sysv-tdep.o: ppc-sysv-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
2078	$(regcache_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \
2079	$(ppc_tdep_h) $(target_h) $(objfiles_h) $(infcall_h)
2080printcmd.o: printcmd.c $(defs_h) $(gdb_string_h) $(frame_h) $(symtab_h) \
2081	$(gdbtypes_h) $(value_h) $(language_h) $(expression_h) $(gdbcore_h) \
2082	$(gdbcmd_h) $(target_h) $(breakpoint_h) $(demangle_h) $(valprint_h) \
2083	$(annotate_h) $(symfile_h) $(objfiles_h) $(completer_h) $(ui_out_h) \
2084	$(gdb_assert_h) $(block_h) $(disasm_h) $(tui_h)
2085proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) $(completer_h) $(gdb_wait_h) \
2086	$(proc_utils_h)
2087proc-events.o: proc-events.c $(defs_h)
2088proc-flags.o: proc-flags.c $(defs_h)
2089procfs.o: procfs.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
2090	$(elf_bfd_h) $(gdbcmd_h) $(gdbthread_h) $(gdb_wait_h) \
2091	$(gdb_string_h) $(gdb_assert_h) $(inflow_h) $(auxv_h) \
2092	$(gdb_dirent_h) $(X_OK) $(gdb_stat_h) $(proc_utils_h) $(gregset_h)
2093proc-service.o: proc-service.c $(defs_h) $(gdb_proc_service_h) $(inferior_h) \
2094	$(symtab_h) $(target_h) $(gregset_h)
2095proc-why.o: proc-why.c $(defs_h) $(proc_utils_h)
2096p-typeprint.o: p-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
2097	$(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
2098	$(language_h) $(p_lang_h) $(typeprint_h) $(gdb_string_h)
2099p-valprint.o: p-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
2100	$(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \
2101	$(gdbcore_h) $(demangle_h) $(valprint_h) $(typeprint_h) \
2102	$(language_h) $(target_h) $(annotate_h) $(p_lang_h) $(cp_abi_h) \
2103	$(cp_support_h)
2104regcache.o: regcache.c $(defs_h) $(inferior_h) $(target_h) $(gdbarch_h) \
2105	$(gdbcmd_h) $(regcache_h) $(reggroups_h) $(gdb_assert_h) \
2106	$(gdb_string_h) $(gdbcmd_h) $(observer_h)
2107reggroups.o: reggroups.c $(defs_h) $(reggroups_h) $(gdbtypes_h) \
2108	$(gdb_assert_h) $(regcache_h) $(command_h) $(gdbcmd_h)
2109regset.o: regset.c $(defs_h) $(regset_h) $(gdb_assert_h)
2110remote.o: remote.c $(defs_h) $(gdb_string_h) $(inferior_h) $(bfd_h) \
2111	$(symfile_h) $(exceptions_h) $(target_h) $(gdbcmd_h) $(objfiles_h) \
2112	$(gdb_stabs_h) $(gdbthread_h) $(remote_h) $(regcache_h) $(value_h) \
2113	$(gdb_assert_h) $(event_loop_h) $(event_top_h) $(inf_loop_h) \
2114	$(serial_h) $(gdbcore_h) $(remote_fileio_h) $(solib_h) $(observer_h)
2115remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) $(gdbarch_h) \
2116	$(inferior_h) $(target_h) $(value_h) $(command_h) $(gdb_string_h) \
2117	$(exceptions_h) $(gdbcmd_h) $(serial_h) $(remote_utils_h) \
2118	$(symfile_h) $(regcache_h)
2119remote-est.o: remote-est.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2120	$(serial_h) $(regcache_h) $(m68k_tdep_h)
2121remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \
2122	$(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) \
2123	$(exceptions_h) $(remote_fileio_h)
2124remote-hms.o: remote-hms.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2125	$(serial_h) $(regcache_h)
2126remote-m32r-sdi.o: remote-m32r-sdi.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
2127	$(inferior_h) $(target_h) $(regcache_h) $(gdb_string_h) $(serial_h)
2128remote-mips.o: remote-mips.c $(defs_h) $(inferior_h) $(bfd_h) $(symfile_h) \
2129	$(gdbcmd_h) $(gdbcore_h) $(serial_h) $(target_h) $(exceptions_h) \
2130	$(remote_utils_h) $(gdb_string_h) $(gdb_stat_h) $(regcache_h) \
2131	$(mips_tdep_h)
2132remote-rdi.o: remote-rdi.c $(defs_h) $(gdb_string_h) $(frame_h) \
2133	$(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \
2134	$(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \
2135	$(breakpoint_h) $(completer_h) $(regcache_h) $(arm_tdep_h) \
2136	$(rdi_share_ardi_h) $(rdi_share_adp_h) $(rdi_share_hsys_h)
2137remote-rdp.o: remote-rdp.c $(defs_h) $(inferior_h) $(value_h) \
2138	$(gdb_callback_h) $(command_h) $(symfile_h) $(remote_utils_h) \
2139	$(gdb_string_h) $(gdbcore_h) $(regcache_h) $(serial_h) $(arm_tdep_h)
2140remote-sds.o: remote-sds.c $(defs_h) $(gdb_string_h) $(frame_h) \
2141	$(inferior_h) $(exceptions_h) $(bfd_h) $(symfile_h) $(target_h) \
2142	$(gdbcmd_h) $(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \
2143	$(regcache_h) $(serial_h)
2144remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) \
2145	$(gdb_string_h) $(terminal_h) $(target_h) $(gdbcore_h) \
2146	$(gdb_callback_h) $(gdb_remote_sim_h) $(remote_utils_h) $(command_h) \
2147	$(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h)
2148remote-st.o: remote-st.c $(defs_h) $(gdbcore_h) $(target_h) $(gdb_string_h) \
2149	$(serial_h) $(regcache_h)
2150remote-utils.o: remote-utils.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \
2151	$(target_h) $(serial_h) $(gdbcore_h) $(inferior_h) $(remote_utils_h) \
2152	$(regcache_h)
2153rom68k-rom.o: rom68k-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2154	$(serial_h) $(regcache_h) $(value_h) $(m68k_tdep_h)
2155rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
2156	$(xcoffsolib_h) $(symfile_h) $(objfiles_h) $(libbfd_h) $(bfd_h) \
2157	$(exceptions_h) $(gdb_stabs_h) $(regcache_h) $(arch_utils_h) \
2158	$(ppc_tdep_h) $(exec_h) $(gdb_stat_h)
2159rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(symtab_h) \
2160	$(target_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) $(arch_utils_h) \
2161	$(regcache_h) $(regset_h) $(doublest_h) $(value_h) $(parser_defs_h) \
2162	$(osabi_h) $(infcall_h) $(sim_regno_h) $(gdb_sim_ppc_h) \
2163	$(reggroups_h) $(libbfd_h) $(coff_internal_h) $(libcoff_h) \
2164	$(coff_xcoff_h) $(libxcoff_h) $(elf_bfd_h) $(solib_svr4_h) \
2165	$(ppc_tdep_h) $(gdb_assert_h) $(dis_asm_h) $(trad_frame_h) \
2166	$(frame_unwind_h) $(frame_base_h) $(reggroups_h)
2167s390-nat.o: s390-nat.c $(defs_h) $(tm_h) $(regcache_h) $(inferior_h) \
2168	$(s390_tdep_h)
2169s390-tdep.o: s390-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \
2170	$(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) \
2171	$(tm_h) $(__bfd_bfd_h) $(floatformat_h) $(regcache_h) \
2172	$(trad_frame_h) $(frame_base_h) $(frame_unwind_h) $(dwarf2_frame_h) \
2173	$(reggroups_h) $(regset_h) $(value_h) $(gdb_assert_h) $(dis_asm_h) \
2174	$(solib_svr4_h) $(s390_tdep_h)
2175scm-exp.o: scm-exp.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2176	$(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \
2177	$(scm_tags_h)
2178scm-lang.o: scm-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2179	$(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \
2180	$(scm_tags_h) $(source_h) $(gdb_string_h) $(gdbcore_h) $(infcall_h)
2181scm-valprint.o: scm-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
2182	$(expression_h) $(parser_defs_h) $(language_h) $(value_h) \
2183	$(scm_lang_h) $(valprint_h) $(gdbcore_h) $(c_lang_h)
2184sentinel-frame.o: sentinel-frame.c $(defs_h) $(regcache_h) \
2185	$(sentinel_frame_h) $(inferior_h) $(frame_unwind_h)
2186ser-e7kpc.o: ser-e7kpc.c $(defs_h) $(serial_h) $(gdb_string_h)
2187ser-go32.o: ser-go32.c $(defs_h) $(gdbcmd_h) $(serial_h) $(gdb_string_h)
2188serial.o: serial.c $(defs_h) $(serial_h) $(gdb_string_h) $(gdbcmd_h)
2189ser-base.o: ser-base.c $(defs_h) $(serial_h) $(ser_base_h) $(event_loop_h) \
2190	$(gdb_string_h)
2191ser-pipe.o: ser-pipe.c $(defs_h) $(serial_h) $(ser_base_h) $(ser_unix_h) \
2192	$(gdb_vfork_h) $(gdb_string_h)
2193ser-tcp.o: ser-tcp.c $(defs_h) $(serial_h) $(ser_base_h) $(ser_unix_h) \
2194	$(gdb_string_h)
2195ser-unix.o: ser-unix.c $(defs_h) $(serial_h) $(ser_base_h) $(ser_unix_h) \
2196	$(terminal_h) $(gdb_string_h)
2197sh3-rom.o: sh3-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2198	$(serial_h) $(srec_h) $(arch_utils_h) $(regcache_h) $(gdb_string_h) \
2199	$(sh_tdep_h)
2200sh64-tdep.o: sh64-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
2201	$(frame_unwind_h) $(dwarf2_frame_h) $(symtab_h) $(gdbtypes_h) \
2202	$(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) $(inferior_h) \
2203	$(gdb_string_h) $(gdb_assert_h) $(arch_utils_h) $(regcache_h) \
2204	$(osabi_h) $(elf_bfd_h) $(elf_sh_h) $(gdb_sim_sh_h)
2205shnbsd-nat.o: shnbsd-nat.c $(defs_h) $(inferior_h) $(sh_tdep_h) \
2206	$(shnbsd_tdep_h)
2207shnbsd-tdep.o: shnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) $(value_h) \
2208	$(osabi_h) $(solib_svr4_h) $(nbsd_tdep_h) $(sh_tdep_h) \
2209	$(shnbsd_tdep_h)
2210sh-stub.o: sh-stub.c
2211sh-linux-tdep.o: sh-linux-tdep.c $(defs_h) $(osabi_h) $(solib_svr4_h)
2212sh-tdep.o: sh-tdep.c $(defs_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
2213	$(dwarf2_frame_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \
2214	$(value_h) $(dis_asm_h) $(inferior_h) $(gdb_string_h) \
2215	$(gdb_assert_h) $(arch_utils_h) $(floatformat_h) $(regcache_h) \
2216	$(doublest_h) $(osabi_h) $(sh_tdep_h) $(elf_bfd_h) $(solib_svr4_h) \
2217	$(elf_sh_h) $(gdb_sim_sh_h)
2218solib-aix5.o: solib-aix5.c $(defs_h) $(gdb_string_h) $(elf_external_h) \
2219	$(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(gdbcore_h) \
2220	$(command_h) $(target_h) $(frame_h) $(gdb_regex_h) $(inferior_h) \
2221	$(environ_h) $(language_h) $(gdbcmd_h) $(solist_h)
2222solib.o: solib.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) $(symfile_h) \
2223	$(objfiles_h) $(exceptions_h) $(gdbcore_h) $(command_h) $(target_h) \
2224	$(frame_h) $(gdb_regex_h) $(inferior_h) $(environ_h) $(language_h) \
2225	$(gdbcmd_h) $(completer_h) $(filenames_h) $(exec_h) $(solist_h) \
2226	$(observer_h) $(readline_h)
2227solib-frv.o: solib-frv.c $(defs_h) $(gdb_string_h) $(inferior_h) \
2228	$(gdbcore_h) $(solist_h) $(frv_tdep_h) $(objfiles_h) $(symtab_h) \
2229	$(language_h) $(command_h) $(gdbcmd_h) $(elf_frv_h)
2230solib-irix.o: solib-irix.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \
2231	$(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h)
2232solib-legacy.o: solib-legacy.c $(defs_h) $(gdbcore_h) $(solib_svr4_h)
2233solib-null.o: solib-null.c $(defs_h) $(solist_h)
2234solib-osf.o: solib-osf.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
2235	$(symfile_h) $(objfiles_h) $(target_h) $(inferior_h) $(solist_h)
2236solib-pa64.o: solib-pa64.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \
2237	$(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) $(hppa_tdep_h) \
2238	$(solist_h) $(solib_pa64_h)
2239solib-som.o: solib-som.c $(defs_h) $(som_h) $(symtab_h) $(bfd_h) \
2240	$(symfile_h) $(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) \
2241	$(hppa_tdep_h) $(solist_h)
2242solib-sunos.o: solib-sunos.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \
2243	$(symfile_h) $(objfiles_h) $(gdbcore_h) $(inferior_h) $(solist_h) \
2244	$(bcache_h) $(regcache_h)
2245solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \
2246	$(elf_mips_h) $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) \
2247	$(gdbcore_h) $(target_h) $(inferior_h) $(gdb_assert_h) \
2248	$(solist_h) $(solib_h) $(solib_svr4_h) $(bfd_target_h) $(exec_h)
2249sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) \
2250	$(inferior_h) $(gdb_stat_h) $(gdbcmd_h) $(gdbcore_h) $(regcache_h) \
2251	$(solib_h) $(symfile_h) $(gdb_string_h) $(gregset_h)
2252somread.o: somread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
2253	$(objfiles_h) $(buildsym_h) $(stabsread_h) $(gdb_stabs_h) \
2254	$(complaints_h) $(gdb_string_h) $(demangle_h) $(som_h) $(libhppa_h) \
2255	$(solib_som_h)
2256source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \
2257	$(command_h) $(source_h) $(gdbcmd_h) $(frame_h) $(value_h) \
2258	$(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \
2259	$(symfile_h) $(objfiles_h) $(annotate_h) $(gdbtypes_h) $(linespec_h) \
2260	$(filenames_h) $(completer_h) $(ui_out_h) $(readline_h)
2261sparc64fbsd-nat.o: sparc64fbsd-nat.c $(defs_h) $(target_h) $(fbsd_nat_h) \
2262	$(sparc64_tdep_h) $(sparc_nat_h)
2263sparc64fbsd-tdep.o: sparc64fbsd-tdep.c $(defs_h) $(frame_h) \
2264	$(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
2265	$(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \
2266	$(sparc64_tdep_h) $(solib_svr4_h)
2267sparc64-linux-nat.o: sparc64-linux-nat.c $(defs_h) $(sparc64_tdep_h) \
2268	$(sparc_nat_h)
2269sparc64-linux-tdep.o: sparc64-linux-tdep.c $(defs_h) $(frame_h) \
2270	$(frame_unwind_h) $(gdbarch_h) $(osabi_h) $(solib_svr4_h) \
2271	$(symtab_h) $(trad_frame_h) $(tramp_frame_h) $(sparc64_tdep_h)
2272sparc64-nat.o: sparc64-nat.c $(defs_h) $(gdbarch_h) $(sparc64_tdep_h) \
2273	$(sparc_nat_h)
2274sparc64nbsd-nat.o: sparc64nbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \
2275	$(sparc64_tdep_h) $(sparc_nat_h) $(bsd_kvm_h)
2276sparc64nbsd-tdep.o: sparc64nbsd-tdep.c $(defs_h) $(frame_h) \
2277	$(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
2278	$(symtab_h) $(objfiles_h) $(solib_svr4_h) $(trad_frame_h) \
2279	$(gdb_assert_h) $(gdb_string_h) $(sparc64_tdep_h) $(nbsd_tdep_h)
2280sparc64obsd-tdep.o: sparc64obsd-tdep.c $(defs_h) $(frame_h) \
2281	$(frame_unwind_h) $(osabi_h) $(regset_h) $(symtab_h) $(objfiles_h) \
2282	$(solib_svr4_h) $(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h)
2283sparc64-sol2-tdep.o: sparc64-sol2-tdep.c $(defs_h) $(frame_h) \
2284	$(frame_unwind_h) $(gdbarch_h) $(symtab_h) $(objfiles_h) $(osabi_h) \
2285	$(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h) $(solib_svr4_h)
2286sparc64-tdep.o: sparc64-tdep.c $(defs_h) $(arch_utils_h) $(dwarf2_frame_h) \
2287	$(floatformat_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
2288	$(gdbcore_h) $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) \
2289	$(osabi_h) $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) \
2290	$(gdb_string_h) $(sparc64_tdep_h)
2291sparc-linux-tdep.o: sparc-linux-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2292	$(frame_unwind_h) $(gdbarch_h) $(gdbcore_h) $(osabi_h) $(regcache_h) \
2293	$(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(tramp_frame_h) \
2294	$(sparc_tdep_h)
2295sparc-nat.o: sparc-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \
2296	$(gdb_assert_h) $(gdb_string_h) $(gdb_wait_h) $(sparc_tdep_h) \
2297	$(sparc_nat_h) $(inf_ptrace_h)
2298sparcnbsd-nat.o: sparcnbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \
2299	$(sparc_tdep_h) $(sparc_nat_h) $(bsd_kvm_h)
2300sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2301	$(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
2302	$(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \
2303	$(gdb_string_h) $(sparc_tdep_h) $(nbsd_tdep_h)
2304sparcobsd-tdep.o: sparcobsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2305	$(frame_unwind_h) $(osabi_h) $(solib_svr4_h) $(symtab_h) \
2306	$(trad_frame_h) $(gdb_assert_h) $(sparc_tdep_h)
2307sparc-sol2-nat.o: sparc-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \
2308	$(sparc_tdep_h) $(sparc64_tdep_h)
2309sparc-sol2-tdep.o: sparc-sol2-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
2310	$(gdbcore_h) $(symtab_h) $(objfiles_h) $(osabi_h) $(regcache_h) \
2311	$(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \
2312	$(sparc_tdep_h) $(solib_svr4_h)
2313sparc-stub.o: sparc-stub.c
2314sparc-tdep.o: sparc-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) \
2315	$(floatformat_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
2316	$(gdbcore_h) $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) \
2317	$(osabi_h) $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) \
2318	$(gdb_string_h) $(sparc_tdep_h)
2319stabsread.o: stabsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(gdb_obstack_h) \
2320	$(symtab_h) $(gdbtypes_h) $(expression_h) $(symfile_h) $(objfiles_h) \
2321	$(aout_stab_gnu_h) $(libaout_h) $(aout_aout64_h) $(gdb_stabs_h) \
2322	$(buildsym_h) $(complaints_h) $(demangle_h) $(language_h) \
2323	$(doublest_h) $(cp_abi_h) $(cp_support_h) $(stabsread_h)
2324stack.o: stack.c $(defs_h) $(gdb_string_h) $(value_h) $(symtab_h) \
2325	$(gdbtypes_h) $(expression_h) $(language_h) $(frame_h) $(gdbcmd_h) \
2326	$(gdbcore_h) $(target_h) $(source_h) $(breakpoint_h) $(demangle_h) \
2327	$(inferior_h) $(annotate_h) $(ui_out_h) $(block_h) $(stack_h) \
2328	$(gdb_assert_h) $(dictionary_h) $(exceptions_h) $(reggroups_h) \
2329	$(regcache_h) $(solib_h)
2330std-regs.o: std-regs.c $(defs_h) $(user_regs_h) $(frame_h) $(gdbtypes_h) \
2331	$(value_h) $(gdb_string_h)
2332stop-gdb.o: stop-gdb.c $(defs_h)
2333symfile.o: symfile.c $(defs_h) $(bfdlink_h) $(symtab_h) $(gdbtypes_h) \
2334	$(gdbcore_h) $(frame_h) $(target_h) $(value_h) $(symfile_h) \
2335	$(objfiles_h) $(source_h) $(gdbcmd_h) $(breakpoint_h) $(language_h) \
2336	$(complaints_h) $(demangle_h) $(inferior_h) $(filenames_h) \
2337	$(gdb_stabs_h) $(gdb_obstack_h) $(completer_h) $(bcache_h) \
2338	$(hashtab_h) $(readline_h) $(gdb_assert_h) $(block_h) \
2339	$(gdb_string_h) $(gdb_stat_h) $(observer_h) $(exec_h)
2340symfile-mem.o: symfile-mem.c $(defs_h) $(symtab_h) $(gdbcore_h) \
2341	$(objfiles_h) $(exceptions_h) $(gdbcmd_h) $(target_h) $(value_h) \
2342	$(symfile_h) $(observer_h) $(auxv_h) $(elf_common_h)
2343symmisc.o: symmisc.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(bfd_h) \
2344	$(symfile_h) $(objfiles_h) $(breakpoint_h) $(command_h) \
2345	$(gdb_obstack_h) $(exceptions_h) $(language_h) $(bcache_h) \
2346	$(block_h) $(gdb_regex_h) $(dictionary_h) $(gdb_string_h) \
2347	$(readline_h)
2348symtab.o: symtab.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \
2349	$(frame_h) $(target_h) $(value_h) $(symfile_h) $(objfiles_h) \
2350	$(gdbcmd_h) $(call_cmds_h) $(gdb_regex_h) $(expression_h) \
2351	$(language_h) $(demangle_h) $(inferior_h) $(linespec_h) $(source_h) \
2352	$(filenames_h) $(objc_lang_h) $(ada_lang_h) $(hashtab_h) \
2353	$(gdb_obstack_h) $(block_h) $(dictionary_h) $(gdb_string_h) \
2354	$(gdb_stat_h) $(cp_abi_h) $(observer_h)
2355target.o: target.c $(defs_h) $(gdb_string_h) $(target_h) $(gdbcmd_h) \
2356	$(symtab_h) $(inferior_h) $(bfd_h) $(symfile_h) $(objfiles_h) \
2357	$(gdb_wait_h) $(dcache_h) $(regcache_h) $(gdb_assert_h) $(gdbcore_h)
2358thread.o: thread.c $(defs_h) $(symtab_h) $(frame_h) $(inferior_h) \
2359	$(environ_h) $(value_h) $(target_h) $(gdbthread_h) $(exceptions_h) \
2360	$(command_h) $(gdbcmd_h) $(regcache_h) $(gdb_h) $(gdb_string_h) \
2361	$(ui_out_h)
2362top.o: top.c $(defs_h) $(gdbcmd_h) $(call_cmds_h) $(cli_cmds_h) \
2363	$(cli_script_h) $(cli_setshow_h) $(cli_decode_h) $(symtab_h) \
2364	$(inferior_h) $(exceptions_h) $(target_h) $(breakpoint_h) \
2365	$(gdbtypes_h) $(expression_h) $(value_h) $(language_h) $(terminal_h) \
2366	$(annotate_h) $(completer_h) $(top_h) $(version_h) $(serial_h) \
2367	$(doublest_h) $(gdb_assert_h) $(readline_h) $(readline_history_h) \
2368	$(event_top_h) $(gdb_string_h) $(gdb_stat_h) $(ui_out_h) \
2369	$(cli_out_h)
2370tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(gdbtypes_h) \
2371	$(expression_h) $(gdbcmd_h) $(value_h) $(target_h) $(language_h) \
2372	$(gdb_string_h) $(inferior_h) $(tracepoint_h) $(remote_h) \
2373	$(linespec_h) $(regcache_h) $(completer_h) $(gdb_events_h) \
2374	$(block_h) $(dictionary_h) $(ax_h) $(ax_gdb_h) $(readline_h) \
2375	$(readline_history_h)
2376trad-frame.o: trad-frame.c $(defs_h) $(frame_h) $(trad_frame_h) \
2377	$(regcache_h)
2378tramp-frame.o: tramp-frame.c $(defs_h) $(tramp_frame_h) $(frame_unwind_h) \
2379	$(gdbcore_h) $(symtab_h) $(objfiles_h) $(target_h) $(trad_frame_h) \
2380	$(frame_base_h) $(gdb_assert_h)
2381typeprint.o: typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
2382	$(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(command_h) \
2383	$(gdbcmd_h) $(target_h) $(language_h) $(cp_abi_h) $(typeprint_h) \
2384	$(gdb_string_h)
2385ui-file.o: ui-file.c $(defs_h) $(ui_file_h) $(gdb_string_h)
2386ui-out.o: ui-out.c $(defs_h) $(gdb_string_h) $(expression_h) $(language_h) \
2387	$(ui_out_h) $(gdb_assert_h)
2388user-regs.o: user-regs.c $(defs_h) $(user_regs_h) $(gdbtypes_h) \
2389	$(gdb_string_h) $(gdb_assert_h) $(frame_h)
2390utils.o: utils.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(event_top_h) \
2391	$(exceptions_h) $(tui_h) $(gdbcmd_h) $(serial_h) $(bfd_h) \
2392	$(target_h) $(demangle_h) $(expression_h) $(language_h) $(charset_h) \
2393	$(annotate_h) $(filenames_h) $(symfile_h) $(inferior_h) \
2394	$(gdb_curses_h) $(readline_h)
2395uw-thread.o: uw-thread.c $(defs_h) $(gdbthread_h) $(target_h) $(inferior_h) \
2396	$(regcache_h) $(gregset_h)
2397v850-tdep.o: v850-tdep.c $(defs_h) $(frame_h) $(frame_base_h) $(trad_frame_h) \
2398	$(frame_unwind_h) $(dwarf2_frame_h) $(gdbtypes_h) $(inferior_h) \
2399	$(gdb_string_h) $(gdb_assert_h) $(gdbcore_h) $(arch_utils_h) \
2400	$(regcache_h) $(dis_asm_h) $(osabi_h)
2401valarith.o: valarith.c $(defs_h) $(value_h) $(symtab_h) $(gdbtypes_h) \
2402	$(expression_h) $(target_h) $(language_h) $(gdb_string_h) \
2403	$(doublest_h) $(infcall_h)
2404valops.o: valops.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) $(frame_h) \
2405	$(inferior_h) $(gdbcore_h) $(target_h) $(demangle_h) $(language_h) \
2406	$(gdbcmd_h) $(regcache_h) $(cp_abi_h) $(block_h) $(infcall_h) \
2407	$(dictionary_h) $(cp_support_h) $(gdb_string_h) $(gdb_assert_h) \
2408	$(cp_support_h) $(observer_h)
2409valprint.o: valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2410	$(value_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) $(language_h) \
2411	$(annotate_h) $(valprint_h) $(floatformat_h) $(doublest_h)
2412value.o: value.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2413	$(value_h) $(gdbcore_h) $(command_h) $(gdbcmd_h) $(target_h) \
2414	$(language_h) $(scm_lang_h) $(demangle_h) $(doublest_h) \
2415	$(gdb_assert_h) $(regcache_h) $(block_h)
2416varobj.o: varobj.c $(defs_h) $(value_h) $(expression_h) $(frame_h) \
2417	$(language_h) $(wrapper_h) $(gdbcmd_h) $(gdb_string_h) $(varobj_h)
2418	$(CC) -c $(INTERNAL_CFLAGS) -Wno-error $<
2419vaxbsd-nat.o: vaxbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \
2420	$(vax_tdep_h) $(inf_ptrace_h) $(bsd_kvm_h)
2421vax-nat.o: vax-nat.c $(defs_h) $(inferior_h) $(gdb_assert_h) $(vax_tdep_h) \
2422	$(inf_ptrace_h)
2423vaxnbsd-tdep.o: vaxnbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
2424	$(vax_tdep_h) $(solib_svr4_h) $(gdb_string_h)
2425vax-tdep.o: vax-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) $(frame_h) \
2426	$(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
2427	$(osabi_h) $(regcache_h) $(regset_h) $(trad_frame_h) $(value_h) \
2428	$(gdb_string_h) $(vax_tdep_h)
2429win32-nat.o: win32-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
2430	$(exceptions_h) $(gdbcore_h) $(command_h) $(completer_h) \
2431	$(regcache_h) $(top_h) $(buildsym_h) $(symfile_h) $(objfiles_h) \
2432	$(gdb_string_h) $(gdbthread_h) $(gdbcmd_h) $(exec_h) $(i386_tdep_h) \
2433	$(i387_tdep_h)
2434wince.o: wince.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
2435	$(exceptions_h) $(gdbcore_h) $(command_h) $(buildsym_h) $(symfile_h) \
2436	$(objfiles_h) $(gdb_string_h) $(gdbthread_h) $(gdbcmd_h) \
2437	$(wince_stub_h) $(regcache_h) $(mips_tdep_h)
2438wince-stub.o: wince-stub.c $(wince_stub_h)
2439wrapper.o: wrapper.c $(defs_h) $(value_h) $(exceptions_h) $(wrapper_h) \
2440	$(ui_out_h)
2441xcoffread.o: xcoffread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(gdb_stat_h) \
2442	$(coff_internal_h) $(libcoff_h) $(coff_xcoff_h) $(libxcoff_h) \
2443	$(coff_rs6000_h) $(symtab_h) $(gdbtypes_h) $(symfile_h) \
2444	$(objfiles_h) $(buildsym_h) $(stabsread_h) $(expression_h) \
2445	$(complaints_h) $(gdb_stabs_h) $(aout_stab_gnu_h)
2446xcoffsolib.o: xcoffsolib.c $(defs_h) $(bfd_h) $(xcoffsolib_h) $(inferior_h) \
2447	$(gdbcmd_h) $(symfile_h) $(frame_h) $(gdb_regex_h)
2448xstormy16-tdep.o: xstormy16-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
2449	$(frame_unwind_h) $(dwarf2_frame_h) $(symtab_h) $(gdbtypes_h) \
2450	$(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) $(inferior_h) \
2451	$(gdb_string_h) $(gdb_assert_h) $(arch_utils_h) $(floatformat_h) \
2452	$(regcache_h) $(doublest_h) $(osabi_h) $(objfiles_h)
2453
2454#
2455# gdb/cli/ dependencies
2456#
2457# Need to explicitly specify the compile rule as make will do nothing
2458# or try to compile the object file into the sub-directory.
2459
2460cli-cmds.o: $(srcdir)/cli/cli-cmds.c $(defs_h) $(readline_h) \
2461	$(readline_tilde_h) $(completer_h) $(target_h) $(gdb_wait_h) \
2462	$(gdb_regex_h) $(gdb_string_h) $(gdb_vfork_h) $(linespec_h) \
2463	$(expression_h) $(frame_h) $(value_h) $(language_h) $(filenames_h) \
2464	$(objfiles_h) $(source_h) $(disasm_h) $(ui_out_h) $(top_h) \
2465	$(cli_decode_h) $(cli_script_h) $(cli_setshow_h) $(cli_cmds_h) \
2466	$(tui_h)
2467	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-cmds.c
2468cli-decode.o: $(srcdir)/cli/cli-decode.c $(defs_h) $(symtab_h) \
2469	$(gdb_regex_h) $(gdb_string_h) $(ui_out_h) $(cli_cmds_h) \
2470	$(cli_decode_h) $(tui_h) $(gdb_assert_h)
2471	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-decode.c
2472cli-dump.o: $(srcdir)/cli/cli-dump.c $(defs_h) $(gdb_string_h) \
2473	$(cli_decode_h) $(cli_cmds_h) $(value_h) $(completer_h) \
2474	$(cli_dump_h) $(gdb_assert_h) $(target_h) $(readline_h)
2475	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-dump.c
2476cli-interp.o: $(srcdir)/cli/cli-interp.c $(defs_h) $(interps_h) $(wrapper_h) \
2477	$(event_top_h) $(ui_out_h) $(cli_out_h) $(top_h) $(gdb_string_h) \
2478	$(exceptions_h)
2479	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-interp.c
2480cli-logging.o: $(srcdir)/cli/cli-logging.c $(defs_h) $(gdbcmd_h) $(ui_out_h) \
2481	$(gdb_string_h)
2482	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-logging.c
2483cli-script.o: $(srcdir)/cli/cli-script.c $(defs_h) $(value_h) $(language_h) \
2484	$(ui_out_h) $(gdb_string_h) $(exceptions_h) $(top_h) $(cli_cmds_h) \
2485	$(cli_decode_h) $(cli_script_h)
2486	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-script.c
2487cli-setshow.o: $(srcdir)/cli/cli-setshow.c $(defs_h) $(readline_tilde_h) \
2488	$(value_h) $(gdb_string_h) $(ui_out_h) $(cli_decode_h) $(cli_cmds_h) \
2489	$(cli_setshow_h)
2490	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-setshow.c
2491cli-utils.o: $(srcdir)/cli/cli-utils.c $(defs_h) $(cli_utils_h)
2492	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-utils.c
2493
2494mi-common.o: $(srcdir)/mi/mi-common.c $(mi_common_h)
2495	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-common.c
2496
2497#
2498# gdb/signals/ dependencies
2499#
2500# Need to explicitly specify the compile rule as make will do nothing
2501# or try to compile the object file into the sub-directory.
2502
2503signals.o: $(srcdir)/signals/signals.c $(server_h) $(defs_h) $(target_h) \
2504	$(gdb_string_h)
2505	$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/signals/signals.c
2506
2507### end of the gdb Makefile.in.
2508