]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/Makefile.in
* config/tc-xtensa.c (finish_vinsn): Include the last instruction slot
[thirdparty/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
b2100910 1# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
b33e8514 2# 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
b2100910 3# Inc.
c906108c
SS
4
5# This file is part of GDB.
6
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
3cf93817 11#
c906108c
SS
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
3cf93817 16#
c906108c
SS
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21prefix = @prefix@
22exec_prefix = @exec_prefix@
23
24host_alias = @host_alias@
25target_alias = @target_alias@
26program_transform_name = @program_transform_name@
27bindir = @bindir@
28libdir = @libdir@
29tooldir = $(libdir)/$(target_alias)
30
31datadir = @datadir@
ddc9cd0f 32localedir = @localedir@
c906108c
SS
33mandir = @mandir@
34man1dir = $(mandir)/man1
35man2dir = $(mandir)/man2
36man3dir = $(mandir)/man3
37man4dir = $(mandir)/man4
38man5dir = $(mandir)/man5
39man6dir = $(mandir)/man6
40man7dir = $(mandir)/man7
41man8dir = $(mandir)/man8
42man9dir = $(mandir)/man9
43infodir = @infodir@
085dd6e6 44htmldir = $(prefix)/html
c906108c
SS
45includedir = @includedir@
46
47# This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
48top_builddir = .
49
50SHELL = @SHELL@
51EXEEXT = @EXEEXT@
52
7a292a7a 53AWK = @AWK@
b3a90332 54LN_S = @LN_S@
7a292a7a 55
c906108c
SS
56INSTALL = @INSTALL@
57INSTALL_PROGRAM = @INSTALL_PROGRAM@
58INSTALL_DATA = @INSTALL_DATA@
59
72bdd927
AC
60DESTDIR =
61
c906108c
SS
62AR = @AR@
63AR_FLAGS = qv
64RANLIB = @RANLIB@
65DLLTOOL = @DLLTOOL@
66WINDRES = @WINDRES@
b9f21955 67MIG = @MIG@
c906108c 68
ddc9cd0f
AC
69XGETTEXT = @XGETTEXT@
70GMSGFMT = @GMSGFMT@
71MSGMERGE = msgmerge
72
73PACKAGE = @PACKAGE@
74CATALOGS = @CATALOGS@
75
c906108c
SS
76# If you are compiling with GCC, make sure that either 1) You have the
77# fixed include files where GCC can reach them, or 2) You use the
78# -traditional flag. Otherwise the ioctl calls in inflow.c
79# will be incorrectly compiled. The "fixincludes" script in the gcc
80# distribution will fix your include files up.
81CC=@CC@
82
83# Directory containing source files.
84srcdir = @srcdir@
85VPATH = @srcdir@
86
87YACC=@YACC@
88
3cf93817 89# This is used to rebuild ada-lex.c from ada-lex.l. If the program is
6d3e79c6
AS
90# not defined, but ada-lex.c is present, compilation will continue,
91# possibly with a warning.
92FLEX = flex
93
c906108c
SS
94YLWRAP = $(srcdir)/../ylwrap
95
96# where to find makeinfo, preferably one designed for texinfo-2
97MAKEINFO=makeinfo
98
085dd6e6
JM
99MAKEHTML = texi2html
100
101MAKEHTMLFLAGS = -glossary -menu -split_chapter
102
c906108c
SS
103# Set this up with gcc if you have gnu ld and the loader will print out
104# line numbers for undefined references.
105#CC_LD=gcc -static
106CC_LD=$(CC)
107
108# Where is our "include" directory? Typically $(srcdir)/../include.
109# This is essentially the header file directory for the library
110# routines in libiberty.
111INCLUDE_DIR = $(srcdir)/../include
112INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
113
114# Where is the "-liberty" library? Typically in ../libiberty.
115LIBIBERTY = ../libiberty/libiberty.a
116
c906108c
SS
117# Where is the BFD library? Typically in ../bfd.
118BFD_DIR = ../bfd
119BFD = $(BFD_DIR)/libbfd.a
120BFD_SRC = $(srcdir)/$(BFD_DIR)
121BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
122
123# Where is the READLINE library? Typically in ../readline.
124READLINE_DIR = ../readline
125READLINE = $(READLINE_DIR)/libreadline.a
126READLINE_SRC = $(srcdir)/$(READLINE_DIR)
127READLINE_CFLAGS = -I$(READLINE_SRC)/..
128
129WARN_CFLAGS = @WARN_CFLAGS@
104c1213 130WERROR_CFLAGS = @WERROR_CFLAGS@
d4f3574e
SS
131GDB_WARN_CFLAGS = $(WARN_CFLAGS)
132GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
133
134# Where is the INTL library? Typically in ../intl.
135INTL_DIR = ../intl
136INTL = @INTLLIBS@
137INTL_DEPS = @INTLDEPS@
138INTL_SRC = $(srcdir)/$(INTL_DIR)
139INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
140
234b45d4
KB
141# Where is the ICONV library? This can be empty if libc has iconv.
142LIBICONV = @LIBICONV@
143
030292b7
DJ
144# Did the user give us a --with-sysroot option?
145TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
146TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
147
d318976c
FN
148#
149# CLI sub directory definitons
150#
151SUBDIR_CLI_OBS = \
f02df580 152 cli-dump.o \
4a8f6654 153 cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o \
0fac0b41 154 cli-logging.o \
4389a95a 155 cli-interp.o
d318976c 156SUBDIR_CLI_SRCS = \
f02df580 157 cli/cli-dump.c \
12cf3f1b 158 cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
0fac0b41 159 cli/cli-logging.c \
4389a95a 160 cli/cli-interp.c \
12cf3f1b 161 cli/cli-utils.c
d318976c 162SUBDIR_CLI_DEPS =
d318976c
FN
163SUBDIR_CLI_LDFLAGS=
164SUBDIR_CLI_CFLAGS=
d318976c 165
fb40c209
AC
166#
167# MI sub directory definitons
168#
169SUBDIR_MI_OBS = \
170 mi-out.o mi-console.o \
c04e0a08 171 mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
30e221b4 172 mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o \
4389a95a 173 mi-interp.o \
fb40c209
AC
174 mi-main.o mi-parse.o mi-getopt.o
175SUBDIR_MI_SRCS = \
176 mi/mi-out.c mi/mi-console.c \
c04e0a08 177 mi/mi-cmds.c mi/mi-cmd-env.c \
fb40c209 178 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
30e221b4 179 mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \
4389a95a 180 mi/mi-interp.c \
fb40c209
AC
181 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
182SUBDIR_MI_DEPS =
fb40c209
AC
183SUBDIR_MI_LDFLAGS=
184SUBDIR_MI_CFLAGS= \
b4df4f68 185 -DMI_OUT=1
fb40c209 186
ed952ac5
AC
187#
188# TUI sub directory definitions
189#
226361c4
AC
190
191# Name of the TUI program
192TUI=gdbtui
193
ed952ac5 194SUBDIR_TUI_OBS = \
d7b2e967
AC
195 tui-command.o \
196 tui-data.o \
197 tui-disasm.o \
198 tui-file.o tui.o \
199 tui-hooks.o \
021e7609 200 tui-interp.o \
d7b2e967
AC
201 tui-io.o \
202 tui-layout.o \
203 tui-out.o \
204 tui-regs.o \
205 tui-source.o \
206 tui-stack.o \
207 tui-win.o \
208 tui-windata.o \
209 tui-wingeneral.o \
210 tui-winsource.o
ed952ac5 211SUBDIR_TUI_SRCS = \
d7b2e967
AC
212 tui/tui-command.c \
213 tui/tui-data.c \
214 tui/tui-disasm.c \
215 tui/tui-file.c \
216 tui/tui-hooks.c \
021e7609 217 tui/tui-interp.c \
d7b2e967
AC
218 tui/tui-io.c \
219 tui/tui-layout.c \
220 tui/tui-out.c \
221 tui/tui-regs.c \
222 tui/tui-source.c \
223 tui/tui-stack.c \
224 tui/tui-win.c \
225 tui/tui-windata.c \
226 tui/tui-wingeneral.c \
227 tui/tui-winsource.c \
228 tui/tui.c
ed952ac5 229SUBDIR_TUI_DEPS =
ed952ac5
AC
230SUBDIR_TUI_LDFLAGS=
231SUBDIR_TUI_CFLAGS= \
6a83354a 232 -DTUI=1
ed952ac5
AC
233
234
c906108c
SS
235# Opcodes currently live in one of two places. Either they are in the
236# opcode library, typically ../opcodes, or they are in a header file
237# in INCLUDE_DIR.
238# Where is the "-lopcodes" library, with (some of) the opcode tables and
239# disassemblers?
460e6ec3
AC
240OPCODES_DIR = ../opcodes
241OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
242OPCODES = $(OPCODES_DIR)/libopcodes.a
c906108c
SS
243# Where are the other opcode tables which only have header file
244# versions?
245OP_INCLUDE = $(INCLUDE_DIR)/opcode
246OPCODES_CFLAGS = -I$(OP_INCLUDE)
247
248# The simulator is usually nonexistent; targets that include one
249# should set this to list all the .o or .a files to be linked in.
250SIM =
251
cd0fc7c3
SS
252WIN32LIBS = @WIN32LIBS@
253
3fc11d3e
JM
254# Where is the TCL library? Typically in ../tcl.
255LIB_INSTALL_DIR = $(libdir)
256# This variable is needed when doing dynamic linking.
257LIB_RUNTIME_DIR = $(libdir)
033afc63 258TCL = @TCL_CC_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
3fc11d3e 259TCL_CFLAGS = @TCLHDIR@
3fc11d3e
JM
260GDBTKLIBS = @GDBTKLIBS@
261# Extra flags that the GDBTK files need:
262GDBTK_CFLAGS = @GDBTK_CFLAGS@
263
264# Where is the TK library? Typically in ../tk.
265TK = @TK_BUILD_LIB_SPEC@
266TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
3fc11d3e
JM
267
268# Where is Itcl? Typically in ../itcl/itcl.
269ITCL_CFLAGS = @ITCLHDIR@
270ITCL = @ITCLLIB@
3fc11d3e
JM
271
272# Where is Itk? Typically in ../itcl/itk.
273ITK_CFLAGS = @ITKHDIR@
274ITK = @ITKLIB@
3fc11d3e 275
3fc11d3e
JM
276X11_CFLAGS = @TK_XINCLUDES@
277X11_LDFLAGS =
278X11_LIBS =
279
280WIN32LDAPP = @WIN32LDAPP@
281
3fc11d3e
JM
282LIBGUI = @LIBGUI@
283GUI_CFLAGS_X = @GUI_CFLAGS_X@
284IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
4226a5a5 285
f0b743a9
KS
286# The version of gdbtk we're building. This should be kept
287# in sync with GDBTK_VERSION and friends in gdbtk.h.
288GDBTK_VERSION = 1.0
289GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
290
d1c3b63a
KS
291# Gdbtk requires an absolute path to the source directory or
292# the testsuite won't run properly.
293GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
294
4226a5a5 295SUBDIR_GDBTK_OBS = \
5412f5f3 296 gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-interp.o \
ecb9ce7e 297 gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o
4226a5a5 298SUBDIR_GDBTK_SRCS = \
ecb9ce7e 299 gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \
b9fb98bd
AC
300 gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c \
301 gdbtk/generic/gdbtk-interp.c \
ecb9ce7e 302 gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \
f15ab4a7
AC
303 gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c \
304 gdbtk/generic/gdbtk-main.c
4226a5a5 305SUBDIR_GDBTK_DEPS = \
b2a1bd4f 306 $(LIBGUI) $(ITCL_DEPS) $(ITK_DEPS) $(TK_DEPS) $(TCL_DEPS)
4226a5a5
FN
307SUBDIR_GDBTK_LDFLAGS=
308SUBDIR_GDBTK_CFLAGS= -DGDBTK
c906108c 309
fb40c209
AC
310CONFIG_OBS= @CONFIG_OBS@
311CONFIG_SRCS= @CONFIG_SRCS@
312CONFIG_DEPS= @CONFIG_DEPS@
fb40c209 313CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
c906108c 314ENABLE_CFLAGS= @ENABLE_CFLAGS@
b3a90332
AC
315CONFIG_ALL= @CONFIG_ALL@
316CONFIG_CLEAN= @CONFIG_CLEAN@
e56ac5c3
AC
317CONFIG_INSTALL = @CONFIG_INSTALL@
318CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
c906108c
SS
319
320# -I. for config files.
f77b92bf 321# -I$(srcdir) for gdb internal headers.
c906108c
SS
322# -I$(srcdir)/config for more generic config files.
323
324# It is also possible that you will need to add -I/usr/include/sys if
325# your system doesn't have fcntl.h in /usr/include (which is where it
326# should be according to Posix).
327DEFS = @DEFS@
ddc9cd0f 328GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
c906108c
SS
329
330# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
331# from the config directory.
332GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
d28f9cdf
DJ
333
334PROFILE_CFLAGS = @PROFILE_CFLAGS@
c906108c
SS
335
336# CFLAGS is specifically reserved for setting from the command line
337# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
1decb323 338CFLAGS = @CFLAGS@
c906108c
SS
339
340# Need to pass this to testsuite for "make check". Probably should be
341# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
342# so "make check" has the same result no matter where it is run.
343CXXFLAGS = -g -O
344
345# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
104c1213
JM
346INTERNAL_WARN_CFLAGS = \
347 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
c906108c 348 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
9175c9a3 349 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
f5dbc56d 350 $(INTL_CFLAGS) $(ENABLE_CFLAGS) \
e48f66e4 351 $(GDB_WARN_CFLAGS)
d4f3574e 352INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
c906108c
SS
353
354# LDFLAGS is specifically reserved for setting from the command line
355# when running make.
697f7479 356LDFLAGS = @LDFLAGS@
c906108c
SS
357
358# Profiling options need to go here to work.
359# I think it's perfectly reasonable for a user to set -pg in CFLAGS
360# and have it work; that's why CFLAGS is here.
d28f9cdf
DJ
361# PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
362INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS)
c906108c 363
c906108c
SS
364# If your system is missing alloca(), or, more likely, it's there but
365# it doesn't work, then refer to libiberty.
366
367# Libraries and corresponding dependencies for compiling gdb.
368# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
c906108c
SS
369# LIBIBERTY appears twice on purpose.
370# If you have the Cygnus libraries installed,
371# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
372INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
287c1a40 373 $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
9175c9a3 374 -lintl -liberty
c906108c 375CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
287c1a40 376 $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
234b45d4 377 $(LIBICONV) \
9175c9a3 378 $(LIBIBERTY) $(WIN32LIBS)
c906108c 379CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
9175c9a3 380 $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS)
c906108c 381
f77b92bf
MK
382ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
383ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
c906108c 384
c906108c
SS
385DIST=gdb
386
387LINT=/usr/5bin/lint
5565b556 388LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
9175c9a3 389 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
5565b556 390 $(INTL_CFLAGS)
c906108c
SS
391
392RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
393 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
394 fi`
395
396RUNTESTFLAGS=
397
398# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
399# interface to the serial port. Hopefully if get ported to OS/2, VMS,
400# etc., then there will be (as part of the C library or perhaps as
401# part of libiberty) a POSIX interface. But at least for now the
402# host-dependent makefile fragment might need to use something else
403# besides ser-unix.o
6688f7e9 404SER_HARDWIRE = @SER_HARDWIRE@
c906108c
SS
405
406# The `remote' debugging target is supported for most architectures,
407# but not all (e.g. 960)
449092f6 408REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o
c906108c
SS
409
410# This is remote-sim.o if a simulator is to be linked in.
411SIM_OBS =
412
c906108c
SS
413# Host and target-dependent makefile fragments come in here.
414@host_makefile_frag@
415@target_makefile_frag@
416# End of host and target-dependent makefile fragments
417
3cf93817
RM
418# Possibly ignore the simulator. If the simulator is being ignored,
419# these expand into SIM= and SIM_OBJ=, overriding the entries from
7a292a7a
SS
420# target_makefile_frag
421#
422@IGNORE_SIM@
423@IGNORE_SIM_OBS@
424
c906108c
SS
425FLAGS_TO_PASS = \
426 "prefix=$(prefix)" \
427 "exec_prefix=$(exec_prefix)" \
6688f7e9 428 "infodir=$(infodir)" \
36af0b35
L
429 "libdir=$(libdir)" \
430 "mandir=$(mandir)" \
431 "datadir=$(datadir)" \
432 "includedir=$(includedir)" \
c906108c 433 "against=$(against)" \
c938e9b0 434 "DESTDIR=$(DESTDIR)" \
c906108c
SS
435 "AR=$(AR)" \
436 "AR_FLAGS=$(AR_FLAGS)" \
437 "CC=$(CC)" \
438 "CFLAGS=$(CFLAGS)" \
c906108c
SS
439 "CXX=$(CXX)" \
440 "CXXFLAGS=$(CXXFLAGS)" \
441 "DLLTOOL=$(DLLTOOL)" \
ed363b1b 442 "LDFLAGS=$(LDFLAGS)" \
c906108c
SS
443 "RANLIB=$(RANLIB)" \
444 "MAKEINFO=$(MAKEINFO)" \
085dd6e6
JM
445 "MAKEHTML=$(MAKEHTML)" \
446 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
c906108c
SS
447 "INSTALL=$(INSTALL)" \
448 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
449 "INSTALL_DATA=$(INSTALL_DATA)" \
450 "RUNTEST=$(RUNTEST)" \
451 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
452
453# Flags that we pass when building the testsuite.
454
455# empty for native, $(target_alias)/ for cross
456target_subdir = @target_subdir@
457
458CC_FOR_TARGET = ` \
459 if [ -f $${rootme}/../gcc/xgcc ] ; then \
460 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
461 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/; \
462 else \
463 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
464 fi; \
465 else \
466 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
467 echo $(CC); \
468 else \
469 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
470 fi; \
471 fi`
472
473CXX = gcc
474CXX_FOR_TARGET = ` \
475 if [ -f $${rootme}/../gcc/xgcc ] ; then \
476 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
477 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/; \
478 else \
479 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
480 fi; \
481 else \
482 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
483 echo $(CXX); \
484 else \
485 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
486 fi; \
487 fi`
488
c906108c
SS
489# The use of $$(x_FOR_TARGET) reduces the command line length by not
490# duplicating the lengthy definition.
491TARGET_FLAGS_TO_PASS = \
492 "prefix=$(prefix)" \
493 "exec_prefix=$(exec_prefix)" \
494 "against=$(against)" \
495 'CC=$$(CC_FOR_TARGET)' \
496 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
497 "CFLAGS=$(CFLAGS)" \
c906108c
SS
498 'CXX=$$(CXX_FOR_TARGET)' \
499 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
500 "CXXFLAGS=$(CXXFLAGS)" \
501 "INSTALL=$(INSTALL)" \
502 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
503 "INSTALL_DATA=$(INSTALL_DATA)" \
504 "MAKEINFO=$(MAKEINFO)" \
085dd6e6 505 "MAKEHTML=$(MAKEHTML)" \
c906108c
SS
506 "RUNTEST=$(RUNTEST)" \
507 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
508
509# All source files that go into linking GDB.
510# Links made at configuration time should not be specified here, since
511# SFILES is used in building the distribution archive.
512
1f8173e6 513SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c \
92df71f0 514 ax-general.c ax-gdb.c \
bba2d28d
AC
515 bcache.c \
516 bfd-target.c \
517 block.c blockframe.c breakpoint.c buildsym.c \
92df71f0 518 c-exp.y c-lang.c c-typeprint.c c-valprint.c \
1b6bc7e0
CF
519 charset.c cli-out.c coffread.c coff-pe-read.c \
520 complaints.c completer.c corefile.c \
9219021c 521 cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
de4f826b 522 dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
cfc14b3a 523 dwarfread.c dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
92df71f0
FN
524 elfread.c environ.c eval.c event-loop.c event-top.c expprint.c \
525 f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c frame.c \
da62e633 526 frame-base.c \
494cca16 527 frame-unwind.c \
92df71f0
FN
528 gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
529 hpacc-abi.c \
04714b91
AC
530 inf-loop.c \
531 infcall.c \
532 infcmd.c inflow.c infrun.c \
4389a95a 533 interps.c \
c906108c 534 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
92df71f0
FN
535 kod.c kod-cisco.c \
536 language.c linespec.c \
537 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
538 macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
539 mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c \
540 nlmread.c \
a76c9d72 541 objc-exp.y objc-lang.c \
ccdc5d7f 542 objfiles.c osabi.c observer.c \
92df71f0 543 p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
449092f6 544 regcache.c reggroups.c remote.c remote-fileio.c \
a94dd1fd
AC
545 scm-exp.c scm-lang.c scm-valprint.c \
546 sentinel-frame.c \
547 serial.c ser-unix.c source.c \
eb4556d7
JB
548 stabsread.c stack.c std-regs.c symfile.c symfile-mem.c symmisc.c \
549 symtab.c \
a0f267c7
AC
550 target.c thread.c top.c tracepoint.c \
551 trad-frame.c \
d2259dd3 552 tramp-frame.c \
a0f267c7 553 typeprint.c \
92df71f0 554 ui-out.c utils.c ui-file.h ui-file.c \
eb8bc282 555 user-regs.c \
92e023d6 556 valarith.c valops.c valprint.c value.c varobj.c \
92df71f0 557 wrapper.c
c906108c 558
fb40c209 559LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
c906108c
SS
560
561# "system" headers. Using these in dependencies is a rather personal
562# choice. (-rich, summer 1993)
3cf93817 563# (Why would we not want to depend on them? If one of these changes in a
c906108c
SS
564# non-binary-compatible way, it is a real pain to remake the right stuff
565# without these dependencies -kingdon, 13 Mar 1994)
04ea0df1 566aout_aout64_h = $(INCLUDE_DIR)/aout/aout64.h
5f8a3188 567aout_stabs_gnu_h = $(INCLUDE_DIR)/aout/stabs_gnu.h
c906108c
SS
568getopt_h = $(INCLUDE_DIR)/getopt.h
569floatformat_h = $(INCLUDE_DIR)/floatformat.h
570bfd_h = $(BFD_DIR)/bfd.h
04ea0df1
AC
571coff_sym_h = $(INCLUDE_DIR)/coff/sym.h
572coff_symconst_h = $(INCLUDE_DIR)/coff/symconst.h
573coff_ecoff_h = $(INCLUDE_DIR)/coff/ecoff.h
c1dac9e6 574coff_internal_h = $(INCLUDE_DIR)/coff/internal.h
b55c33cc 575dis_asm_h = $(INCLUDE_DIR)/dis-asm.h $(bfd_h)
299a7944 576elf_reloc_macros_h = $(INCLUDE_DIR)/elf/reloc-macros.h
460e6ec3 577elf_sh_h = $(INCLUDE_DIR)/elf/sh.h
299a7944 578elf_arm_h = $(INCLUDE_DIR)/elf/arm.h $(elf_reloc_macros_h)
460e6ec3 579elf_bfd_h = $(BFD_SRC)/elf-bfd.h
7e295833 580elf_frv_h = $(INCLUDE_DIR)/elf/frv.h $(elf_reloc_macros_h)
04ea0df1 581libaout_h = $(BFD_SRC)/libaout.h
2252e863 582libbfd_h = $(BFD_SRC)/libbfd.h
3c25f8c7 583remote_sim_h = $(INCLUDE_DIR)/gdb/remote-sim.h
bea7bb93 584demangle_h = $(INCLUDE_DIR)/demangle.h
c2c197ae 585obstack_h = $(INCLUDE_DIR)/obstack.h
460e6ec3 586opcode_m68hc11_h = $(INCLUDE_DIR)/opcode/m68hc11.h
aeeccc89 587readline_h = $(READLINE_SRC)/readline.h
dbda9972
AC
588readline_tilde_h = $(READLINE_SRC)/tilde.h
589readline_history_h = $(READLINE_SRC)/history.h
526eef89 590frv_desc_h = $(OPCODES_SRC)/frv-desc.h
460e6ec3 591sh_opc_h = $(OPCODES_SRC)/sh-opc.h
8f113c9a 592gdb_callback_h = $(INCLUDE_DIR)/gdb/callback.h
460e6ec3
AC
593gdb_sim_arm_h = $(INCLUDE_DIR)/gdb/sim-arm.h
594gdb_sim_d10v_h = $(INCLUDE_DIR)/gdb/sim-d10v.h
526eef89 595gdb_sim_frv_h = $(INCLUDE_DIR)/gdb/sim-frv.h
9f643768 596gdb_sim_ppc_h = $(INCLUDE_DIR)/gdb/sim-ppc.h
460e6ec3 597gdb_sim_sh_h = $(INCLUDE_DIR)/gdb/sim-sh.h
ec2bcbe7 598splay_tree_h = $(INCLUDE_DIR)/splay-tree.h
72bf9492 599hashtab_h = $(INCLUDE_DIR)/hashtab.h
c906108c 600
1517c6d1
AC
601#
602# $BUILD/ headers
603#
604
605config_h = config.h
606exc_request_U_h = exc_request_U.h
607exc_request_S_h = exc_request_S.h
608msg_reply_S_h = msg_reply_S.h
609msg_U_h = msg_U.h
610notify_S_h = notify_S.h
72bf9492
DJ
611observer_h = observer.h
612observer_inc = observer.inc
1517c6d1
AC
613process_reply_S_h = process_reply_S.h
614
615#
616# config/ headers
617#
618
5a2402b8
AC
619xm_h = @xm_h@
620tm_h = @tm_h@
621nm_h = @nm_h@
c906108c 622
342af04b 623#
1517c6d1 624# gdb/ headers
342af04b
AC
625#
626
35124113 627ada_lang_h = ada-lang.h $(value_h) $(gdbtypes_h) $(breakpoint_h)
e979516b 628ada_lex_c = ada-lex.c $(gdb_string_h)
342af04b 629alphabsd_tdep_h = alphabsd-tdep.h
91092ee5 630alpha_tdep_h = alpha-tdep.h
c14a44d5 631amd64_nat_h = amd64-nat.h
a431654a 632amd64_tdep_h = amd64-tdep.h $(i386_tdep_h)
342af04b
AC
633annotate_h = annotate.h $(symtab_h) $(gdbtypes_h)
634arch_utils_h = arch-utils.h
4be87837 635arm_tdep_h = arm-tdep.h
3cf93817 636auxv_h = auxv.h
342af04b
AC
637ax_gdb_h = ax-gdb.h
638ax_h = ax.h $(doublest_h)
639bcache_h = bcache.h
bba2d28d 640bfd_target_h = bfd-target.h
fe898f56 641block_h = block.h
342af04b 642breakpoint_h = breakpoint.h $(frame_h) $(value_h) $(gdb_events_h)
2e0c3539 643bsd_kvm_h = bsd-kvm.h
fa565c2b 644bsd_uthread_h = bsd-uthread.h
342af04b 645buildsym_h = buildsym.h
342af04b 646call_cmds_h = call-cmds.h
91092ee5
AC
647charset_h = charset.h
648c_lang_h = c-lang.h $(value_h) $(macroexp_h)
342af04b 649cli_out_h = cli-out.h
1b6bc7e0 650coff_pe_read_h = coff-pe-read.h
91092ee5 651coff_solib_h = coff-solib.h
342af04b
AC
652command_h = command.h
653complaints_h = complaints.h
654completer_h = completer.h
655cp_abi_h = cp-abi.h
1fcb5155 656cp_support_h = cp-support.h $(symtab_h)
342af04b 657dcache_h = dcache.h
91092ee5 658defs_h = defs.h $(config_h) $(ansidecl_h) $(gdb_locale_h) $(gdb_signals_h) \
226361c4 659 $(libiberty_h) $(bfd_h) $(ui_file_h) $(xm_h) $(nm_h) $(tm_h) \
34a17005 660 $(fopen_bin_h) $(gdbarch_h)
de4f826b 661dictionary_h = dictionary.h
92df71f0 662disasm_h = disasm.h
342af04b 663doublest_h = doublest.h $(floatformat_h)
9c1412c1 664dummy_frame_h = dummy-frame.h
4c2df51b 665dwarf2expr_h = dwarf2expr.h
cfc14b3a 666dwarf2_frame_h = dwarf2-frame.h
91092ee5 667dwarf2loc_h = dwarf2loc.h
342af04b
AC
668environ_h = environ.h
669event_loop_h = event-loop.h
670event_top_h = event-top.h
60250e8b 671exceptions_h = exceptions.h
4646aa9d 672exec_h = exec.h $(target_h)
342af04b 673expression_h = expression.h $(symtab_h) $(doublest_h)
578c1c03 674fbsd_nat_h = fbsd-nat.h
342af04b 675f_lang_h = f-lang.h
91092ee5 676frame_base_h = frame-base.h
342af04b 677frame_h = frame.h
7df05f2b 678frame_unwind_h = frame-unwind.h $(frame_h)
7e295833 679frv_tdep_h = frv-tdep.h
a89aa300 680gdbarch_h = gdbarch.h
342af04b 681gdb_assert_h = gdb_assert.h
91092ee5
AC
682gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h)
683gdbcore_h = gdbcore.h $(bfd_h)
6a83354a 684gdb_curses_h = gdb_curses.h
342af04b 685gdb_dirent_h = gdb_dirent.h
91092ee5
AC
686gdb_events_h = gdb-events.h
687gdb_h = gdb.h
342af04b
AC
688gdb_locale_h = gdb_locale.h
689gdb_obstack_h = gdb_obstack.h $(obstack_h)
690gdb_proc_service_h = gdb_proc_service.h $(gregset_h)
11003ae3 691gdb_ptrace_h = gdb_ptrace.h
342af04b 692gdb_regex_h = gdb_regex.h $(xregex_h)
91092ee5 693gdb_stabs_h = gdb-stabs.h
342af04b
AC
694gdb_stat_h = gdb_stat.h
695gdb_string_h = gdb_string.h
696gdb_thread_db_h = gdb_thread_db.h
aa0cd9c1 697gdbthread_h = gdbthread.h $(breakpoint_h) $(frame_h)
342af04b 698gdbtypes_h = gdbtypes.h
91092ee5
AC
699gdb_vfork_h = gdb_vfork.h
700gdb_wait_h = gdb_wait.h
a3640c75 701glibc_tdep_h = glibc-tdep.h
342af04b 702gnu_nat_h = gnu-nat.h
6b08edad 703gnu_v2_abi_h = gnu-v2-abi.h
342af04b 704gregset_h = gregset.h
3ff7cf9e 705hppa_tdep_h = hppa-tdep.h
9692934b 706i386bsd_nat_h = i386bsd-nat.h
5179e78f 707i386_linux_tdep_h = i386-linux-tdep.h
4be87837 708i386_tdep_h = i386-tdep.h
342af04b 709i387_tdep_h = i387-tdep.h
9fc9f5e2 710ia64_tdep_h = ia64-tdep.h
04714b91 711infcall_h = infcall.h
5bf970f9 712inf_child_h = inf-child.h
aa0cd9c1 713inferior_h = inferior.h $(breakpoint_h) $(target_h) $(frame_h)
91092ee5 714inf_loop_h = inf-loop.h
44270758 715inflow_h = inflow.h $(terminal_h)
5bf970f9 716inf_ptrace_h = inf-ptrace.h
eee22bf8 717inf_ttrace_h = inf-ttrace.h
c1043fc2 718interps_h = interps.h $(exceptions_h)
342af04b
AC
719jv_lang_h = jv-lang.h
720kod_h = kod.h
721language_h = language.h
b2100910 722libunwind_frame_h = libunwind-frame.h $(libunwind_h)
342af04b 723linespec_h = linespec.h
a2f23071 724linux_nat_h = linux-nat.h $(target_h)
342af04b 725m2_lang_h = m2-lang.h
9b32d526 726m32r_tdep_h = m32r-tdep.h
32eeb91a 727m68k_tdep_h = m68k-tdep.h
bf2ca189 728m88k_tdep_h = m88k-tdep.h
342af04b
AC
729macroexp_h = macroexp.h
730macroscope_h = macroscope.h $(macrotab_h) $(symtab_h)
731macrotab_h = macrotab.h
f15ab4a7 732main_h = main.h
36b8628e 733mdebugread_h = mdebugread.h $(coff_sym_h) $(coff_symconst_h)
342af04b 734memattr_h = memattr.h
1a8da44d 735mips_mdebug_tdep_h = mips-mdebug-tdep.h
342af04b 736mipsnbsd_tdep_h = mipsnbsd-tdep.h
91092ee5 737mips_tdep_h = mips-tdep.h
60250e8b 738mn10300_tdep_h = mn10300-tdep.h
342af04b
AC
739monitor_h = monitor.h
740nbsd_tdep_h = nbsd-tdep.h
60250e8b 741nto_tdep_h = nto-tdep.h $(defs_h) $(solist_h) $(osabi_h) $(regset_h)
a76c9d72 742objc_lang_h = objc-lang.h
342af04b
AC
743objfiles_h = objfiles.h $(gdb_obstack_h) $(symfile_h)
744ocd_h = ocd.h
745osabi_h = osabi.h
60250e8b 746pa64solib_h = pa64solib.h
342af04b 747parser_defs_h = parser-defs.h $(doublest_h)
91092ee5 748p_lang_h = p-lang.h
342af04b 749ppcnbsd_tdep_h = ppcnbsd-tdep.h
35124113 750ppcobsd_tdep_h = ppcobsd-tdep.h
91092ee5 751ppc_tdep_h = ppc-tdep.h
342af04b
AC
752proc_utils_h = proc-utils.h
753regcache_h = regcache.h
b59ff9d5 754reggroups_h = reggroups.h
54c84734 755regset_h = regset.h
cd90e54f 756remote_fileio_h = remote-fileio.h
91092ee5
AC
757remote_h = remote.h
758remote_utils_h = remote-utils.h $(target_h)
d0f54f9d 759s390_tdep_h = s390-tdep.h
342af04b
AC
760scm_lang_h = scm-lang.h $(scm_tags_h)
761scm_tags_h = scm-tags.h
a94dd1fd 762sentinel_frame_h = sentinel-frame.h
342af04b 763serial_h = serial.h
91092ee5 764ser_unix_h = ser-unix.h
342af04b 765shnbsd_tdep_h = shnbsd-tdep.h
91092ee5 766sh_tdep_h = sh-tdep.h
342af04b 767sim_regno_h = sim-regno.h
342af04b 768solib_h = solib.h
60250e8b
AC
769solib_pa64_h = solib-pa64.h
770solib_som_h = solib-som.h
91092ee5 771solib_svr4_h = solib-svr4.h
342af04b 772solist_h = solist.h
60250e8b 773somsolib_h = somsolib.h
342af04b 774source_h = source.h
b2100910 775sparc64_tdep_h = sparc64-tdep.h $(sparc_tdep_h)
386c036b 776sparc_nat_h = sparc-nat.h
91092ee5 777sparc_tdep_h = sparc-tdep.h
342af04b
AC
778srec_h = srec.h
779stabsread_h = stabsread.h
b9362cc7 780stack_h = stack.h
342af04b
AC
781symfile_h = symfile.h
782symtab_h = symtab.h
783target_h = target.h $(bfd_h) $(symtab_h) $(dcache_h) $(memattr_h)
784terminal_h = terminal.h
785top_h = top.h
786tracepoint_h = tracepoint.h
0db9b4b7 787trad_frame_h = trad-frame.h $(frame_h)
35124113 788tramp_frame_h = tramp-frame.h $(frame_h)
342af04b
AC
789typeprint_h = typeprint.h
790ui_file_h = ui-file.h
791ui_out_h = ui-out.h
eb8bc282 792user_regs_h = user-regs.h
342af04b 793valprint_h = valprint.h
91092ee5
AC
794value_h = value.h $(doublest_h) $(frame_h) $(symtab_h) $(gdbtypes_h) \
795 $(expression_h)
342af04b 796varobj_h = varobj.h $(symtab_h) $(gdbtypes_h)
4be87837 797vax_tdep_h = vax-tdep.h
342af04b
AC
798version_h = version.h
799wince_stub_h = wince-stub.h
800wrapper_h = wrapper.h $(gdb_h)
342af04b 801xcoffsolib_h = xcoffsolib.h
342af04b
AC
802
803#
804# gdb/cli/ headers
805#
806
807cli_cmds_h = $(srcdir)/cli/cli-cmds.h
8fe84d01 808cli_decode_h = $(srcdir)/cli/cli-decode.h $(command_h)
342af04b
AC
809cli_dump_h = $(srcdir)/cli/cli-dump.h
810cli_script_h = $(srcdir)/cli/cli-script.h
811cli_setshow_h = $(srcdir)/cli/cli-setshow.h
812cli_utils_h = $(srcdir)/cli/cli-utils.h
813
814#
815# gdb/mi/ headers
816#
817
818mi_cmds_h = $(srcdir)/mi/mi-cmds.h
819mi_console_h = $(srcdir)/mi/mi-console.h
820mi_getopt_h = $(srcdir)/mi/mi-getopt.h
4389a95a 821mi_main_h = $(srcdir)/mi/mi-main.h
342af04b
AC
822mi_out_h = $(srcdir)/mi/mi-out.h
823mi_parse_h = $(srcdir)/mi/mi-parse.h
824
825#
826# gdb/tui/ headers
827#
828
d7b2e967 829tui_command_h = $(srcdir)/tui/tui-command.h
6a83354a 830tui_data_h = $(srcdir)/tui/tui-data.h $(tui_h) $(gdb_curses_h)
20d286a5 831tui_disasm_h = $(srcdir)/tui/tui-disasm.h $(tui_h) $(tui_data_h)
91092ee5 832tui_file_h = $(srcdir)/tui/tui-file.h
20d286a5 833tui_h = $(srcdir)/tui/tui.h
6a83354a 834tui_hooks_h = $(srcdir)/tui/tui-hooks.h
d7b2e967 835tui_io_h = $(srcdir)/tui/tui-io.h
20d286a5
AC
836tui_layout_h = $(srcdir)/tui/tui-layout.h $(tui_h) $(tui_data_h)
837tui_regs_h = $(srcdir)/tui/tui-regs.h $(tui_data_h)
838tui_source_h = $(srcdir)/tui/tui-source.h $(tui_data_h)
d7b2e967 839tui_stack_h = $(srcdir)/tui/tui-stack.h
20d286a5 840tui_windata_h = $(srcdir)/tui/tui-windata.h $(tui_data_h)
d7b2e967 841tui_wingeneral_h = $(srcdir)/tui/tui-wingeneral.h
20d286a5
AC
842tui_win_h = $(srcdir)/tui/tui-win.h $(tui_data_h)
843tui_winsource_h = $(srcdir)/tui/tui-winsource.h $(tui_data_h)
234b45d4 844
c906108c
SS
845# Header files that need to have srcdir added. Note that in the cases
846# where we use a macro like $(gdbcmd_h), things are carefully arranged
847# so that each .h file is listed exactly once (M-x tags-search works
848# wrong if TAGS has files twice). Because this is tricky to get
849# right, it is probably easiest just to list .h files here directly.
850
851HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
60250e8b 852 exceptions.h \
822e978b 853 environ.h $(gdbcmd_h) gdb.h gdbcore.h \
8af51c36 854 gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
6a34fd2f 855 objfiles.h parser-defs.h serial.h solib.h \
eb4556d7
JB
856 symfile.h symfile-mem.h stabsread.h target.h terminal.h typeprint.h \
857 xcoffsolib.h \
6821892e 858 macrotab.h macroexp.h macroscope.h \
1f8173e6 859 ada-lang.h c-lang.h f-lang.h \
c906108c 860 jv-lang.h \
df115219 861 m2-lang.h p-lang.h \
c906108c 862 complaints.h valprint.h \
e84ecc99 863 gdbthread.h \
acf86d54 864 dcache.h remote-utils.h top.h solib-som.h
c906108c
SS
865
866# Header files that already have srcdir in them, or which are in objdir.
867
03c30d4d 868HFILES_WITH_SRCDIR = ../bfd/bfd.h
c906108c
SS
869
870
871# GDB "info" files, which should be included in their entirety
872INFOFILES = gdb.info*
873
874REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
875
c906108c
SS
876# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
877# default their values the way we do for SER_HARDWIRE; in the future
878# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
879# variables analogous to SER_HARDWIRE which get defaulted in this
880# Makefile.in
881
7708fa01 882DEPFILES = $(TDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
d836ee13 883 $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_OBS)
c906108c 884
fb40c209 885SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
8132723e 886# Don't include YYFILES (*.c) because we already include *.y in SFILES,
c906108c
SS
887# and it's more useful to see it in the .y file.
888TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
f77b92bf 889 $(SUBDIR_CLI_SRCS)
c906108c
SS
890TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
891
defc864c
AC
892COMMON_OBS = $(DEPFILES) $(YYOBJ) \
893 version.o \
d836ee13 894 annotate.o \
3cf93817 895 auxv.o \
bba2d28d
AC
896 bfd-target.o \
897 blockframe.o breakpoint.o findvar.o regcache.o \
9c1412c1 898 charset.o disasm.o dummy-frame.o \
92e023d6 899 source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
de4f826b 900 block.o symtab.o symfile.o symmisc.o linespec.o dictionary.o \
04714b91
AC
901 infcall.o \
902 infcmd.o infrun.o \
32178cab 903 expprint.o environ.o stack.o thread.o \
60250e8b 904 exceptions.o \
3f3db248 905 inf-child.o \
4389a95a 906 interps.o \
d836ee13 907 main.o \
6821892e 908 macrotab.o macrocmd.o macroexp.o macroscope.o \
c5f0f3d0 909 event-loop.o event-top.o inf-loop.o completer.o \
defc864c
AC
910 gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
911 memattr.o mem-break.o target.o parse.o language.o buildsym.o \
eb8bc282 912 std-regs.o \
0150732f 913 signals.o \
96baa820 914 kod.o kod-cisco.o \
104c1213 915 gdb-events.o \
ccdc5d7f 916 exec.o bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
1b6bc7e0 917 dbxread.o coffread.o coff-pe-read.o elfread.o \
c906108c 918 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
cfc14b3a 919 dwarf2expr.o dwarf2loc.o dwarf2-frame.o \
1f8173e6 920 ada-lang.o c-lang.o f-lang.o objc-lang.o \
8b93c638
JM
921 ui-out.o cli-out.o \
922 varobj.o wrapper.o \
c906108c 923 jv-lang.o jv-valprint.o jv-typeprint.o \
454313e5 924 m2-lang.o p-lang.o p-typeprint.o p-valprint.o \
a94dd1fd
AC
925 scm-exp.o scm-lang.o scm-valprint.o \
926 sentinel-frame.o \
927 complaints.o typeprint.o \
1f8173e6
PH
928 ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
929 ada-valprint.o c-valprint.o cp-valprint.o f-valprint.o m2-valprint.o \
a99a9e1b 930 nlmread.o serial.o mdebugread.o top.o utils.o \
227288a0 931 ui-file.o \
eb8bc282 932 user-regs.o \
494cca16 933 frame.o frame-unwind.o doublest.o \
da62e633 934 frame-base.o \
b59ff9d5 935 gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o cp-support.o \
9219021c 936 cp-namespace.o \
be07a590 937 reggroups.o regset.o \
d2259dd3
AC
938 trad-frame.o \
939 tramp-frame.o
c906108c 940
c906108c
SS
941TSOBS = inflow.o
942
8dcde887 943SUBDIRS = @subdirs@
c906108c
SS
944
945# For now, shortcut the "configure GDB for fewer languages" stuff.
8132723e
AC
946YYFILES = c-exp.c \
947 objc-exp.c \
948 ada-exp.c \
949 jv-exp.c \
950 f-exp.c m2-exp.c p-exp.c
951YYOBJ = c-exp.o \
952 objc-exp.o \
1f8173e6 953 ada-exp.o \
8132723e
AC
954 jv-exp.o \
955 f-exp.o m2-exp.o p-exp.o
c906108c
SS
956
957# Things which need to be built when making a distribution.
958
959DISTSTUFF = $(YYFILES)
960
961# Prevent Sun make from putting in the machine type. Setting
962# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
963.c.o:
964 $(CC) -c $(INTERNAL_CFLAGS) $<
965
b3a90332 966all: gdb$(EXEEXT) $(CONFIG_ALL)
c906108c 967 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
226361c4
AC
968.PHONY: all-tui
969all-tui: $(TUI)$(EXEEXT)
c906108c
SS
970
971installcheck:
972
973# The check target can not use subdir_do, because subdir_do does not
974# use TARGET_FLAGS_TO_PASS.
975check: force
976 @if [ -f testsuite/Makefile ]; then \
977 rootme=`pwd`; export rootme; \
978 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
979 cd testsuite; \
980 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
981 else true; fi
982
e75d110c
AO
983# The idea is to parallelize testing of multilibs, for example:
984# make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
985# will run 3 concurrent sessions of check, eventually testing all 10
986# combinations. GNU make is required for the % pattern to work, as is
987# a shell that expands alternations within braces. If GNU make is not
988# used, this rule will harmlessly fail to match.
989check//%: force
990 @if [ -f testsuite/config.status ]; then \
991 rootme=`pwd`; export rootme; \
992 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
993 target=`echo "$@" | sed 's,//.*,,'`; \
994 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
995 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
996 testdir=testsuite.$$vardots; \
997 if [ ! -f $$testdir/Makefile ]; then \
998 (cd testsuite && find . -name config.status) | \
999 sed s,/config.status$$,, | sort | while read subdir; do \
1000 $(SHELL) $(srcdir)/../mkinstalldirs $$testdir/$$subdir && \
1001 (cd $$testdir/$$subdir && \
1002 $(SHELL) $$rootme/testsuite/$$subdir/config.status \
1003 --recheck && \
1004 $(SHELL) ./config.status); done; \
1005 else :; fi && cd $$testdir && \
1006 $(MAKE) $(TARGET_FLAGS_TO_PASS) \
1007 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
1008 "$$target"; \
1009 else true; fi
1010
085dd6e6 1011info dvi install-info clean-info html install-html: force
c906108c
SS
1012 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
1013
1014gdb.z:gdb.1
3cf93817 1015 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
c906108c
SS
1016 pack gdb.t ; rm -f gdb.t
1017 mv gdb.t.z gdb.z
1018
1019# Traditionally "install" depends on "all". But it may be useful
3cf93817 1020# not to; for example, if the user has made some trivial change to a
c906108c
SS
1021# source file and doesn't care about rebuilding or just wants to save the
1022# time it takes for make to check that all is up to date.
1023# install-only is intended to address that need.
1024install: all install-only
e56ac5c3 1025install-only: $(CONFIG_INSTALL)
c906108c 1026 transformed_name=`t='$(program_transform_name)'; \
95303a68 1027 echo gdb | sed -e "$$t"` ; \
c906108c
SS
1028 if test "x$$transformed_name" = x; then \
1029 transformed_name=gdb ; \
1030 else \
1031 true ; \
1032 fi ; \
c938e9b0 1033 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
72bdd927
AC
1034 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1035 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
b7f31508 1036 $(SHELL) $(srcdir)/../mkinstalldirs \
72bdd927
AC
1037 $(DESTDIR)$(man1dir) ; \
1038 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1039 $(DESTDIR)$(man1dir)/$$transformed_name.1
3cf93817 1040 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
226361c4
AC
1041.PHONY: install-tui
1042install-tui:
1043 transformed_name=`t='$(program_transform_name)'; \
1044 echo $(TUI) | sed -e "$$t"` ; \
1045 if test "x$$transformed_name" = x; then \
1046 transformed_name=$(TUI) ; \
1047 else \
1048 true ; \
1049 fi ; \
1050 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1051 $(INSTALL_PROGRAM) $(TUI)$(EXEEXT) \
1052 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1053 $(SHELL) $(srcdir)/../mkinstalldirs \
1054 $(DESTDIR)$(man1dir) ; \
1055 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1056 $(DESTDIR)$(man1dir)/$$transformed_name.1
1057
c906108c 1058
e56ac5c3 1059uninstall: force $(CONFIG_UNINSTALL)
c906108c
SS
1060 transformed_name=`t='$(program_transform_name)'; \
1061 echo gdb | sed -e $$t` ; \
1062 if test "x$$transformed_name" = x; then \
1063 transformed_name=gdb ; \
1064 else \
1065 true ; \
1066 fi ; \
c938e9b0
L
1067 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1068 $(DESTDIR)$(man1dir)/$$transformed_name.1
3cf93817 1069 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
226361c4
AC
1070.PHONY: uninstall-tui
1071uninstall-tui:
1072 transformed_name=`t='$(program_transform_name)'; \
1073 echo $(TUI) | sed -e $$t` ; \
1074 if test "x$$transformed_name" = x; then \
1075 transformed_name=$(TUI) ; \
1076 else \
1077 true ; \
1078 fi ; \
1079 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1080 $(DESTDIR)$(man1dir)/$$transformed_name.1
c906108c
SS
1081
1082# We do this by grepping through sources. If that turns out to be too slow,
1083# maybe we could just require every .o file to have an initialization routine
9b4ff276 1084# of a given name (top.o -> _initialize_top, etc.).
c906108c
SS
1085#
1086# Formatting conventions: The name of the _initialize_* routines must start
1087# in column zero, and must not be inside #if.
1088#
1089# Note that the set of files with init functions might change, or the names
1090# of the functions might change, so this files needs to depend on all the
1091# object files that will be linked into gdb.
defc864c
AC
1092
1093# FIXME: There is a problem with this approach - init.c may force
1094# unnecessary files to be linked in.
dd12a101
AC
1095
1096# FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
defc864c
AC
1097# the first call is to _initialize_gdbtypes (implemented by explicitly
1098# putting that function's name first in the init.l-tmp file). This is
1099# a hack to ensure that all the architecture dependant global
1100# builtin_type_* variables are initialized before anything else
1101# (per-architecture code is called in the same order that it is
1102# registered). The ``correct fix'' is to have all the builtin types
1103# made part of the architecture and initialize them on-demand (using
1104# gdbarch_data) just like everything else. The catch is that other
1105# modules still take the address of these builtin types forcing them
1106# to be variables, sigh!
c906108c 1107
0022b738
AC
1108# NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
1109# anchored on the first column and excludes the ``/'' character so
1110# that it doesn't add the $(srcdir) prefix to any file that already
1111# has an absolute path. It turns out that $(DEC)'s True64 make
1112# automatically adds the $(srcdir) prefixes when it encounters files
1113# in sub-directories such as cli/ and mi/.
1114
defc864c
AC
1115# NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
1116# duplicates. Files in the gdb/ directory can end up appearing in
1117# COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
1118
1119INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS)
c2d11a7d 1120init.c: $(INIT_FILES)
c906108c 1121 @echo Making init.c
6426a772 1122 @rm -f init.c-tmp init.l-tmp
defc864c
AC
1123 @touch init.c-tmp
1124 @echo gdbtypes > init.l-tmp
c2d11a7d 1125 @-echo $(INIT_FILES) | \
c906108c 1126 tr ' ' '\012' | \
b1364885 1127 sed \
defc864c
AC
1128 -e '/^gdbtypes.[co]$$/d' \
1129 -e '/^init.[co]$$/d' \
1130 -e '/xdr_ld.[co]$$/d' \
1131 -e '/xdr_ptrace.[co]$$/d' \
1132 -e '/xdr_rdb.[co]$$/d' \
1133 -e '/udr.[co]$$/d' \
1134 -e '/udip2soc.[co]$$/d' \
1135 -e '/udi2go32.[co]$$/d' \
1136 -e '/version.[co]$$/d' \
1137 -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
1138 -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
1139 -e 's/\.[co]$$/.c/' \
9aedf4f4 1140 -e 's,signals\.c,signals/signals\.c,' \
0022b738 1141 -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \
defc864c
AC
1142 while read f; do \
1143 sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
1144 done | \
1145 while read f; do \
4ff2cc4d
AC
1146 case " $$fs " in \
1147 *" $$f "* ) ;; \
1148 * ) echo $$f ; fs="$$fs $$f";; \
defc864c
AC
1149 esac; \
1150 done >> init.l-tmp
6426a772
JM
1151 @echo '/* Do not modify this file. */' >>init.c-tmp
1152 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
defc864c
AC
1153 @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp
1154 @echo '#include "call-cmds.h" /* For initialize_all_files. */' >>init.c-tmp
1155 @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
6426a772
JM
1156 @echo 'void' >>init.c-tmp
1157 @echo 'initialize_all_files (void)' >>init.c-tmp
1158 @echo '{' >>init.c-tmp
defc864c 1159 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
c906108c 1160 @echo '}' >>init.c-tmp
6426a772 1161 @rm init.l-tmp
c906108c
SS
1162 @mv init.c-tmp init.c
1163
1164.PRECIOUS: init.c
1165
6426a772
JM
1166init.o: init.c $(defs_h) $(call_cmds_h)
1167
c906108c 1168# Removing the old gdb first works better if it is running, at least on SunOS.
d836ee13 1169gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
c906108c 1170 rm -f gdb$(EXEEXT)
72cfdc76 1171 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
d836ee13 1172 -o gdb$(EXEEXT) gdb.o libgdb.a \
f15ab4a7 1173 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
c906108c 1174
226361c4
AC
1175$(TUI)$(EXEEXT): tui-main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1176 rm -f $(TUI)$(EXEEXT)
1177 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1178 -o $(TUI)$(EXEEXT) tui-main.o libgdb.a \
1179 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1180
c906108c
SS
1181nlm: force
1182 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
1183
104c1213
JM
1184# Create a library of the gdb object files and build GDB by linking
1185# against that.
1186#
1187# init.o is very important. It pulls in the rest of GDB.
defc864c 1188LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
104c1213
JM
1189libgdb.a: $(LIBGDB_OBS)
1190 -rm -f libgdb.a
1191 $(AR) q libgdb.a $(LIBGDB_OBS)
1192 $(RANLIB) libgdb.a
c906108c 1193
c906108c
SS
1194# A Mach 3.0 program to force gdb back to command level
1195
1196stop-gdb: stop-gdb.o
1197 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
1198 stop-gdb.o $(CLIBS) $(LOADLIBES)
1199
1200# This is useful when debugging GDB, because some Unix's don't let you run GDB
1201# on itself without copying the executable. So "make gdb1" will make
1202# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1203# Removing gdb1 before the copy is the right thing if gdb1 is open
1204# in another process.
1205gdb1$(EXEEXT): gdb$(EXEEXT)
1206 rm -f gdb1$(EXEEXT)
1207 cp gdb$(EXEEXT) gdb1$(EXEEXT)
1208
c906108c
SS
1209# Put the proper machine-specific files first, so M-. on a machine
1210# specific routine gets the one for the correct machine. (FIXME: those
1211# files go in twice; we should be removing them from the main list).
1212
1213# TAGS depends on all the files that go into it so you can rebuild TAGS
1214# with `make TAGS' and not have to say `rm TAGS' first.
1215
1216TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
1217 @echo Making TAGS
2c0fc042 1218 @etags $(srcdir)/$(DEPRECATED_TM_FILE) \
c906108c
SS
1219 $(srcdir)/$(XM_FILE) \
1220 $(srcdir)/$(NAT_FILE) \
1221 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
1222 echo $(srcdir)/$$i ; \
1223 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1224 echo $$i ; \
1225 done) | sed -e 's/\.o$$/\.c/'` \
1226 `find $(srcdir)/config -name '*.h' -print`
1227
1228tags: TAGS
1229
b3a90332 1230clean mostlyclean: $(CONFIG_CLEAN)
3cf93817 1231 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
d3814881 1232 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
c906108c 1233 rm -f init.c version.c
104c1213 1234 rm -f gdb$(EXEEXT) core make.log
c906108c 1235 rm -f gdb[0-9]$(EXEEXT)
226361c4
AC
1236.PHONY: clean-tui
1237clean-tui:
1238 rm -f $(TUI)$(EXEEXT)
c906108c 1239
8132723e 1240# This used to depend on c-exp.c m2-exp.c TAGS
c906108c
SS
1241# I believe this is wrong; the makefile standards for distclean just
1242# describe removing files; the only sort of "re-create a distribution"
1243# functionality described is if the distributed files are unmodified.
4edb848c
AC
1244# NB: While GDBSERVER might be configured on native systems, it isn't
1245# always included in SUBDIRS. Remove the gdbserver files explictly.
c906108c 1246distclean: clean
3cf93817 1247 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
4edb848c
AC
1248 rm -f gdbserver/config.status gdbserver/config.log
1249 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1250 rm -f gdbserver/Makefile gdbserver/config.cache
c906108c
SS
1251 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
1252 rm -f y.output yacc.acts yacc.tmp y.tab.h
1253 rm -f config.log config.cache
1254 rm -f Makefile
1255
1256maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1257realclean: maintainer-clean
1258
1259local-maintainer-clean:
1260 @echo "This command is intended for maintainers to use;"
1261 @echo "it deletes files that may require special tools to rebuild."
8132723e
AC
1262 rm -f c-exp.c \
1263 ada-lex.c ada-exp.c \
1264 objc-exp.c \
c906108c 1265 jv-exp.tab \
8132723e 1266 f-exp.c m2-exp.c p-exp.c
c906108c
SS
1267 rm -f TAGS $(INFOFILES)
1268 rm -f $(YYFILES)
1269 rm -f nm.h tm.h xm.h config.status
1270
1271do-maintainer-clean:
1272 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
1273 subdir_do
1274
ddc9cd0f 1275diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1a645206 1276 cd doc; $(MAKE) $(MFLAGS) diststuff
c906108c
SS
1277
1278subdir_do: force
1279 @for i in $(DODIRS); do \
1280 if [ -f ./$$i/Makefile ] ; then \
1281 if (cd ./$$i; \
1282 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1283 else exit 1 ; fi ; \
1284 else true ; fi ; \
1285 done
1286
1287Makefile: Makefile.in config.status @frags@
1288 $(SHELL) config.status
1289
1290config.h: stamp-h ; @true
1291stamp-h: config.in config.status
1292 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
1293
eb2e12d7 1294config.status: configure configure.tgt configure.host
c906108c
SS
1295 $(SHELL) config.status --recheck
1296
1297force:
1298
1299# Documentation!
1300# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
1301doc/refcard.dvi:
1302 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
1303
1304# GDB QUICK REFERENCE (PostScript output, common PS fonts)
1305doc/refcard.ps:
1306 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
1307
1308# GDB MANUAL: TeX dvi file
1309doc/gdb.dvi:
1310 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
1311
1312# GDB MANUAL: info file
1313doc/gdb.info:
1314 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
1315
1316# Make copying.c from COPYING
413ccac7
AC
1317$(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \
1318 $(srcdir)/COPYING $(srcdir)/copying.awk
1319 awk -f $(srcdir)/copying.awk \
1320 < $(srcdir)/COPYING > $(srcdir)/copying.tmp
1321 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
c906108c 1322
d3814881
AC
1323version.c: Makefile version.in
1324 rm -f version.c-tmp version.c
1325 echo '#include "version.h"' >> version.c-tmp
696f451b 1326 echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp
d3814881
AC
1327 echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
1328 echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
1329 mv version.c-tmp version.c
d4f3574e 1330version.o: version.c $(version_h)
c906108c 1331
7a464420
AC
1332observer.h: observer.sh doc/observer.texi
1333 ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
1334
1335observer.inc: observer.sh doc/observer.texi
1336 ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
c906108c 1337
c906108c
SS
1338lint: $(LINTFILES)
1339 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1340 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
1341
1342gdb.cxref: $(SFILES)
1343 cxref -I. $(SFILES) >gdb.cxref
1344
1345force_update:
1346
1347# GNU Make has an annoying habit of putting *all* the Makefile variables
1348# into the environment, unless you include this target as a circumvention.
1349# Rumor is that this will be fixed (and this target can be removed)
1350# in GNU Make 4.0.
1351.NOEXPORT:
1352
1353# GNU Make 3.63 has a different problem: it keeps tacking command line
1354# overrides onto the definition of $(MAKE). This variable setting
1355# will remove them.
1356MAKEOVERRIDES=
1357
b1364885 1358ALLDEPFILES = \
c41669e0 1359 aix-thread.c \
8513dd2d 1360 alpha-nat.c alphabsd-nat.c \
12bcb0fe 1361 alpha-tdep.c alpha-linux-tdep.c alphabsd-tdep.c alphanbsd-tdep.c \
8f285956 1362 alpha-osf1-tdep.c alphafbsd-tdep.c alpha-mdebug-tdep.c \
9c1488cb
MK
1363 amd64-nat.c amd64-tdep.c \
1364 amd64bsd-nat.c amdfbsd-nat.c amd64fbsd-tdep.c \
09ae75b6 1365 amd64nbsd-nat.c amd64nbsd-tdep.c \
9c1488cb
MK
1366 amd64obsd-nat.c amd64obsd-tdep.c \
1367 amd64-linux-nat.c amd64-linux-tdep.c \
0bbc026e 1368 amd64-sol2-tdep.c \
e9ed6d01 1369 arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \
36012033 1370 armnbsd-nat.c armnbsd-tdep.c \
8818c391 1371 avr-tdep.c \
fa565c2b 1372 bsd-uthread.c bsd-kvm.c \
c5bb1243 1373 coff-solib.c \
31bb40e4 1374 core-regset.c core-aout.c corelow.c \
578c1c03
MK
1375 dcache.c exec.c \
1376 fbsd-nat.c \
1377 fork-child.c \
a3640c75 1378 glibc-tdep.c \
a5d61f66 1379 go32-nat.c h8300-tdep.c \
eeb8076c 1380 hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
959464ff 1381 hppa-linux-tdep.c hppa-linux-nat.c \
0e56aeaf 1382 hppabsd-nat.c hppabsd-tdep.c \
87285d5b 1383 hpread.c \
86f6f8e7 1384 i386-tdep.c i386v-nat.c i386-linux-nat.c \
f97fe8ff 1385 i386v4-nat.c i386-cygwin-tdep.c \
8a96bc77 1386 i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
9062529b 1387 i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \
e750d25e 1388 i387-tdep.c \
52b98211 1389 i386-linux-tdep.c i386-nat.c \
6b16acab 1390 i386-sol2-nat.c i386-sol2-tdep.c \
e0ca2bb9 1391 i386gnu-nat.c i386gnu-tdep.c \
8064c6ae 1392 ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
eee22bf8 1393 inf-ptrace.c inf-ttrace.c \
514e603d 1394 infptrace.c inftarg.c irix4-nat.c irix5-nat.c \
0e5d83e3 1395 libunwind-frame.c \
c906108c 1396 lynx-nat.c m3-nat.c \
1a12f22f 1397 m68hc11-tdep.c \
9b32d526
KI
1398 m32r-tdep.c \
1399 m32r-linux-nat.c m32r-linux-tdep.c \
c906108c 1400 m68k-tdep.c \
8f2d3ea0 1401 m68kbsd-nat.c m68kbsd-tdep.c \
bf2ca189 1402 m88k-tdep.c m88kbsd-nat.c \
96baa820 1403 mcore-tdep.c \
d2b57b94 1404 mips-linux-nat.c mips-linux-tdep.c \
313fb2f6 1405 mips-irix-tdep.c \
3680c638 1406 mips-tdep.c mipsm3-nat.c mipsv4-nat.c \
257ce470 1407 mipsnbsd-nat.c mipsnbsd-tdep.c \
760caeb8 1408 mips64obsd-nat.c mips64obsd-tdep.c \
ea5bc2a6 1409 nbsd-tdep.c \
a1cd1908 1410 ns32k-tdep.c solib-osf.c \
acf86d54 1411 somread.c solib-som.c $(HPREAD_SOURCE) \
b4ead1bd
MK
1412 ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
1413 ppcnbsd-nat.c ppcnbsd-tdep.c \
d195bc9f 1414 ppcobsd-nat.c ppcobsd-tdep.c \
c5bb1243 1415 procfs.c \
2a9cda49 1416 remote-e7000.c \
b4b4b794 1417 remote-hms.c remote-m32r-sdi.c remote-mips.c \
4d210288 1418 remote-rdp.c remote-sim.c \
c906108c 1419 remote-st.c remote-utils.c dcache.c \
c906108c 1420 rs6000-nat.c rs6000-tdep.c \
e81b020b 1421 s390-tdep.c s390-nat.c \
a196c81c 1422 ser-go32.c ser-pipe.c ser-tcp.c \
55ff77ac 1423 sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
386c036b
MK
1424 solib.c solib-irix.c solib-svr4.c solib-sunos.c \
1425 sparc-linux-tdep.c sparc-nat.c sparc-sol2-nat.c sparc-sol2-tdep.c \
1426 sparc-tdep.c sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-linux-nat.c \
1427 sparc64-linux-tdep.c sparc64-nat.c sparc64-sol2-tdep.c \
1428 sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
1e067c66 1429 sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
566626fa 1430 sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
c906108c 1431 symm-tdep.c symm-nat.c \
b9e1c0d6 1432 vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
c906108c 1433 win32-nat.c \
0c884e17 1434 xcoffread.c xcoffsolib.c \
a5d61f66 1435 xstormy16-tdep.c
c906108c 1436
f92d4a7b
AC
1437# Some files need explict build rules (due to -Werror problems) or due
1438# to sub-directory fun 'n' games.
1439
1440# Provide explicit rule/dependency - works for more makes.
1441copying.o: $(srcdir)/copying.c
1442 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c
1443
1444hpux-thread.o: $(srcdir)/hpux-thread.c
1445 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1446 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce \
1447 $(srcdir)/hpux-thread.c
1448
030292b7
DJ
1449# main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR.
1450main.o: main.c
1451 $(CC) -c $(INTERNAL_CFLAGS) $(TARGET_SYSTEM_ROOT_DEFINE) \
1452 -DBINDIR=\"$(bindir)\" $(srcdir)/main.c
1453
1c8c7407
AC
1454# FIXME: cagney/2004-09-16: "gnu-v3-abi.c", with a GCC 3.4 compiler,
1455# gets a "assignment from incompatible pointer type" warning. The
1456# return types - "enum gnu_v3_dtor_kinds" vs "enum ctor_kinds" -
1457# conflict.
1458gnu-v3-abi.o: $(srcdir)/gnu-v3-abi.c
1459 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
1460 $(srcdir)/gnu-v3-abi.c
1461
cf6a0e73
AC
1462# FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral
1463# errors. It turns out that that is the least of monitor.c's
1464# problems. The function print_vsprintf appears to be using
1465# va_arg(long) to extract CORE_ADDR parameters - something that
1466# definitly will not work. "monitor.c" needs to be rewritten so that
1467# it doesn't use format strings and instead uses callbacks.
1468monitor.o: $(srcdir)/monitor.c
1469 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/monitor.c
1470
4677b456
AC
1471# FIXME: cagney/2003-08-10: Do not try to build "printcmd.c" with
1472# -Wformat-nonliteral. It needs to be overhauled so that it doesn't
1473# pass user input strings as the format parameter to host printf
1474# function calls.
1475printcmd.o: $(srcdir)/printcmd.c
1476 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/printcmd.c
1477
f92d4a7b
AC
1478# FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1479# match output format strings.
1480procfs.o: $(srcdir)/procfs.c
1481 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/procfs.c
1482
57725d84
EZ
1483# FIXME: Thread-db.o gets warnings because the definitions of the register
1484# sets are different from kernel to kernel.
ed89d175 1485linux-thread-db.o: $(srcdir)/linux-thread-db.c
57725d84 1486 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
ed89d175 1487 $(srcdir)/linux-thread-db.c
57725d84 1488
f92d4a7b
AC
1489v850ice.o: $(srcdir)/v850ice.c
1490 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 1491 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
f92d4a7b
AC
1492 $(GDBTK_CFLAGS) \
1493 $(srcdir)/v850ice.c
1494
84367a3e 1495
ddc9cd0f
AC
1496# Message files. Based on code in gcc/Makefile.in.
1497
1498# Rules for generating translated message descriptions. Disabled by
1499# autoconf if the tools are not available.
1500
1501.SUFFIXES: .po .gmo .pox .pot
1502.PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
1503
1504all-po: $(CATALOGS)
1505
1506# This notation should be acceptable to all Make implementations used
1507# by people who are interested in updating .po files.
1508update-po: $(CATALOGS:.gmo=.pox)
1509
1510# N.B. We do not attempt to copy these into $(srcdir). The snapshot
1511# script does that.
1512.po.gmo:
1513 -test -d po || mkdir po
1514 $(GMSGFMT) --statistics -o $@ $<
1515
1516# The new .po has to be gone over by hand, so we deposit it into
1517# build/po with a different extension. If build/po/$(PACKAGE).pot
1518# exists, use it (it was just created), else use the one in srcdir.
1519.po.pox:
1520 -test -d po || mkdir po
1521 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
1522 then echo po/$(PACKAGE).pot; \
1523 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
1524
1525# This rule has to look for .gmo modules in both srcdir and the cwd,
1526# and has to check that we actually have a catalog for each language,
1527# in case they weren't built or included with the distribution.
1528install-po:
1529 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
1530 cats="$(CATALOGS)"; for cat in $$cats; do \
1531 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1532 if [ -f $$cat ]; then :; \
1533 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1534 else continue; \
1535 fi; \
1536 dir=$(localedir)/$$lang/LC_MESSAGES; \
1537 echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
1538 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
1539 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1540 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1541 done
1542uninstall-po:
1543 cats="$(CATALOGS)"; for cat in $$cats; do \
1544 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1545 if [ -f $$cat ]; then :; \
1546 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1547 else continue; \
1548 fi; \
1549 dir=$(localedir)/$$lang/LC_MESSAGES; \
1550 rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
1551 done
1552# Delete po/*.gmo only if we are not building in the source directory.
1553clean-po:
1554 -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
1555
1556# Rule for regenerating the message template (gdb.pot). Instead of
1557# forcing everyone to edit POTFILES.in, which proved impractical, this
1558# rule has no dependencies and always regenerates gdb.pot. This is
1559# relatively harmless since the .po files do not directly depend on
1560# it. The .pot file is left in the build directory. Since GDB's
1561# Makefile lacks a cannonical list of sources (missing xm, tm and nm
1562# files) force this rule.
1563$(PACKAGE).pot: po/$(PACKAGE).pot
1564po/$(PACKAGE).pot: force
1565 -test -d po || mkdir po
1566 sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
1567
84367a3e 1568
0e0d15ca 1569#
1517c6d1 1570# YACC/LEX dependencies
0e0d15ca 1571#
8132723e
AC
1572# LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
1573# exist in srcdir, then compiled in objdir to LANG-exp.o. If we
1574# said LANG-exp.c rather than ./c-exp.c some makes would
1575# sometimes re-write it into $(srcdir)/c-exp.c. Remove bogus
1517c6d1 1576# decls for malloc/realloc/free which conflict with everything else.
8132723e 1577# Strictly speaking c-exp.c should therefore depend on
1517c6d1 1578# Makefile.in, but that was a pretty big annoyance.
0e0d15ca 1579
8132723e
AC
1580.SUFFIXES: .y .l
1581.y.c:
00937274 1582 $(SHELL) $(YLWRAP) "$(YACC)" $< y.tab.c $@.tmp -- $(YFLAGS)
1517c6d1
AC
1583 -sed -e '/extern.*malloc/d' \
1584 -e '/extern.*realloc/d' \
1585 -e '/extern.*free/d' \
1586 -e '/include.*malloc.h/d' \
2941da8c
MC
1587 -e 's/\([^x]\)malloc/\1xmalloc/g' \
1588 -e 's/\([^x]\)realloc/\1xrealloc/g' \
91092ee5 1589 -e '/^#line.*y.tab.c/d' \
8132723e
AC
1590 < $@.tmp > $@.new
1591 -rm $@.tmp
1592 mv $@.new ./$*.c
1593.l.c:
23485554
PH
1594 if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
1595 $(FLEX) -o$@ $< && \
1596 rm -f $@.new && \
1597 sed -e '/extern.*malloc/d' \
1598 -e '/extern.*realloc/d' \
1599 -e '/extern.*free/d' \
1600 -e '/include.*malloc.h/d' \
2941da8c
MC
1601 -e 's/\([^x]\)malloc/\1xmalloc/g' \
1602 -e 's/\([^x]\)realloc/\1xrealloc/g' \
23485554
PH
1603 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
1604 < $@ > $@.new && \
1605 rm -f $@ && \
1606 mv $@.new $@; \
1607 elif [ -f $@ ]; then \
8132723e 1608 echo "Warning: $*.c older than $*.l and flex not available."; \
23485554
PH
1609 else \
1610 echo "$@ missing and flex not available."; \
1611 false; \
1517c6d1 1612 fi
8132723e
AC
1613
1614.PRECIOUS: ada-exp.c ada-lex.c
1615.PRECIOUS: c-exp.c
1616.PRECIOUS: f-exp.c
1617.PRECIOUS: jv-exp.c
1618.PRECIOUS: m2-exp.c
1619.PRECIOUS: objc-exp.c
1620.PRECIOUS: p-exp.c
0e0d15ca 1621
e822a2a0 1622#
1517c6d1 1623# gdb/ dependencies
e822a2a0 1624#
f92d4a7b 1625
e822a2a0 1626abug-rom.o: abug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
32eeb91a 1627 $(serial_h) $(regcache_h) $(m68k_tdep_h)
35124113
AC
1628ada-exp.o: ada-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1629 $(parser_defs_h) $(language_h) $(ada_lang_h) $(bfd_h) $(symfile_h) \
1630 $(objfiles_h) $(frame_h) $(block_h) $(ada_lex_c)
1631ada-lang.o: ada-lang.c $(defs_h) $(gdb_string_h) $(demangle_h) \
1632 $(gdb_regex_h) $(frame_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) \
1633 $(expression_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
1634 $(inferior_h) $(symfile_h) $(objfiles_h) $(breakpoint_h) \
1635 $(gdbcore_h) $(hashtab_h) $(gdb_obstack_h) $(ada_lang_h) \
1636 $(completer_h) $(gdb_stat_h) $(ui_out_h) $(block_h) $(infcall_h) \
60250e8b 1637 $(dictionary_h) $(exceptions_h)
e822a2a0
AC
1638ada-typeprint.o: ada-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) \
1639 $(symtab_h) $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) \
1640 $(target_h) $(command_h) $(gdbcmd_h) $(language_h) $(demangle_h) \
1641 $(c_lang_h) $(typeprint_h) $(ada_lang_h) $(gdb_string_h)
35124113
AC
1642ada-valprint.o: ada-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1643 $(gdbtypes_h) $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \
60250e8b
AC
1644 $(language_h) $(annotate_h) $(ada_lang_h) $(c_lang_h) $(infcall_h) \
1645 $(exceptions_h)
e822a2a0 1646aix-thread.o: aix-thread.c $(defs_h) $(gdb_assert_h) $(gdbthread_h) \
0759e0bf
AC
1647 $(target_h) $(inferior_h) $(regcache_h) $(gdbcmd_h) $(ppc_tdep_h) \
1648 $(gdb_string_h)
91092ee5 1649alphabsd-nat.o: alphabsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
0d6e4ad7 1650 $(alpha_tdep_h) $(alphabsd_tdep_h) $(inf_ptrace_h) $(gregset_h)
91092ee5
AC
1651alphabsd-tdep.o: alphabsd-tdep.c $(defs_h) $(alpha_tdep_h) \
1652 $(alphabsd_tdep_h)
1653alphafbsd-tdep.o: alphafbsd-tdep.c $(defs_h) $(value_h) $(osabi_h) \
1654 $(alpha_tdep_h)
baa490c4 1655alpha-linux-tdep.o: alpha-linux-tdep.c $(defs_h) $(frame_h) $(gdb_assert_h) \
91092ee5 1656 $(osabi_h) $(alpha_tdep_h)
8f285956
RH
1657alpha-mdebug-tdep.o: alpha-mdebug-tdep.c $(defs_h) $(frame_h) \
1658 $(frame_unwind_h) $(frame_base_h) $(symtab_h) $(gdbcore_h) \
5f6a2351 1659 $(block_h) $(gdb_assert_h) $(alpha_tdep_h) $(mdebugread_h)
91092ee5
AC
1660alpha-nat.o: alpha-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \
1661 $(gdbcore_h) $(target_h) $(regcache_h) $(alpha_tdep_h) $(gregset_h)
2ca8ae21 1662alphanbsd-tdep.o: alphanbsd-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
527ca6bb
MK
1663 $(regcache_h) $(value_h) $(osabi_h) $(gdb_string_h) $(alpha_tdep_h) \
1664 $(alphabsd_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h)
91092ee5
AC
1665alpha-osf1-tdep.o: alpha-osf1-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1666 $(value_h) $(osabi_h) $(gdb_string_h) $(objfiles_h) $(alpha_tdep_h)
1667alpha-tdep.o: alpha-tdep.c $(defs_h) $(doublest_h) $(frame_h) \
1668 $(frame_unwind_h) $(frame_base_h) $(dwarf2_frame_h) $(inferior_h) \
1669 $(symtab_h) $(value_h) $(gdbcmd_h) $(gdbcore_h) $(dis_asm_h) \
1670 $(symfile_h) $(objfiles_h) $(gdb_string_h) $(linespec_h) \
1671 $(regcache_h) $(reggroups_h) $(arch_utils_h) $(osabi_h) $(block_h) \
35124113 1672 $(infcall_h) $(elf_bfd_h) $(alpha_tdep_h)
cced5e27 1673amd64bsd-nat.o: amd64bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
6a5c78a3
MK
1674 $(target_h) $(gdb_assert_h) $(amd64_tdep_h) $(amd64_nat_h) \
1675 $(inf_ptrace_h)
91092ee5 1676amd64fbsd-nat.o: amd64fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
6a5c78a3
MK
1677 $(target_h) $(gdb_assert_h) $(fbsd_nat_h) $(amd64_tdep_h) \
1678 $(amd64_nat_h) $(bsd_kvm_h)
91092ee5 1679amd64fbsd-tdep.o: amd64fbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
1c02b2a5
MK
1680 $(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_assert_h) \
1681 $(gdb_string_h) $(amd64_tdep_h) $(bsd_uthread_h) $(solib_svr4_h)
9c1488cb
MK
1682amd64-linux-nat.o: amd64-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1683 $(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
1684 $(gdb_proc_service_h) $(gregset_h) $(amd64_tdep_h) \
187e21d1
MK
1685 $(i386_linux_tdep_h) $(amd64_nat_h)
1686amd64-linux-tdep.o: amd64-linux-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
35124113
AC
1687 $(regcache_h) $(osabi_h) $(symtab_h) $(gdb_string_h) $(amd64_tdep_h) \
1688 $(solib_svr4_h)
b2100910 1689amd64-nat.o: amd64-nat.c $(defs_h) $(gdbarch_h) $(regcache_h) \
8050c72f 1690 $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(amd64_tdep_h)
6a5c78a3
MK
1691amd64nbsd-nat.o: amd64nbsd-nat.c $(defs_h) $(target_h) $(gdb_assert_h) \
1692 $(amd64_tdep_h) $(amd64_nat_h)
cced5e27 1693amd64nbsd-tdep.o: amd64nbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
911bc6ee 1694 $(gdbcore_h) $(osabi_h) $(symtab_h) $(gdb_assert_h) $(amd64_tdep_h) \
86f6f8e7 1695 $(nbsd_tdep_h) $(solib_svr4_h)
492cf391 1696amd64obsd-nat.o: amd64obsd-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
dba24537
AC
1697 $(target_h) $(gdb_assert_h) $(amd64_tdep_h) $(amd64_nat_h) \
1698 $(bsd_kvm_h)
26d08f08 1699amd64obsd-tdep.o: amd64obsd-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
911bc6ee
MK
1700 $(symtab_h) $(objfiles_h) $(osabi_h) $(regset_h) $(target_h) \
1701 $(gdb_assert_h) $(gdb_string_h) $(amd64_tdep_h) $(i387_tdep_h) \
1702 $(solib_svr4_h)
0bbc026e
JM
1703amd64-sol2-tdep.o: amd64-sol2-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \
1704 $(regcache_h) $(osabi_h) $(symtab_h) $(gdb_string_h) $(amd64_tdep_h) \
1705 $(solib_svr4_h)
9c1488cb
MK
1706amd64-tdep.o: amd64-tdep.c $(defs_h) $(arch_utils_h) $(block_h) \
1707 $(dummy_frame_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
1708 $(inferior_h) $(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(regcache_h) \
1709 $(regset_h) $(symfile_h) $(gdb_assert_h) $(amd64_tdep_h) \
1710 $(i387_tdep_h)
e822a2a0
AC
1711annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) \
1712 $(gdbtypes_h) $(breakpoint_h)
1bfd8a83
AC
1713arch-utils.o: arch-utils.c $(defs_h) $(arch_utils_h) $(buildsym_h) \
1714 $(gdbcmd_h) $(inferior_h) $(gdb_string_h) $(regcache_h) \
35124113
AC
1715 $(gdb_assert_h) $(sim_regno_h) $(gdbcore_h) $(osabi_h) $(version_h) \
1716 $(floatformat_h)
ed9a39eb 1717arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
b2100910 1718 $(gdb_string_h) $(regcache_h) $(arm_tdep_h) $(gregset_h)
1b0cad1c 1719arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \
e822a2a0 1720 $(gdbtypes_h) $(floatformat_h) $(gdbcore_h) $(frame_h) $(regcache_h) \
b2100910
AC
1721 $(doublest_h) $(solib_svr4_h) $(osabi_h) $(arm_tdep_h) \
1722 $(glibc_tdep_h)
70f80edf
JT
1723armnbsd-nat.o: armnbsd-nat.c $(defs_h) $(arm_tdep_h) $(inferior_h) \
1724 $(regcache_h) $(gdbcore_h)
527ca6bb
MK
1725armnbsd-tdep.o: armnbsd-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \
1726 $(arm_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h)
91092ee5 1727arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \
9ab9195f 1728 $(gdbcore_h) $(gdb_string_h) $(dis_asm_h) $(regcache_h) \
c14a44d5
AC
1729 $(doublest_h) $(value_h) $(arch_utils_h) $(osabi_h) \
1730 $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(arm_tdep_h) \
91092ee5 1731 $(gdb_sim_arm_h) $(elf_bfd_h) $(coff_internal_h) $(elf_arm_h) \
c14a44d5 1732 $(gdb_assert_h) $(bfd_in2_h) $(libcoff_h)
20d286a5
AC
1733auxv.o: auxv.c $(defs_h) $(target_h) $(gdbtypes_h) $(command_h) \
1734 $(inferior_h) $(valprint_h) $(gdb_assert_h) $(auxv_h) \
1735 $(elf_common_h)
91092ee5
AC
1736avr-tdep.o: avr-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1737 $(frame_base_h) $(trad_frame_h) $(gdbcmd_h) $(gdbcore_h) \
1738 $(inferior_h) $(symfile_h) $(arch_utils_h) $(regcache_h) \
a89aa300 1739 $(gdb_string_h) $(dis_asm_h)
e822a2a0
AC
1740ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) \
1741 $(value_h) $(expression_h) $(command_h) $(gdbcmd_h) $(frame_h) \
7b83296f
AC
1742 $(target_h) $(ax_h) $(ax_gdb_h) $(gdb_string_h) $(block_h) \
1743 $(regcache_h)
e822a2a0 1744ax-general.o: ax-general.c $(defs_h) $(ax_h) $(value_h) $(gdb_string_h)
b2100910
AC
1745bcache.o: bcache.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(gdb_string_h) \
1746 $(gdb_assert_h)
bba2d28d
AC
1747bfd-target.o: bfd-target.c $(defs_h) $(target_h) $(bfd_target_h) \
1748 $(gdb_assert_h) $(gdb_string_h)
9219021c
DC
1749block.o: block.c $(defs_h) $(block_h) $(symtab_h) $(symfile_h) \
1750 $(gdb_obstack_h) $(cp_support_h)
0c0b39de
AC
1751blockframe.o: blockframe.c $(defs_h) $(symtab_h) $(bfd_h) $(objfiles_h) \
1752 $(frame_h) $(gdbcore_h) $(value_h) $(target_h) $(inferior_h) \
1753 $(annotate_h) $(regcache_h) $(gdb_assert_h) $(dummy_frame_h) \
1754 $(command_h) $(gdbcmd_h) $(block_h)
e822a2a0
AC
1755breakpoint.o: breakpoint.c $(defs_h) $(symtab_h) $(frame_h) $(breakpoint_h) \
1756 $(gdbtypes_h) $(expression_h) $(gdbcore_h) $(gdbcmd_h) $(value_h) \
1757 $(command_h) $(inferior_h) $(gdbthread_h) $(target_h) $(language_h) \
1758 $(gdb_string_h) $(demangle_h) $(annotate_h) $(symfile_h) \
91092ee5 1759 $(objfiles_h) $(source_h) $(linespec_h) $(completer_h) $(gdb_h) \
0759e0bf 1760 $(ui_out_h) $(cli_script_h) $(gdb_assert_h) $(block_h) $(solist_h) \
60250e8b 1761 $(observer_h) $(exceptions_h) $(gdb_events_h)
35124113 1762bsd-kvm.o: bsd-kvm.c $(defs_h) $(cli_cmds_h) $(command_h) $(frame_h) \
0759e0bf
AC
1763 $(regcache_h) $(target_h) $(value_h) $(gdbcore_h) $(gdb_assert_h) \
1764 $(readline_h) $(bsd_kvm_h)
c1043fc2
AC
1765bsd-uthread.o: bsd-uthread.c $(defs_h) $(gdbcore_h) $(gdbthread_h) \
1766 $(inferior_h) $(objfiles_h) $(observer_h) $(regcache_h) $(solist_h) \
1767 $(symfile_h) $(target_h) $(gdb_assert_h) $(gdb_obstack_h) \
1768 $(bsd_uthread_h)
04ea0df1 1769buildsym.o: buildsym.c $(defs_h) $(bfd_h) $(gdb_obstack_h) $(symtab_h) \
bf4ae8b2 1770 $(symfile_h) $(objfiles_h) $(gdbtypes_h) $(gdb_assert_h) \
0759e0bf
AC
1771 $(complaints_h) $(gdb_string_h) $(expression_h) $(bcache_h) \
1772 $(filenames_h) $(macrotab_h) $(demangle_h) $(block_h) \
91092ee5 1773 $(cp_support_h) $(dictionary_h) $(buildsym_h) $(stabsread_h)
0c0b39de
AC
1774c-exp.o: c-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1775 $(parser_defs_h) $(language_h) $(c_lang_h) $(bfd_h) $(symfile_h) \
1776 $(objfiles_h) $(charset_h) $(block_h) $(cp_support_h)
91092ee5
AC
1777charset.o: charset.c $(defs_h) $(charset_h) $(gdbcmd_h) $(gdb_assert_h) \
1778 $(gdb_string_h)
e822a2a0
AC
1779c-lang.o: c-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
1780 $(parser_defs_h) $(language_h) $(c_lang_h) $(valprint_h) \
9a3d7dfd 1781 $(macroscope_h) $(gdb_assert_h) $(charset_h) $(gdb_string_h) \
91092ee5 1782 $(demangle_h) $(cp_support_h)
e822a2a0
AC
1783cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h) $(gdb_string_h) \
1784 $(gdb_assert_h)
91092ee5
AC
1785coff-pe-read.o: coff-pe-read.c $(coff_pe_read_h) $(bfd_h) $(defs_h) \
1786 $(gdbtypes_h) $(symtab_h) $(symfile_h) $(objfiles_h)
04ea0df1
AC
1787coffread.o: coffread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(demangle_h) \
1788 $(breakpoint_h) $(bfd_h) $(gdb_obstack_h) $(gdb_string_h) \
0c0b39de
AC
1789 $(coff_internal_h) $(libcoff_h) $(objfiles_h) $(buildsym_h) \
1790 $(gdb_stabs_h) $(stabsread_h) $(complaints_h) $(target_h) \
1791 $(gdb_assert_h) $(block_h) $(dictionary_h) $(coff_pe_read_h)
91092ee5
AC
1792coff-solib.o: coff-solib.c $(defs_h) $(frame_h) $(bfd_h) $(gdbcore_h) \
1793 $(symtab_h) $(symfile_h) $(objfiles_h)
b9caf505
AC
1794complaints.o: complaints.c $(defs_h) $(complaints_h) $(gdb_assert_h) \
1795 $(command_h) $(gdbcmd_h)
e822a2a0 1796completer.o: completer.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
b2100910 1797 $(filenames_h) $(language_h) $(cli_decode_h) $(gdbcmd_h) \
dbda9972 1798 $(readline_h) $(completer_h)
e822a2a0
AC
1799copying.o: copying.c $(defs_h) $(command_h) $(gdbcmd_h)
1800core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(regcache_h) \
1801 $(gdb_dirent_h) $(gdb_stat_h)
e822a2a0
AC
1802corefile.o: corefile.c $(defs_h) $(gdb_string_h) $(inferior_h) $(symtab_h) \
1803 $(command_h) $(gdbcmd_h) $(bfd_h) $(target_h) $(gdbcore_h) \
60250e8b 1804 $(dis_asm_h) $(gdb_stat_h) $(completer_h) $(exceptions_h)
b2100910
AC
1805corelow.o: corelow.c $(defs_h) $(arch_utils_h) $(gdb_string_h) $(frame_h) \
1806 $(inferior_h) $(symtab_h) $(command_h) $(bfd_h) $(target_h) \
1807 $(gdbcore_h) $(gdbthread_h) $(regcache_h) $(regset_h) $(symfile_h) \
60250e8b
AC
1808 $(exec_h) $(readline_h) $(observer_h) $(gdb_assert_h) \
1809 $(exceptions_h)
91092ee5
AC
1810core-regset.o: core-regset.c $(defs_h) $(command_h) $(gdbcore_h) \
1811 $(inferior_h) $(target_h) $(gdb_string_h) $(gregset_h)
91092ee5
AC
1812cp-abi.o: cp-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(command_h) $(gdbcmd_h) \
1813 $(ui_out_h) $(gdb_string_h)
9219021c 1814cp-namespace.o: cp-namespace.c $(defs_h) $(cp_support_h) $(gdb_obstack_h) \
5c4e30ca 1815 $(symtab_h) $(symfile_h) $(gdb_assert_h) $(block_h) $(objfiles_h) \
b368761e 1816 $(gdbtypes_h) $(dictionary_h) $(command_h) $(frame_h)
9219021c 1817cp-support.o: cp-support.c $(defs_h) $(cp_support_h) $(gdb_string_h) \
b6429628 1818 $(demangle_h) $(gdb_assert_h) $(gdbcmd_h) $(dictionary_h) \
b2100910
AC
1819 $(objfiles_h) $(frame_h) $(symtab_h) $(block_h) $(complaints_h) \
1820 $(gdbtypes_h)
91092ee5
AC
1821cpu32bug-rom.o: cpu32bug-rom.c $(defs_h) $(gdbcore_h) $(target_h) \
1822 $(monitor_h) $(serial_h) $(regcache_h) $(m68k_tdep_h)
04ea0df1
AC
1823cp-valprint.o: cp-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
1824 $(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \
1825 $(demangle_h) $(annotate_h) $(gdb_string_h) $(c_lang_h) $(target_h) \
cf309262 1826 $(cp_abi_h) $(valprint_h) $(cp_support_h) $(language_h)
dbda9972
AC
1827cris-tdep.o: cris-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
1828 $(frame_base_h) $(trad_frame_h) $(dwarf2_frame_h) $(symtab_h) \
1829 $(inferior_h) $(gdbtypes_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) \
1830 $(value_h) $(opcode_cris_h) $(arch_utils_h) $(regcache_h) \
1831 $(gdb_assert_h) $(objfiles_h) $(solib_h) $(solib_svr4_h) \
1832 $(gdb_string_h) $(dis_asm_h)
91092ee5
AC
1833c-typeprint.o: c-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
1834 $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
1835 $(language_h) $(demangle_h) $(c_lang_h) $(typeprint_h) $(cp_abi_h) \
1836 $(gdb_string_h)
1837c-valprint.o: c-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
b2100910
AC
1838 $(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \
1839 $(c_lang_h) $(cp_abi_h) $(target_h)
5cb2fe25 1840# OBSOLETE d10v-tdep.o: d10v-tdep.c
e822a2a0 1841dbug-rom.o: dbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
32eeb91a 1842 $(serial_h) $(regcache_h) $(m68k_tdep_h)
e822a2a0
AC
1843dbxread.o: dbxread.c $(defs_h) $(gdb_string_h) $(gdb_obstack_h) \
1844 $(gdb_stat_h) $(symtab_h) $(breakpoint_h) $(target_h) $(gdbcore_h) \
9ab9195f 1845 $(libaout_h) $(objfiles_h) $(buildsym_h) $(stabsread_h) \
0759e0bf 1846 $(gdb_stabs_h) $(demangle_h) $(complaints_h) $(cp_abi_h) \
91f54576 1847 $(gdb_assert_h) $(gdb_string_h) $(aout_aout64_h) $(aout_stab_gnu_h)
e822a2a0
AC
1848dcache.o: dcache.c $(defs_h) $(dcache_h) $(gdbcmd_h) $(gdb_string_h) \
1849 $(gdbcore_h) $(target_h)
e822a2a0
AC
1850demangle.o: demangle.c $(defs_h) $(command_h) $(gdbcmd_h) $(demangle_h) \
1851 $(gdb_string_h)
de4f826b
DC
1852dictionary.o: dictionary.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
1853 $(buildsym_h) $(gdb_assert_h) $(dictionary_h)
e822a2a0
AC
1854dink32-rom.o: dink32-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1855 $(serial_h) $(symfile_h) $(inferior_h) $(regcache_h)
91092ee5 1856disasm.o: disasm.c $(defs_h) $(target_h) $(value_h) $(ui_out_h) \
a89aa300 1857 $(gdb_string_h) $(disasm_h) $(gdbcore_h) $(dis_asm_h)
e822a2a0
AC
1858doublest.o: doublest.c $(defs_h) $(doublest_h) $(floatformat_h) \
1859 $(gdb_assert_h) $(gdb_string_h) $(gdbtypes_h)
cdcd5552
AC
1860dsrec.o: dsrec.c $(defs_h) $(serial_h) $(srec_h) $(gdb_assert_h) \
1861 $(gdb_string_h)
9c1412c1 1862dummy-frame.o: dummy-frame.c $(defs_h) $(dummy_frame_h) $(regcache_h) \
00905d52 1863 $(frame_h) $(inferior_h) $(gdb_assert_h) $(frame_unwind_h) \
96860204 1864 $(command_h) $(gdbcmd_h) $(gdb_string_h)
e822a2a0 1865dve3900-rom.o: dve3900-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
56cea623
AC
1866 $(serial_h) $(inferior_h) $(command_h) $(gdb_string_h) $(regcache_h) \
1867 $(mips_tdep_h)
4c2df51b 1868dwarf2expr.o: dwarf2expr.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) \
91092ee5
AC
1869 $(gdbcore_h) $(elf_dwarf2_h) $(dwarf2expr_h)
1870dwarf2-frame.o: dwarf2-frame.c $(defs_h) $(dwarf2expr_h) $(elf_dwarf2_h) \
1871 $(frame_h) $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) \
1872 $(gdbtypes_h) $(symtab_h) $(objfiles_h) $(regcache_h) \
1873 $(gdb_assert_h) $(gdb_string_h) $(complaints_h) $(dwarf2_frame_h)
4c2df51b 1874dwarf2loc.o: dwarf2loc.c $(defs_h) $(ui_out_h) $(value_h) $(frame_h) \
91092ee5
AC
1875 $(gdbcore_h) $(target_h) $(inferior_h) $(ax_h) $(ax_gdb_h) \
1876 $(regcache_h) $(objfiles_h) $(elf_dwarf2_h) $(dwarf2expr_h) \
1877 $(dwarf2loc_h) $(gdb_string_h)
e822a2a0 1878dwarf2read.o: dwarf2read.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \
0c0b39de
AC
1879 $(objfiles_h) $(elf_dwarf2_h) $(buildsym_h) $(demangle_h) \
1880 $(expression_h) $(filenames_h) $(macrotab_h) $(language_h) \
1881 $(complaints_h) $(bcache_h) $(dwarf2expr_h) $(dwarf2loc_h) \
dba24537
AC
1882 $(cp_support_h) $(hashtab_h) $(command_h) $(gdbcmd_h) \
1883 $(gdb_string_h) $(gdb_assert_h)
0c0b39de
AC
1884dwarfread.o: dwarfread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(objfiles_h) \
1885 $(elf_dwarf_h) $(buildsym_h) $(demangle_h) $(expression_h) \
1886 $(language_h) $(complaints_h) $(gdb_string_h)
e822a2a0
AC
1887elfread.o: elfread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(elf_bfd_h) \
1888 $(elf_mips_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \
1889 $(stabsread_h) $(gdb_stabs_h) $(complaints_h) $(demangle_h)
1890environ.o: environ.c $(defs_h) $(environ_h) $(gdb_string_h)
1891eval.o: eval.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1892 $(value_h) $(expression_h) $(target_h) $(frame_h) $(language_h) \
5f9769d1 1893 $(f_lang_h) $(cp_abi_h) $(infcall_h) $(objc_lang_h) $(block_h) \
d3cbe7ef 1894 $(parser_defs_h) $(cp_support_h)
e822a2a0 1895event-loop.o: event-loop.c $(defs_h) $(event_loop_h) $(event_top_h) \
60250e8b 1896 $(gdb_string_h) $(exceptions_h)
e822a2a0 1897event-top.o: event-top.c $(defs_h) $(top_h) $(inferior_h) $(target_h) \
4389a95a 1898 $(terminal_h) $(event_loop_h) $(event_top_h) $(interps_h) \
60250e8b 1899 $(exceptions_h) $(gdbcmd_h) $(readline_h) $(readline_history_h)
c1043fc2
AC
1900exceptions.o: exceptions.c $(defs_h) $(exceptions_h) $(breakpoint_h) \
1901 $(target_h) $(inferior_h) $(annotate_h) $(ui_out_h) $(gdb_assert_h) \
e06e2353 1902 $(gdb_string_h) $(serial_h)
e822a2a0
AC
1903exec.o: exec.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) $(gdbcmd_h) \
1904 $(language_h) $(symfile_h) $(objfiles_h) $(completer_h) $(value_h) \
dbda9972 1905 $(exec_h) $(readline_h) $(gdb_string_h) $(gdbcore_h) $(gdb_stat_h) \
ea53e89f 1906 $(xcoffsolib_h) $(observer_h)
e822a2a0 1907expprint.o: expprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
eb8bc282
AC
1908 $(value_h) $(language_h) $(parser_defs_h) $(user_regs_h) $(target_h) \
1909 $(gdb_string_h) $(block_h)
578c1c03
MK
1910fbsd-nat.o: fbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h) \
1911 $(regset_h) $(gdb_assert_h) $(gdb_string_h) $(elf_bfd_h) \
1912 $(fbsd_nat_h)
0c0b39de
AC
1913f-exp.o: f-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
1914 $(parser_defs_h) $(language_h) $(f_lang_h) $(bfd_h) $(symfile_h) \
1915 $(objfiles_h) $(block_h)
e822a2a0
AC
1916findvar.o: findvar.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(frame_h) \
1917 $(value_h) $(gdbcore_h) $(inferior_h) $(target_h) $(gdb_string_h) \
1918 $(gdb_assert_h) $(floatformat_h) $(symfile_h) $(regcache_h) \
eb8bc282 1919 $(user_regs_h) $(block_h)
91092ee5
AC
1920f-lang.o: f-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
1921 $(expression_h) $(parser_defs_h) $(language_h) $(f_lang_h) \
1922 $(valprint_h) $(value_h)
e822a2a0
AC
1923fork-child.o: fork-child.c $(defs_h) $(gdb_string_h) $(frame_h) \
1924 $(inferior_h) $(target_h) $(gdb_wait_h) $(gdb_vfork_h) $(gdbcore_h) \
1925 $(terminal_h) $(gdbthread_h) $(command_h)
0cad6aec
AC
1926frame-base.o: frame-base.c $(defs_h) $(frame_base_h) $(frame_h) \
1927 $(gdb_obstack_h)
367e21d8 1928frame.o: frame.c $(defs_h) $(frame_h) $(target_h) $(value_h) $(inferior_h) \
eb8bc282 1929 $(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(user_regs_h) \
da62e633
AC
1930 $(gdb_obstack_h) $(dummy_frame_h) $(sentinel_frame_h) $(gdbcore_h) \
1931 $(annotate_h) $(language_h) $(frame_unwind_h) $(frame_base_h) \
60250e8b 1932 $(command_h) $(gdbcmd_h) $(observer_h) $(objfiles_h) $(exceptions_h)
494cca16 1933frame-unwind.o: frame-unwind.c $(defs_h) $(frame_h) $(frame_unwind_h) \
41fe5eb3 1934 $(gdb_assert_h) $(dummy_frame_h) $(gdb_obstack_h)
8050c72f 1935frv-linux-tdep.o: frv-linux-tdep.c $(defs_h) $(target_h) $(frame_h) \
35124113
AC
1936 $(osabi_h) $(elf_bfd_h) $(elf_frv_h) $(frv_tdep_h) $(trad_frame_h) \
1937 $(frame_unwind_h)
0c0b39de
AC
1938frv-tdep.o: frv-tdep.c $(defs_h) $(gdb_string_h) $(inferior_h) $(gdbcore_h) \
1939 $(arch_utils_h) $(regcache_h) $(frame_h) $(frame_unwind_h) \
1940 $(frame_base_h) $(trad_frame_h) $(dis_asm_h) $(gdb_assert_h) \
ed1bd989 1941 $(sim_regno_h) $(gdb_sim_frv_h) $(opcodes_frv_desc_h) $(symtab_h) \
7d9b040b 1942 $(elf_bfd_h) $(elf_frv_h) $(osabi_h) $(infcall_h) $(frv_tdep_h)
91092ee5
AC
1943f-typeprint.o: f-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
1944 $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
1945 $(f_lang_h) $(gdb_string_h)
1946f-valprint.o: f-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1947 $(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \
1948 $(f_lang_h) $(frame_h) $(gdbcore_h) $(command_h) $(block_h)
1bfd8a83
AC
1949gcore.o: gcore.c $(defs_h) $(elf_bfd_h) $(infcall_h) $(inferior_h) \
1950 $(gdbcore_h) $(objfiles_h) $(symfile_h) $(cli_decode_h) \
1951 $(gdb_assert_h)
b66d6d2e 1952gdbarch.o: gdbarch.c $(defs_h) $(arch_utils_h) $(gdbcmd_h) $(inferior_h) \
c14a44d5 1953 $(symcat_h) $(floatformat_h) $(gdb_assert_h) $(gdb_string_h) \
0c0b39de 1954 $(gdb_events_h) $(reggroups_h) $(osabi_h) $(gdb_obstack_h)
91092ee5
AC
1955gdb.o: gdb.c $(defs_h) $(main_h) $(gdb_string_h) $(interps_h)
1956gdb-events.o: gdb-events.c $(defs_h) $(gdb_events_h) $(gdbcmd_h)
e822a2a0
AC
1957gdbtypes.o: gdbtypes.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
1958 $(symfile_h) $(objfiles_h) $(gdbtypes_h) $(expression_h) \
1959 $(language_h) $(target_h) $(value_h) $(demangle_h) $(complaints_h) \
1960 $(gdbcmd_h) $(wrapper_h) $(cp_abi_h) $(gdb_assert_h)
b2100910
AC
1961glibc-tdep.o: glibc-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \
1962 $(objfiles_h) $(glibc_tdep_h)
e822a2a0
AC
1963gnu-nat.o: gnu-nat.c $(gdb_string_h) $(defs_h) $(inferior_h) $(symtab_h) \
1964 $(value_h) $(language_h) $(target_h) $(gdb_wait_h) $(gdbcmd_h) \
91092ee5
AC
1965 $(gdbcore_h) $(gdbthread_h) $(gdb_assert_h) $(gdb_obstack_h) \
1966 $(gnu_nat_h) $(exc_request_S_h) $(notify_S_h) $(process_reply_S_h) \
1967 $(msg_reply_S_h) $(exc_request_U_h) $(msg_U_h)
529acb48 1968gnu-v2-abi.o: gnu-v2-abi.c $(defs_h) $(gdb_string_h) $(symtab_h) \
6b08edad
AC
1969 $(gdbtypes_h) $(value_h) $(demangle_h) $(cp_abi_h) $(cp_support_h) \
1970 $(gnu_v2_abi_h)
b2100910
AC
1971gnu-v3-abi.o: gnu-v3-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(cp_support_h) \
1972 $(demangle_h) $(gdb_assert_h) $(gdb_string_h)
e822a2a0
AC
1973go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) $(gdb_wait_h) $(gdbcore_h) \
1974 $(command_h) $(gdbcmd_h) $(floatformat_h) $(buildsym_h) \
1975 $(i387_tdep_h) $(i386_tdep_h) $(value_h) $(regcache_h) \
1976 $(gdb_string_h)
e822a2a0 1977hpacc-abi.o: hpacc-abi.c $(defs_h) $(value_h) $(gdb_regex_h) $(gdb_string_h) \
6b08edad 1978 $(gdbtypes_h) $(gdbcore_h) $(cp_abi_h) $(gnu_v2_abi_h)
35124113
AC
1979hppabsd-nat.o: hppabsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
1980 $(hppa_tdep_h)
1981hppabsd-tdep.o: hppabsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
1982 $(regcache_h) $(regset_h) $(gdb_assert_h) $(gdb_string_h) \
1983 $(hppa_tdep_h) $(solib_svr4_h)
eeb8076c 1984hppa-hpux-nat.o: hppa-hpux-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
eee22bf8
MK
1985 $(target_h) $(gdb_assert_h) $(hppa_tdep_h) $(inf_ptrace_h) \
1986 $(inf_ttrace_h)
91092ee5 1987hppa-hpux-tdep.o: hppa-hpux-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \
60250e8b
AC
1988 $(osabi_h) $(frame_h) $(frame_unwind_h) $(trad_frame_h) $(symtab_h) \
1989 $(objfiles_h) $(inferior_h) $(infcall_h) $(observer_h) \
1990 $(hppa_tdep_h) $(solib_som_h) $(solib_pa64_h) $(regset_h) \
1991 $(exceptions_h) $(gdb_string_h)
35124113
AC
1992hppa-linux-nat.o: hppa-linux-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
1993 $(gdb_string_h) $(inferior_h) $(hppa_tdep_h) $(gregset_h)
959464ff
RC
1994hppa-linux-tdep.o: hppa-linux-tdep.c $(defs_h) $(gdbcore_h) $(osabi_h) \
1995 $(target_h) $(objfiles_h) $(solib_svr4_h) $(glibc_tdep_h) \
35124113
AC
1996 $(frame_unwind_h) $(trad_frame_h) $(dwarf2_frame_h) $(value_h) \
1997 $(hppa_tdep_h) $(elf_common_h)
1998hppa-tdep.o: hppa-tdep.c $(defs_h) $(bfd_h) $(inferior_h) $(regcache_h) \
1999 $(completer_h) $(osabi_h) $(gdb_assert_h) $(arch_utils_h) \
2000 $(symtab_h) $(dis_asm_h) $(trad_frame_h) $(frame_unwind_h) \
2001 $(frame_base_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) \
0e56aeaf 2002 $(hppa_tdep_h)
e822a2a0
AC
2003hpread.o: hpread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(hp_symtab_h) \
2004 $(syms_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \
2005 $(complaints_h) $(gdb_stabs_h) $(gdbtypes_h) $(demangle_h) \
60250e8b 2006 $(solib_som_h) $(gdb_assert_h) $(hppa_tdep_h) $(gdb_string_h)
e822a2a0 2007hpux-thread.o: hpux-thread.c $(defs_h) $(gdbthread_h) $(target_h) \
60250e8b
AC
2008 $(inferior_h) $(regcache_h) $(gdb_stat_h) $(gdbcore_h) \
2009 $(hppa_tdep_h)
91092ee5 2010i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
9692934b
MK
2011 $(gdb_assert_h) $(i386_tdep_h) $(i387_tdep_h) $(i386bsd_nat_h) \
2012 $(inf_ptrace_h)
91092ee5
AC
2013i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
2014 $(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_string_h) $(i386_tdep_h)
2015i386-cygwin-tdep.o: i386-cygwin-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \
2016 $(i386_tdep_h)
c14a44d5 2017i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
9692934b
MK
2018 $(target_h) $(fbsd_nat_h) $(i386_tdep_h) $(i386bsd_nat_h) \
2019 $(bsd_kvm_h)
fa565c2b
MK
2020i386fbsd-tdep.o: i386fbsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \
2021 $(osabi_h) $(regcache_h) $(gdb_assert_h) $(i386_tdep_h) \
2022 $(i387_tdep_h) $(bsd_uthread_h) $(solib_svr4_h)
91092ee5 2023i386gnu-nat.o: i386gnu-nat.c $(defs_h) $(inferior_h) $(floatformat_h) \
3303a276
MK
2024 $(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) \
2025 $(gnu_nat_h) $(i387_tdep_h) $(gregset_h)
91092ee5 2026i386gnu-tdep.o: i386gnu-tdep.c $(defs_h) $(osabi_h) $(i386_tdep_h)
e822a2a0 2027i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
c14a44d5
AC
2028 $(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
2029 $(gregset_h) $(i387_tdep_h) $(i386_tdep_h) $(i386_linux_tdep_h) \
2030 $(gdb_proc_service_h)
e7ee86a9 2031i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
b2100910 2032 $(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \
5cb2fe25
AC
2033 $(dwarf2_frame_h) $(gdb_string_h) $(i386_tdep_h) \
2034 $(i386_linux_tdep_h) $(glibc_tdep_h) $(solib_svr4_h)
e822a2a0 2035i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h)
9062529b 2036i386nbsd-nat.o: i386nbsd-nat.c $(defs_h) $(gdbcore_h) $(regcache_h) \
9692934b 2037 $(target_h) $(i386_tdep_h) $(i386bsd_nat_h) $(bsd_kvm_h)
911bc6ee
MK
2038i386nbsd-tdep.o: i386nbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
2039 $(gdbcore_h) $(regcache_h) $(regset_h) $(osabi_h) $(symtab_h) \
2040 $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h) \
2041 $(nbsd_tdep_h) $(solib_svr4_h)
60250e8b
AC
2042i386-nto-tdep.o: i386-nto-tdep.c $(defs_h) $(frame_h) $(osabi_h) \
2043 $(regcache_h) $(target_h) $(gdb_assert_h) $(gdb_string_h) \
2044 $(i386_tdep_h) $(i387_tdep_h) $(nto_tdep_h) $(solib_svr4_h)
c14a44d5 2045i386obsd-nat.o: i386obsd-nat.c $(defs_h) $(i386_tdep_h)
911bc6ee
MK
2046i386obsd-tdep.o: i386obsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \
2047 $(gdbcore_h) $(regcache_h) $(regset_h) $(symtab_h) $(objfiles_h) \
2048 $(osabi_h) $(target_h) $(gdb_assert_h) $(gdb_string_h) \
a28109e0 2049 $(i386_tdep_h) $(i387_tdep_h) $(solib_svr4_h) $(bsd_uthread_h)
6b16acab 2050i386-sol2-nat.o: i386-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \
0159bdbf 2051 $(amd64_nat_h) $(amd64_tdep_h)
91092ee5 2052i386-sol2-tdep.o: i386-sol2-tdep.c $(defs_h) $(value_h) $(osabi_h) \
d9f8c85b 2053 $(gdb_string_h) $(i386_tdep_h) $(solib_svr4_h)
e822a2a0 2054i386-stub.o: i386-stub.c
acd5c798 2055i386-tdep.o: i386-tdep.c $(defs_h) $(arch_utils_h) $(command_h) \
6405b0a6
MK
2056 $(dummy_frame_h) $(dwarf2_frame_h) $(doublest_h) $(floatformat_h) \
2057 $(frame_h) $(frame_base_h) $(frame_unwind_h) $(inferior_h) \
2058 $(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(osabi_h) $(regcache_h) \
1bfd8a83
AC
2059 $(reggroups_h) $(regset_h) $(symfile_h) $(symtab_h) $(target_h) \
2060 $(value_h) $(dis_asm_h) $(gdb_assert_h) $(gdb_string_h) \
2061 $(i386_tdep_h) $(i387_tdep_h)
e822a2a0
AC
2062i386v4-nat.o: i386v4-nat.c $(defs_h) $(value_h) $(inferior_h) $(regcache_h) \
2063 $(i386_tdep_h) $(i387_tdep_h) $(gregset_h)
91092ee5
AC
2064i386v-nat.o: i386v-nat.c $(defs_h) $(frame_h) $(inferior_h) $(language_h) \
2065 $(gdbcore_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \
2066 $(i386_tdep_h)
2067i387-tdep.o: i387-tdep.c $(defs_h) $(doublest_h) $(floatformat_h) $(frame_h) \
2068 $(gdbcore_h) $(inferior_h) $(language_h) $(regcache_h) $(value_h) \
2069 $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h)
2555fe1a 2070ia64-linux-nat.o: ia64-linux-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \
17d92a02
AC
2071 $(target_h) $(gdbcore_h) $(regcache_h) $(ia64_tdep_h) $(gdb_wait_h) \
2072 $(gregset_h)
9fc9f5e2 2073ia64-linux-tdep.o: ia64-linux-tdep.c $(defs_h) $(ia64_tdep_h) \
b33e8514 2074 $(arch_utils_h) $(gdbcore_h) $(regcache_h) $(osabi_h)
9ab9195f 2075ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) $(gdbcore_h) \
c14a44d5
AC
2076 $(arch_utils_h) $(floatformat_h) $(regcache_h) $(reggroups_h) \
2077 $(frame_h) $(frame_base_h) $(frame_unwind_h) $(doublest_h) \
91092ee5 2078 $(value_h) $(gdb_assert_h) $(objfiles_h) $(elf_common_h) \
60250e8b
AC
2079 $(elf_bfd_h) $(dis_asm_h) $(infcall_h) $(osabi_h) $(ia64_tdep_h) \
2080 $(elf_ia64_h) $(libunwind_frame_h) $(libunwind_ia64_h)
04714b91
AC
2081infcall.o: infcall.c $(defs_h) $(breakpoint_h) $(target_h) $(regcache_h) \
2082 $(inferior_h) $(gdb_assert_h) $(block_h) $(gdbcore_h) $(language_h) \
96860204
AC
2083 $(objfiles_h) $(gdbcmd_h) $(command_h) $(gdb_string_h) $(infcall_h) \
2084 $(dummy_frame_h)
5bf970f9 2085inf-child.o: inf-child.c $(defs_h) $(regcache_h) $(memattr_h) $(symtab_h) \
7681f339 2086 $(target_h) $(inferior_h) $(gdb_string_h)
e822a2a0
AC
2087infcmd.o: infcmd.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2088 $(frame_h) $(inferior_h) $(environ_h) $(value_h) $(gdbcmd_h) \
2089 $(symfile_h) $(gdbcore_h) $(target_h) $(language_h) $(symfile_h) \
2090 $(objfiles_h) $(completer_h) $(ui_out_h) $(event_top_h) \
b2100910
AC
2091 $(parser_defs_h) $(regcache_h) $(reggroups_h) $(block_h) \
2092 $(gdb_assert_h)
91092ee5 2093inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \
60250e8b 2094 $(event_top_h) $(inf_loop_h) $(remote_h) $(exceptions_h)
e822a2a0 2095inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \
44270758
AC
2096 $(serial_h) $(terminal_h) $(target_h) $(gdbthread_h) $(gdb_string_h) \
2097 $(inflow_h)
2c4a536d 2098inf-ptrace.o: inf-ptrace.c $(defs_h) $(command_h) $(inferior_h) $(inflow_h) \
8785ced0
MK
2099 $(gdbcore_h) $(observer_h) $(regcache_h) $(gdb_assert_h) \
2100 $(gdb_string_h) $(gdb_ptrace_h) $(gdb_wait_h) $(inf_child_h)
8cbba7c8
MK
2101infptrace.o: infptrace.c $(defs_h) $(command_h) $(frame_h) $(gdbcore_h) \
2102 $(inferior_h) $(regcache_h) $(target_h) $(gdb_assert_h) \
2103 $(gdb_wait_h) $(gdb_string_h) $(gdb_dirent_h) $(gdb_ptrace_h)
e822a2a0 2104infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \
60250e8b
AC
2105 $(inferior_h) $(exceptions_h) $(breakpoint_h) $(gdb_wait_h) \
2106 $(gdbcore_h) $(gdbcmd_h) $(cli_script_h) $(target_h) $(gdbthread_h) \
2107 $(annotate_h) $(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) \
2108 $(value_h) $(observer_h) $(language_h) $(gdb_assert_h)
e822a2a0 2109inftarg.o: inftarg.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
35124113
AC
2110 $(gdbcore_h) $(command_h) $(gdb_stat_h) $(observer_h) $(gdb_wait_h) \
2111 $(inflow_h)
60250e8b
AC
2112inf-ttrace.o: inf-ttrace.c $(defs_h) $(command_h) $(gdbcore_h) \
2113 $(gdbthread_h) $(inferior_h) $(observer_h) $(target_h) \
2114 $(gdb_assert_h) $(gdb_string_h) $(inf_child_h) $(inf_ttrace_h)
4389a95a
AC
2115interps.o: interps.c $(defs_h) $(gdbcmd_h) $(ui_out_h) $(event_loop_h) \
2116 $(event_top_h) $(interps_h) $(completer_h) $(gdb_string_h) \
c1043fc2 2117 $(gdb_events_h) $(gdb_assert_h) $(top_h) $(exceptions_h)
20be272b
CV
2118iq2000-tdep.o: iq2000-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
2119 $(frame_unwind_h) $(dwarf2_frame_h) $(gdbtypes_h) $(value_h) \
2120 $(dis_asm_h) $(gdb_string_h) $(arch_utils_h) $(regcache_h) \
2121 $(osabi_h) $(gdbcore_h)
1b0cad1c 2122irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \
b2100910 2123 $(regcache_h) $(gdb_string_h) $(gregset_h) $(mips_tdep_h)
0c0b39de
AC
2124jv-exp.o: jv-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
2125 $(parser_defs_h) $(language_h) $(jv_lang_h) $(bfd_h) $(symfile_h) \
2126 $(objfiles_h) $(block_h)
e822a2a0
AC
2127jv-lang.o: jv-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2128 $(parser_defs_h) $(language_h) $(gdbtypes_h) $(symtab_h) \
2129 $(symfile_h) $(objfiles_h) $(gdb_string_h) $(value_h) $(c_lang_h) \
de4f826b 2130 $(jv_lang_h) $(gdbcore_h) $(block_h) $(demangle_h) $(dictionary_h)
e822a2a0
AC
2131jv-typeprint.o: jv-typeprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
2132 $(value_h) $(demangle_h) $(jv_lang_h) $(gdb_string_h) $(typeprint_h) \
2133 $(c_lang_h) $(cp_abi_h)
2134jv-valprint.o: jv-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
2135 $(gdbcore_h) $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \
2136 $(language_h) $(jv_lang_h) $(c_lang_h) $(annotate_h) $(gdb_string_h)
17732724 2137kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) $(target_h) $(gdb_string_h) \
e822a2a0 2138 $(kod_h)
91092ee5 2139kod-cisco.o: kod-cisco.c $(defs_h) $(gdb_string_h) $(kod_h)
e822a2a0
AC
2140language.o: language.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2141 $(value_h) $(gdbcmd_h) $(expression_h) $(language_h) $(target_h) \
9a3d7dfd 2142 $(parser_defs_h) $(jv_lang_h) $(demangle_h)
b2100910
AC
2143libunwind-frame.o: libunwind-frame.c $(defs_h) $(inferior_h) $(frame_h) \
2144 $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
2145 $(symtab_h) $(objfiles_h) $(regcache_h) $(gdb_assert_h) \
2146 $(gdb_string_h) $(libunwind_frame_h) $(complaints_h)
91092ee5
AC
2147linespec.o: linespec.c $(defs_h) $(symtab_h) $(frame_h) $(command_h) \
2148 $(symfile_h) $(objfiles_h) $(source_h) $(demangle_h) $(value_h) \
2149 $(completer_h) $(cp_abi_h) $(parser_defs_h) $(block_h) \
17d92a02 2150 $(objc_lang_h) $(linespec_h) $(exceptions_h)
d6b0e80f
AC
2151linux-nat.o: linux-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdb_string_h) \
2152 $(gdb_wait_h) $(gdb_assert_h) $(linux_nat_h) $(gdbthread_h) \
dba24537
AC
2153 $(gdbcmd_h) $(regcache_h) $(elf_bfd_h) $(gregset_h) $(gdbcore_h) \
2154 $(gdbthread_h) $(gdb_stat_h)
60250e8b
AC
2155linux-thread-db.o: linux-thread-db.c $(defs_h) $(gdb_assert_h) \
2156 $(gdb_proc_service_h) $(gdb_thread_db_h) $(bfd_h) $(gdbthread_h) \
2157 $(inferior_h) $(symfile_h) $(objfiles_h) $(target_h) $(regcache_h) \
2158 $(solib_svr4_h)
e822a2a0
AC
2159lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
2160 $(gdbcore_h) $(regcache_h)
0c0b39de
AC
2161m2-exp.o: m2-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(language_h) \
2162 $(value_h) $(parser_defs_h) $(m2_lang_h) $(bfd_h) $(symfile_h) \
2163 $(objfiles_h) $(block_h)
e822a2a0
AC
2164m2-lang.o: m2-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2165 $(parser_defs_h) $(language_h) $(m2_lang_h) $(c_lang_h) \
2166 $(valprint_h)
2167m2-typeprint.o: m2-typeprint.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \
2168 $(expression_h) $(value_h) $(gdbcore_h) $(target_h) $(m2_lang_h)
2169m2-valprint.o: m2-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
a8d6eb4a 2170 $(m2_lang_h) $(c_lang_h)
9b32d526
KI
2171m32r-linux-nat.o: m32r-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
2172 $(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \
34a17005 2173 $(gregset_h) $(m32r_tdep_h)
9b32d526
KI
2174m32r-linux-tdep.o: m32r-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
2175 $(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \
60250e8b
AC
2176 $(regset_h) $(gdb_string_h) $(glibc_tdep_h) $(solib_svr4_h) \
2177 $(trad_frame_h) $(frame_unwind_h) $(m32r_tdep_h)
2178m32r-rom.o: m32r-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(exceptions_h) \
2179 $(monitor_h) $(serial_h) $(symtab_h) $(command_h) $(gdbcmd_h) \
2180 $(symfile_h) $(gdb_string_h) $(objfiles_h) $(inferior_h) \
2181 $(regcache_h)
e822a2a0 2182m32r-stub.o: m32r-stub.c $(syscall_h)
91092ee5
AC
2183m32r-tdep.o: m32r-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
2184 $(frame_base_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \
2185 $(gdb_string_h) $(value_h) $(inferior_h) $(symfile_h) $(objfiles_h) \
5cb2fe25
AC
2186 $(osabi_h) $(language_h) $(arch_utils_h) $(regcache_h) \
2187 $(trad_frame_h) $(dis_asm_h) $(gdb_assert_h) $(m32r_tdep_h)
91092ee5
AC
2188m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
2189 $(frame_base_h) $(dwarf2_frame_h) $(trad_frame_h) $(symtab_h) \
e822a2a0
AC
2190 $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(gdb_string_h) $(value_h) \
2191 $(inferior_h) $(dis_asm_h) $(symfile_h) $(objfiles_h) \
91092ee5
AC
2192 $(arch_utils_h) $(regcache_h) $(reggroups_h) $(target_h) \
2193 $(opcode_m68hc11_h) $(elf_m68hc11_h) $(elf_bfd_h)
35124113 2194m68kbsd-nat.o: m68kbsd-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
bcfca652
MK
2195 $(regcache_h) $(gdb_assert_h) $(m68k_tdep_h) $(inf_ptrace_h) \
2196 $(bsd_kvm_h)
35124113
AC
2197m68kbsd-tdep.o: m68kbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
2198 $(regcache_h) $(regset_h) $(gdb_assert_h) $(gdb_string_h) \
2199 $(m68k_tdep_h) $(solib_svr4_h)
c906108c 2200m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
d0b45d99 2201 $(language_h) $(gdbcore_h) $(gdb_string_h) $(regcache_h) \
91092ee5 2202 $(m68k_tdep_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \
ac5eccb7 2203 $(gregset_h)
91092ee5
AC
2204m68klinux-tdep.o: m68klinux-tdep.c $(defs_h) $(gdbcore_h) $(doublest_h) \
2205 $(floatformat_h) $(frame_h) $(target_h) $(gdb_string_h) \
2206 $(gdbtypes_h) $(osabi_h) $(regcache_h) $(objfiles_h) $(symtab_h) \
60250e8b
AC
2207 $(m68k_tdep_h) $(trad_frame_h) $(frame_unwind_h) $(glibc_tdep_h) \
2208 $(solib_svr4_h)
91092ee5 2209m68k-stub.o: m68k-stub.c
3f244638 2210m68k-tdep.o: m68k-tdep.c $(defs_h) $(dwarf2_frame_h) $(frame_h) \
35124113
AC
2211 $(frame_base_h) $(frame_unwind_h) $(floatformat_h) $(symtab_h) \
2212 $(gdbcore_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \
f595cb19
MK
2213 $(inferior_h) $(regcache_h) $(arch_utils_h) $(osabi_h) $(dis_asm_h) \
2214 $(m68k_tdep_h) $(gregset_h)
bf2ca189 2215m88kbsd-nat.o: m88kbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
34a17005 2216 $(target_h) $(m88k_tdep_h) $(inf_ptrace_h)
bf2ca189
MK
2217m88k-tdep.o: m88k-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) $(frame_h) \
2218 $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
2219 $(regcache_h) $(regset_h) $(symtab_h) $(trad_frame_h) $(value_h) \
35124113 2220 $(gdb_assert_h) $(gdb_string_h) $(m88k_tdep_h)
e822a2a0
AC
2221macrocmd.o: macrocmd.c $(defs_h) $(macrotab_h) $(macroexp_h) $(macroscope_h) \
2222 $(command_h) $(gdbcmd_h)
2223macroexp.o: macroexp.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(macrotab_h) \
2224 $(macroexp_h) $(gdb_assert_h)
91092ee5
AC
2225macroscope.o: macroscope.c $(defs_h) $(macroscope_h) $(symtab_h) $(source_h) \
2226 $(target_h) $(frame_h) $(inferior_h) $(complaints_h)
e822a2a0
AC
2227macrotab.o: macrotab.c $(defs_h) $(gdb_obstack_h) $(splay_tree_h) \
2228 $(symtab_h) $(symfile_h) $(objfiles_h) $(macrotab_h) $(gdb_assert_h) \
2229 $(bcache_h) $(complaints_h)
2230main.o: main.c $(defs_h) $(top_h) $(target_h) $(inferior_h) $(symfile_h) \
60250e8b
AC
2231 $(gdbcore_h) $(exceptions_h) $(getopt_h) $(gdb_stat_h) \
2232 $(gdb_string_h) $(event_loop_h) $(ui_out_h) $(interps_h) $(main_h)
e822a2a0
AC
2233maint.o: maint.c $(defs_h) $(command_h) $(gdbcmd_h) $(symtab_h) \
2234 $(gdbtypes_h) $(demangle_h) $(gdbcore_h) $(expression_h) \
2235 $(language_h) $(symfile_h) $(objfiles_h) $(value_h) $(cli_decode_h)
04ea0df1 2236mdebugread.o: mdebugread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \
0c0b39de
AC
2237 $(objfiles_h) $(gdb_obstack_h) $(buildsym_h) $(stabsread_h) \
2238 $(complaints_h) $(demangle_h) $(gdb_assert_h) $(block_h) \
36b8628e
AC
2239 $(dictionary_h) $(mdebugread_h) $(gdb_stat_h) $(gdb_string_h) \
2240 $(bfd_h) $(coff_ecoff_h) $(libaout_h) $(aout_aout64_h) \
2241 $(aout_stab_gnu_h) $(expression_h)
88fe217c
RE
2242memattr.o: memattr.c $(defs_h) $(command_h) $(gdbcmd_h) $(memattr_h) \
2243 $(target_h) $(value_h) $(language_h) $(gdb_string_h)
91092ee5
AC
2244mem-break.o: mem-break.c $(defs_h) $(symtab_h) $(breakpoint_h) $(inferior_h) \
2245 $(target_h)
e822a2a0
AC
2246minsyms.o: minsyms.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \
2247 $(symfile_h) $(objfiles_h) $(demangle_h) $(value_h) $(cp_abi_h)
1a8da44d 2248mips64obsd-nat.o: mips64obsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
366e93e8 2249 $(target_h) $(mips_tdep_h) $(inf_ptrace_h)
760caeb8 2250mips64obsd-tdep.o: mips64obsd-tdep.c $(defs_h) $(osabi_h) $(regcache_h) \
4fb31ed0 2251 $(regset_h) $(trad_frame_h) $(tramp_frame_h) $(gdb_assert_h) \
8e763687 2252 $(gdb_string_h) $(mips_tdep_h) $(solib_svr4_h)
e822a2a0 2253mips-irix-tdep.o: mips-irix-tdep.c $(defs_h) $(osabi_h) $(elf_bfd_h)
6b753f60 2254mips-linux-nat.o: mips-linux-nat.c $(defs_h) $(mips_tdep_h)
d2b57b94 2255mips-linux-tdep.o: mips-linux-tdep.c $(defs_h) $(gdbcore_h) $(target_h) \
91092ee5 2256 $(solib_svr4_h) $(osabi_h) $(mips_tdep_h) $(gdb_string_h) \
2fdf551c
DJ
2257 $(gdb_assert_h) $(frame_h) $(regcache_h) $(trad_frame_h) \
2258 $(tramp_frame_h)
1a8da44d
AC
2259mips-mdebug-tdep.o: mips-mdebug-tdep.c $(defs_h) $(frame_h) $(mips_tdep_h) \
2260 $(trad_frame_h) $(block_h) $(symtab_h) $(objfiles_h) $(elf_mips_h) \
2261 $(elf_bfd_h) $(gdb_assert_h) $(frame_unwind_h) $(frame_base_h) \
36b8628e 2262 $(mips_mdebug_tdep_h) $(mdebugread_h)
257ce470 2263mipsnbsd-nat.o: mipsnbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
c6d1029f 2264 $(target_h) $(mips_tdep_h) $(mipsnbsd_tdep_h) $(inf_ptrace_h)
257ce470 2265mipsnbsd-tdep.o: mipsnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
d1180b0f
MK
2266 $(regset_h) $(target_h) $(value_h) $(osabi_h) $(gdb_assert_h) \
2267 $(gdb_string_h) $(nbsd_tdep_h) $(mipsnbsd_tdep_h) $(mips_tdep_h) \
2268 $(solib_svr4_h)
e822a2a0 2269mipsread.o: mipsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
0c0b39de
AC
2270 $(objfiles_h) $(buildsym_h) $(stabsread_h) $(coff_sym_h) \
2271 $(coff_internal_h) $(coff_ecoff_h) $(libcoff_h) $(libecoff_h) \
2272 $(elf_common_h) $(elf_mips_h)
91092ee5
AC
2273mips-tdep.o: mips-tdep.c $(defs_h) $(gdb_string_h) $(gdb_assert_h) \
2274 $(frame_h) $(inferior_h) $(symtab_h) $(value_h) $(gdbcmd_h) \
6a83354a
AC
2275 $(language_h) $(gdbcore_h) $(symfile_h) $(objfiles_h) $(gdbtypes_h) \
2276 $(target_h) $(arch_utils_h) $(regcache_h) $(osabi_h) $(mips_tdep_h) \
2277 $(block_h) $(reggroups_h) $(opcode_mips_h) $(elf_mips_h) \
2278 $(elf_bfd_h) $(symcat_h) $(sim_regno_h) $(dis_asm_h) \
0759e0bf
AC
2279 $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(infcall_h) \
2280 $(floatformat_h)
e822a2a0
AC
2281mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \
2282 $(regcache_h) $(gregset_h)
1a8da44d
AC
2283mn10300-tdep.o: mn10300-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) \
2284 $(gdbtypes_h) $(regcache_h) $(gdb_string_h) $(gdb_assert_h) \
2285 $(frame_h) $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) \
60250e8b
AC
2286 $(symtab_h) $(dwarf2_frame_h) $(regcache_h) $(mn10300_tdep_h)
2287monitor.o: monitor.c $(defs_h) $(gdbcore_h) $(target_h) $(exceptions_h) \
2288 $(gdb_string_h) $(command_h) $(serial_h) $(monitor_h) $(gdbcmd_h) \
2289 $(inferior_h) $(gdb_regex_h) $(srec_h) $(regcache_h)
3d9b49b0 2290nbsd-tdep.o: nbsd-tdep.c $(defs_h) $(gdb_string_h) $(solib_svr4_h)
e822a2a0 2291nlmread.o: nlmread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
fe898f56 2292 $(objfiles_h) $(buildsym_h) $(stabsread_h) $(block_h)
60250e8b
AC
2293nto-procfs.o: nto-procfs.c $(defs_h) $(gdb_dirent_h) $(exceptions_h) \
2294 $(gdb_string_h) $(gdbcore_h) $(inferior_h) $(target_h) $(objfiles_h) \
2295 $(gdbthread_h) $(nto_tdep_h) $(command_h) $(regcache_h)
91092ee5
AC
2296nto-tdep.o: nto-tdep.c $(gdb_stat_h) $(gdb_string_h) $(nto_tdep_h) $(top_h) \
2297 $(cli_decode_h) $(cli_cmds_h) $(inferior_h) $(gdbarch_h) $(bfd_h) \
2298 $(elf_bfd_h) $(solib_svr4_h) $(gdbcore_h)
8132723e
AC
2299objc-exp.o: objc-exp.c $(defs_h) $(gdb_string_h) $(expression_h) \
2300 $(objc_lang_h) $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
2301 $(bfd_h) $(symfile_h) $(objfiles_h) $(top_h) $(completer_h) \
2302 $(block_h)
a76c9d72
AF
2303objc-lang.o: objc-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2304 $(parser_defs_h) $(language_h) $(c_lang_h) $(objc_lang_h) \
60250e8b
AC
2305 $(exceptions_h) $(complaints_h) $(value_h) $(symfile_h) \
2306 $(objfiles_h) $(gdb_string_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) \
2307 $(frame_h) $(gdb_regex_h) $(regcache_h) $(block_h) $(infcall_h) \
2308 $(valprint_h) $(gdb_assert_h)
04ea0df1 2309objfiles.o: objfiles.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
5b123146
AC
2310 $(objfiles_h) $(gdb_stabs_h) $(target_h) $(bcache_h) $(mdebugread_h) \
2311 $(gdb_assert_h) $(gdb_stat_h) $(gdb_obstack_h) $(gdb_string_h) \
2312 $(hashtab_h) $(breakpoint_h) $(block_h) $(dictionary_h)
35124113
AC
2313observer.o: observer.c $(defs_h) $(observer_h) $(command_h) $(gdbcmd_h) \
2314 $(observer_inc)
e822a2a0 2315ocd.o: ocd.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) $(inferior_h) \
60250e8b
AC
2316 $(bfd_h) $(symfile_h) $(target_h) $(exceptions_h) $(gdbcmd_h) \
2317 $(objfiles_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(regcache_h)
91092ee5
AC
2318osabi.o: osabi.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(osabi_h) \
2319 $(arch_utils_h) $(gdbcmd_h) $(command_h) $(elf_bfd_h)
60250e8b
AC
2320pa64solib.o: pa64solib.c $(defs_h) $(frame_h) $(bfd_h) $(libhppa_h) \
2321 $(gdbcore_h) $(symtab_h) $(breakpoint_h) $(symfile_h) $(objfiles_h) \
2322 $(inferior_h) $(gdb_stabs_h) $(gdb_stat_h) $(gdbcmd_h) $(language_h) \
2323 $(regcache_h) $(exec_h) $(hppa_tdep_h)
e822a2a0
AC
2324parse.o: parse.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2325 $(frame_h) $(expression_h) $(value_h) $(command_h) $(language_h) \
2326 $(parser_defs_h) $(gdbcmd_h) $(symfile_h) $(inferior_h) \
91092ee5 2327 $(doublest_h) $(gdb_assert_h) $(block_h)
0c0b39de
AC
2328p-exp.o: p-exp.c $(defs_h) $(gdb_string_h) $(expression_h) $(value_h) \
2329 $(parser_defs_h) $(language_h) $(p_lang_h) $(bfd_h) $(symfile_h) \
2330 $(objfiles_h) $(block_h)
91092ee5
AC
2331p-lang.o: p-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2332 $(expression_h) $(parser_defs_h) $(language_h) $(p_lang_h) \
2333 $(valprint_h) $(value_h)
6e0ce711 2334ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) \
1b0cad1c 2335 $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \
e822a2a0 2336 $(objfiles_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(ppc_tdep_h) \
383f0f5b 2337 $(regcache_h) $(gdb_assert_h)
91092ee5
AC
2338ppcbug-rom.o: ppcbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2339 $(serial_h) $(regcache_h)
2555fe1a 2340ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdb_string_h) $(frame_h) \
383f0f5b
JB
2341 $(inferior_h) $(gdbcore_h) $(regcache_h) $(gdb_assert_h) \
2342 $(gdb_wait_h) $(gregset_h) $(ppc_tdep_h)
e822a2a0
AC
2343ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(frame_h) $(inferior_h) \
2344 $(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) \
8050c72f 2345 $(objfiles_h) $(regcache_h) $(value_h) $(osabi_h) $(regset_h) \
6b08edad
AC
2346 $(solib_svr4_h) $(ppc_tdep_h) $(trad_frame_h) $(frame_unwind_h) \
2347 $(tramp_frame_h)
35124113 2348ppcnbsd-nat.o: ppcnbsd-nat.c $(defs_h) $(inferior_h) $(gdb_assert_h) \
0759e0bf 2349 $(gdbcore_h) $(regcache_h) $(bsd_kvm_h) $(ppc_tdep_h) \
5bf970f9 2350 $(ppcnbsd_tdep_h) $(inf_ptrace_h)
7b112f9c 2351ppcnbsd-tdep.o: ppcnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \
91092ee5 2352 $(target_h) $(breakpoint_h) $(value_h) $(osabi_h) $(ppc_tdep_h) \
35124113
AC
2353 $(ppcnbsd_tdep_h) $(nbsd_tdep_h) $(tramp_frame_h) $(trad_frame_h) \
2354 $(gdb_assert_h) $(solib_svr4_h)
d195bc9f 2355ppcobsd-nat.o: ppcobsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
c79ac407 2356 $(ppc_tdep_h) $(ppcobsd_tdep_h)
d195bc9f 2357ppcobsd-tdep.o: ppcobsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
383f0f5b 2358 $(regcache_h) $(regset_h) $(gdb_assert_h) $(gdb_string_h) \
35124113 2359 $(ppc_tdep_h) $(ppcobsd_tdep_h) $(solib_svr4_h)
91092ee5 2360ppc-sysv-tdep.o: ppc-sysv-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
6066c3de 2361 $(regcache_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \
7d9b040b 2362 $(ppc_tdep_h) $(target_h) $(objfiles_h) $(infcall_h)
e822a2a0
AC
2363printcmd.o: printcmd.c $(defs_h) $(gdb_string_h) $(frame_h) $(symtab_h) \
2364 $(gdbtypes_h) $(value_h) $(language_h) $(expression_h) $(gdbcore_h) \
2365 $(gdbcmd_h) $(target_h) $(breakpoint_h) $(demangle_h) $(valprint_h) \
2366 $(annotate_h) $(symfile_h) $(objfiles_h) $(completer_h) $(ui_out_h) \
6a83354a 2367 $(gdb_assert_h) $(block_h) $(disasm_h) $(tui_h)
2555fe1a
AC
2368proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) $(completer_h) $(gdb_wait_h) \
2369 $(proc_utils_h)
0fda6bd2 2370proc-events.o: proc-events.c $(defs_h)
0fda6bd2 2371proc-flags.o: proc-flags.c $(defs_h)
91092ee5
AC
2372procfs.o: procfs.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
2373 $(elf_bfd_h) $(gdbcmd_h) $(gdbthread_h) $(gdb_wait_h) \
20d286a5
AC
2374 $(gdb_string_h) $(gdb_assert_h) $(inflow_h) $(auxv_h) \
2375 $(gdb_dirent_h) $(X_OK) $(gdb_stat_h) $(proc_utils_h) $(gregset_h)
e822a2a0
AC
2376proc-service.o: proc-service.c $(defs_h) $(gdb_proc_service_h) $(inferior_h) \
2377 $(symtab_h) $(target_h) $(gregset_h)
2378proc-why.o: proc-why.c $(defs_h) $(proc_utils_h)
91092ee5
AC
2379p-typeprint.o: p-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
2380 $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \
2381 $(language_h) $(p_lang_h) $(typeprint_h) $(gdb_string_h)
2382p-valprint.o: p-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \
2383 $(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \
2384 $(gdbcore_h) $(demangle_h) $(valprint_h) $(typeprint_h) \
d3cbe7ef
AC
2385 $(language_h) $(target_h) $(annotate_h) $(p_lang_h) $(cp_abi_h) \
2386 $(cp_support_h)
e822a2a0 2387regcache.o: regcache.c $(defs_h) $(inferior_h) $(target_h) $(gdbarch_h) \
b59ff9d5 2388 $(gdbcmd_h) $(regcache_h) $(reggroups_h) $(gdb_assert_h) \
f4c5303c 2389 $(gdb_string_h) $(gdbcmd_h) $(observer_h)
b59ff9d5
AC
2390reggroups.o: reggroups.c $(defs_h) $(reggroups_h) $(gdbtypes_h) \
2391 $(gdb_assert_h) $(regcache_h) $(command_h) $(gdbcmd_h)
be07a590 2392regset.o: regset.c $(defs_h) $(regset_h) $(gdb_assert_h)
91092ee5 2393remote.o: remote.c $(defs_h) $(gdb_string_h) $(inferior_h) $(bfd_h) \
60250e8b
AC
2394 $(symfile_h) $(exceptions_h) $(target_h) $(gdbcmd_h) $(objfiles_h) \
2395 $(gdb_stabs_h) $(gdbthread_h) $(remote_h) $(regcache_h) $(value_h) \
2396 $(gdb_assert_h) $(event_loop_h) $(event_top_h) $(inf_loop_h) \
6867ae3e 2397 $(serial_h) $(gdbcore_h) $(remote_fileio_h) $(observer_h)
e822a2a0
AC
2398remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) $(gdbarch_h) \
2399 $(inferior_h) $(target_h) $(value_h) $(command_h) $(gdb_string_h) \
60250e8b
AC
2400 $(exceptions_h) $(gdbcmd_h) $(serial_h) $(remote_utils_h) \
2401 $(symfile_h) $(regcache_h)
e822a2a0 2402remote-est.o: remote-est.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
32eeb91a 2403 $(serial_h) $(regcache_h) $(m68k_tdep_h)
91092ee5
AC
2404remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \
2405 $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) \
60250e8b 2406 $(exceptions_h) $(remote_fileio_h)
e822a2a0
AC
2407remote-hms.o: remote-hms.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
2408 $(serial_h) $(regcache_h)
b4b4b794
KI
2409remote-m32r-sdi.o: remote-m32r-sdi.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
2410 $(inferior_h) $(target_h) $(regcache_h) $(gdb_string_h) $(serial_h)
e822a2a0 2411remote-mips.o: remote-mips.c $(defs_h) $(inferior_h) $(bfd_h) $(symfile_h) \
60250e8b
AC
2412 $(gdbcmd_h) $(gdbcore_h) $(serial_h) $(target_h) $(exceptions_h) \
2413 $(remote_utils_h) $(gdb_string_h) $(gdb_stat_h) $(regcache_h) \
2414 $(mips_tdep_h)
e822a2a0
AC
2415remote-rdi.o: remote-rdi.c $(defs_h) $(gdb_string_h) $(frame_h) \
2416 $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \
2417 $(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \
2418 $(breakpoint_h) $(completer_h) $(regcache_h) $(arm_tdep_h) \
2419 $(rdi_share_ardi_h) $(rdi_share_adp_h) $(rdi_share_hsys_h)
2420remote-rdp.o: remote-rdp.c $(defs_h) $(inferior_h) $(value_h) \
2421 $(gdb_callback_h) $(command_h) $(symfile_h) $(remote_utils_h) \
2422 $(gdb_string_h) $(gdbcore_h) $(regcache_h) $(serial_h) $(arm_tdep_h)
2423remote-sds.o: remote-sds.c $(defs_h) $(gdb_string_h) $(frame_h) \
60250e8b
AC
2424 $(inferior_h) $(exceptions_h) $(bfd_h) $(symfile_h) $(target_h) \
2425 $(gdbcmd_h) $(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \
e822a2a0
AC
2426 $(regcache_h) $(serial_h)
2427remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) \
2428 $(gdb_string_h) $(terminal_h) $(target_h) $(gdbcore_h) \
2429 $(gdb_callback_h) $(gdb_remote_sim_h) $(remote_utils_h) $(command_h) \
b2100910 2430 $(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h)
e822a2a0
AC
2431remote-st.o: remote-st.c $(defs_h) $(gdbcore_h) $(target_h) $(gdb_string_h) \
2432 $(serial_h) $(regcache_h)
2433remote-utils.o: remote-utils.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \
2434 $(target_h) $(serial_h) $(gdbcore_h) $(inferior_h) $(remote_utils_h) \
17732724 2435 $(regcache_h)
e822a2a0 2436rom68k-rom.o: rom68k-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
32eeb91a 2437 $(serial_h) $(regcache_h) $(value_h) $(m68k_tdep_h)
e822a2a0
AC
2438rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
2439 $(xcoffsolib_h) $(symfile_h) $(objfiles_h) $(libbfd_h) $(bfd_h) \
60250e8b
AC
2440 $(exceptions_h) $(gdb_stabs_h) $(regcache_h) $(arch_utils_h) \
2441 $(ppc_tdep_h) $(exec_h) $(gdb_stat_h)
e822a2a0 2442rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(symtab_h) \
0c0b39de 2443 $(target_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) $(arch_utils_h) \
35124113
AC
2444 $(regcache_h) $(regset_h) $(doublest_h) $(value_h) $(parser_defs_h) \
2445 $(osabi_h) $(infcall_h) $(sim_regno_h) $(gdb_sim_ppc_h) \
2446 $(reggroups_h) $(libbfd_h) $(coff_internal_h) $(libcoff_h) \
d195bc9f
MK
2447 $(coff_xcoff_h) $(libxcoff_h) $(elf_bfd_h) $(solib_svr4_h) \
2448 $(ppc_tdep_h) $(gdb_assert_h) $(dis_asm_h) $(trad_frame_h) \
6b08edad 2449 $(frame_unwind_h) $(frame_base_h) $(reggroups_h)
d0f54f9d
JB
2450s390-nat.o: s390-nat.c $(defs_h) $(tm_h) $(regcache_h) $(inferior_h) \
2451 $(s390_tdep_h)
2452s390-tdep.o: s390-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \
226361c4
AC
2453 $(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(objfiles_h) \
2454 $(tm_h) $(__bfd_bfd_h) $(floatformat_h) $(regcache_h) \
a431654a
AC
2455 $(trad_frame_h) $(frame_base_h) $(frame_unwind_h) $(dwarf2_frame_h) \
2456 $(reggroups_h) $(regset_h) $(value_h) $(gdb_assert_h) $(dis_asm_h) \
2457 $(solib_svr4_h) $(s390_tdep_h)
e822a2a0
AC
2458scm-exp.o: scm-exp.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2459 $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \
2460 $(scm_tags_h)
2461scm-lang.o: scm-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \
2462 $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \
04714b91 2463 $(scm_tags_h) $(source_h) $(gdb_string_h) $(gdbcore_h) $(infcall_h)
e822a2a0
AC
2464scm-valprint.o: scm-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \
2465 $(expression_h) $(parser_defs_h) $(language_h) $(value_h) \
a8d6eb4a 2466 $(scm_lang_h) $(valprint_h) $(gdbcore_h) $(c_lang_h)
a94dd1fd
AC
2467sentinel-frame.o: sentinel-frame.c $(defs_h) $(regcache_h) \
2468 $(sentinel_frame_h) $(inferior_h) $(frame_unwind_h)
e822a2a0
AC
2469ser-e7kpc.o: ser-e7kpc.c $(defs_h) $(serial_h) $(gdb_string_h)
2470ser-go32.o: ser-go32.c $(defs_h) $(gdbcmd_h) $(serial_h) $(gdb_string_h)
91092ee5 2471serial.o: serial.c $(defs_h) $(serial_h) $(gdb_string_h) $(gdbcmd_h)
e822a2a0
AC
2472ser-pipe.o: ser-pipe.c $(defs_h) $(serial_h) $(ser_unix_h) $(gdb_vfork_h) \
2473 $(gdb_string_h)
2474ser-tcp.o: ser-tcp.c $(defs_h) $(serial_h) $(ser_unix_h) $(gdb_string_h)
2475ser-unix.o: ser-unix.c $(defs_h) $(serial_h) $(ser_unix_h) $(terminal_h) \
2476 $(gdb_string_h) $(event_loop_h)
e822a2a0 2477sh3-rom.o: sh3-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
9bbe19fb
DC
2478 $(serial_h) $(srec_h) $(arch_utils_h) $(regcache_h) $(gdb_string_h) \
2479 $(sh_tdep_h)
9ab9195f 2480sh64-tdep.o: sh64-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(objfiles_h) \
1bfd8a83
AC
2481 $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) \
2482 $(inferior_h) $(gdb_string_h) $(arch_utils_h) $(floatformat_h) \
2483 $(regcache_h) $(doublest_h) $(osabi_h) $(elf_bfd_h) $(solib_svr4_h) \
2484 $(elf_sh_h) $(gdb_sim_sh_h)
91092ee5
AC
2485shnbsd-nat.o: shnbsd-nat.c $(defs_h) $(inferior_h) $(sh_tdep_h) \
2486 $(shnbsd_tdep_h)
e822a2a0 2487shnbsd-tdep.o: shnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) $(value_h) \
91092ee5
AC
2488 $(osabi_h) $(solib_svr4_h) $(nbsd_tdep_h) $(sh_tdep_h) \
2489 $(shnbsd_tdep_h)
2490sh-stub.o: sh-stub.c
1bfd8a83 2491sh-tdep.o: sh-tdep.c $(defs_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
0c0b39de
AC
2492 $(dwarf2_frame_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \
2493 $(value_h) $(dis_asm_h) $(inferior_h) $(gdb_string_h) \
1bfd8a83
AC
2494 $(gdb_assert_h) $(arch_utils_h) $(floatformat_h) $(regcache_h) \
2495 $(doublest_h) $(osabi_h) $(sh_tdep_h) $(elf_bfd_h) $(solib_svr4_h) \
2496 $(elf_sh_h) $(gdb_sim_sh_h)
e822a2a0
AC
2497solib-aix5.o: solib-aix5.c $(defs_h) $(gdb_string_h) $(elf_external_h) \
2498 $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(gdbcore_h) \
2499 $(command_h) $(target_h) $(frame_h) $(gdb_regex_h) $(inferior_h) \
2500 $(environ_h) $(language_h) $(gdbcmd_h) $(solist_h)
91092ee5 2501solib.o: solib.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) $(symfile_h) \
60250e8b
AC
2502 $(objfiles_h) $(exceptions_h) $(gdbcore_h) $(command_h) $(target_h) \
2503 $(frame_h) $(gdb_regex_h) $(inferior_h) $(environ_h) $(language_h) \
2504 $(gdbcmd_h) $(completer_h) $(filenames_h) $(exec_h) $(solist_h) \
2505 $(observer_h) $(readline_h)
8050c72f
AC
2506solib-frv.o: solib-frv.c $(defs_h) $(gdb_string_h) $(inferior_h) \
2507 $(gdbcore_h) $(solist_h) $(frv_tdep_h) $(objfiles_h) $(symtab_h) \
2508 $(language_h) $(command_h) $(gdbcmd_h) $(elf_frv_h)
e822a2a0
AC
2509solib-irix.o: solib-irix.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \
2510 $(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h)
2511solib-legacy.o: solib-legacy.c $(defs_h) $(gdbcore_h) $(solib_svr4_h)
60250e8b 2512solib-null.o: solib-null.c $(defs_h) $(solist_h)
e822a2a0
AC
2513solib-osf.o: solib-osf.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \
2514 $(symfile_h) $(objfiles_h) $(target_h) $(inferior_h) $(solist_h)
60250e8b
AC
2515solib-pa64.o: solib-pa64.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \
2516 $(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) $(hppa_tdep_h) \
2517 $(solist_h) $(solib_pa64_h)
2518solib-som.o: solib-som.c $(defs_h) $(som_h) $(symtab_h) $(bfd_h) \
2519 $(symfile_h) $(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) \
2520 $(hppa_tdep_h) $(solist_h)
e822a2a0 2521solib-sunos.o: solib-sunos.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \
03cc47f7
MK
2522 $(symfile_h) $(objfiles_h) $(gdbcore_h) $(inferior_h) $(solist_h) \
2523 $(bcache_h) $(regcache_h)
e822a2a0
AC
2524solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \
2525 $(elf_mips_h) $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) \
2f4950cd
AC
2526 $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h) $(solib_svr4_h) \
2527 $(bfd_target_h) $(exec_h)
91092ee5
AC
2528sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) \
2529 $(inferior_h) $(gdb_stat_h) $(gdbcmd_h) $(gdbcore_h) $(regcache_h) \
1bfd8a83 2530 $(symfile_h) $(gdb_string_h) $(gregset_h)
e822a2a0
AC
2531somread.o: somread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \
2532 $(objfiles_h) $(buildsym_h) $(stabsread_h) $(gdb_stabs_h) \
17fe2d6e
MK
2533 $(complaints_h) $(gdb_string_h) $(demangle_h) $(som_h) $(libhppa_h) \
2534 $(solib_som_h)
60250e8b
AC
2535somsolib.o: somsolib.c $(defs_h) $(frame_h) $(bfd_h) $(som_h) $(libhppa_h) \
2536 $(gdbcore_h) $(symtab_h) $(breakpoint_h) $(symfile_h) $(objfiles_h) \
2537 $(inferior_h) $(gdb_stabs_h) $(gdb_stat_h) $(gdbcmd_h) $(language_h) \
2538 $(regcache_h) $(gdb_assert_h) $(exec_h) $(hppa_tdep_h)
e822a2a0
AC
2539source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \
2540 $(command_h) $(source_h) $(gdbcmd_h) $(frame_h) $(value_h) \
2541 $(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \
2542 $(symfile_h) $(objfiles_h) $(annotate_h) $(gdbtypes_h) $(linespec_h) \
dbda9972 2543 $(filenames_h) $(completer_h) $(ui_out_h) $(readline_h)
17d92a02
AC
2544sparc64fbsd-nat.o: sparc64fbsd-nat.c $(defs_h) $(target_h) $(fbsd_nat_h) \
2545 $(sparc64_tdep_h) $(sparc_nat_h)
b2100910
AC
2546sparc64fbsd-tdep.o: sparc64fbsd-tdep.c $(defs_h) $(frame_h) \
2547 $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
2548 $(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \
9e07977b 2549 $(sparc64_tdep_h) $(solib_svr4_h)
b2100910
AC
2550sparc64-linux-nat.o: sparc64-linux-nat.c $(defs_h) $(sparc64_tdep_h) \
2551 $(sparc_nat_h)
2552sparc64-linux-tdep.o: sparc64-linux-tdep.c $(defs_h) $(gdbarch_h) $(osabi_h) \
cc9784b6 2553 $(sparc64_tdep_h)
b2100910
AC
2554sparc64-nat.o: sparc64-nat.c $(defs_h) $(gdbarch_h) $(sparc64_tdep_h) \
2555 $(sparc_nat_h)
1b9445c2 2556sparc64nbsd-nat.o: sparc64nbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \
90f3cecd 2557 $(sparc64_tdep_h) $(sparc_nat_h) $(bsd_kvm_h)
b2100910
AC
2558sparc64nbsd-tdep.o: sparc64nbsd-tdep.c $(defs_h) $(frame_h) \
2559 $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
3510d1f2
MK
2560 $(symtab_h) $(objfiles_h) $(solib_svr4_h) $(trad_frame_h) \
2561 $(gdb_assert_h) $(gdb_string_h) $(sparc64_tdep_h) $(nbsd_tdep_h)
1e067c66 2562sparc64obsd-tdep.o: sparc64obsd-tdep.c $(defs_h) $(frame_h) \
3510d1f2
MK
2563 $(frame_unwind_h) $(osabi_h) $(regset_h) $(symtab_h) $(objfiles_h) \
2564 $(solib_svr4_h) $(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h)
b2100910
AC
2565sparc64-sol2-tdep.o: sparc64-sol2-tdep.c $(defs_h) $(frame_h) \
2566 $(frame_unwind_h) $(gdbarch_h) $(symtab_h) $(objfiles_h) $(osabi_h) \
70b216c8 2567 $(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h) $(solib_svr4_h)
b2100910
AC
2568sparc64-tdep.o: sparc64-tdep.c $(defs_h) $(arch_utils_h) $(floatformat_h) \
2569 $(frame_h) $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) \
2570 $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) $(osabi_h) \
2571 $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) $(gdb_string_h) \
2572 $(sparc64_tdep_h)
386c036b
MK
2573sparc-linux-tdep.o: sparc-linux-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2574 $(frame_unwind_h) $(gdbarch_h) $(gdbcore_h) $(osabi_h) $(regcache_h) \
2575 $(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \
2576 $(gdb_string_h) $(sparc_tdep_h)
baf92889
MK
2577sparc-nat.o: sparc-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \
2578 $(gdb_assert_h) $(gdb_string_h) $(gdb_wait_h) $(sparc_tdep_h) \
1b9445c2
MK
2579 $(sparc_nat_h) $(inf_ptrace_h)
2580sparcnbsd-nat.o: sparcnbsd-nat.c $(defs_h) $(regcache_h) $(target_h) \
a770d4ec 2581 $(sparc_tdep_h) $(sparc_nat_h) $(bsd_kvm_h)
b2100910
AC
2582sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2583 $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \
2584 $(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \
2585 $(gdb_string_h) $(sparc_tdep_h) $(nbsd_tdep_h)
566626fa
MK
2586sparcobsd-tdep.o: sparcobsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \
2587 $(frame_unwind_h) $(osabi_h) $(solib_svr4_h) $(symtab_h) \
be24b061 2588 $(trad_frame_h) $(gdb_assert_h) $(sparc_tdep_h)
386c036b
MK
2589sparc-sol2-nat.o: sparc-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \
2590 $(sparc_tdep_h) $(sparc64_tdep_h)
2591sparc-sol2-tdep.o: sparc-sol2-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \
2592 $(gdbcore_h) $(symtab_h) $(objfiles_h) $(osabi_h) $(regcache_h) \
2593 $(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \
70b216c8 2594 $(sparc_tdep_h) $(solib_svr4_h)
b2100910 2595sparc-stub.o: sparc-stub.c
386c036b 2596sparc-tdep.o: sparc-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) \
b2100910 2597 $(floatformat_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \
386c036b
MK
2598 $(gdbcore_h) $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) \
2599 $(osabi_h) $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) \
2600 $(gdb_string_h) $(sparc_tdep_h)
04ea0df1
AC
2601stabsread.o: stabsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(gdb_obstack_h) \
2602 $(symtab_h) $(gdbtypes_h) $(expression_h) $(symfile_h) $(objfiles_h) \
2603 $(aout_stab_gnu_h) $(libaout_h) $(aout_aout64_h) $(gdb_stabs_h) \
2604 $(buildsym_h) $(complaints_h) $(demangle_h) $(language_h) \
91092ee5 2605 $(doublest_h) $(cp_abi_h) $(cp_support_h) $(stabsread_h)
e822a2a0
AC
2606stack.o: stack.c $(defs_h) $(gdb_string_h) $(value_h) $(symtab_h) \
2607 $(gdbtypes_h) $(expression_h) $(language_h) $(frame_h) $(gdbcmd_h) \
b9362cc7 2608 $(gdbcore_h) $(target_h) $(source_h) $(breakpoint_h) $(demangle_h) \
8d3b0994 2609 $(inferior_h) $(annotate_h) $(ui_out_h) $(block_h) $(stack_h) \
60250e8b
AC
2610 $(gdb_assert_h) $(dictionary_h) $(exceptions_h) $(reggroups_h) \
2611 $(regcache_h)
eb8bc282 2612std-regs.o: std-regs.c $(defs_h) $(user_regs_h) $(frame_h) $(gdbtypes_h) \
e822a2a0
AC
2613 $(value_h) $(gdb_string_h)
2614stop-gdb.o: stop-gdb.c $(defs_h)
91092ee5
AC
2615symfile.o: symfile.c $(defs_h) $(bfdlink_h) $(symtab_h) $(gdbtypes_h) \
2616 $(gdbcore_h) $(frame_h) $(target_h) $(value_h) $(symfile_h) \
2617 $(objfiles_h) $(source_h) $(gdbcmd_h) $(breakpoint_h) $(language_h) \
2618 $(complaints_h) $(demangle_h) $(inferior_h) $(filenames_h) \
2619 $(gdb_stabs_h) $(gdb_obstack_h) $(completer_h) $(bcache_h) \
dbda9972 2620 $(hashtab_h) $(readline_h) $(gdb_assert_h) $(block_h) \
ea53e89f 2621 $(gdb_string_h) $(gdb_stat_h) $(observer_h)
eb4556d7 2622symfile-mem.o: symfile-mem.c $(defs_h) $(symtab_h) $(gdbcore_h) \
60250e8b
AC
2623 $(objfiles_h) $(exceptions_h) $(gdbcmd_h) $(target_h) $(value_h) \
2624 $(symfile_h) $(observer_h) $(auxv_h) $(elf_common_h)
04ea0df1
AC
2625symmisc.o: symmisc.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(bfd_h) \
2626 $(symfile_h) $(objfiles_h) $(breakpoint_h) $(command_h) \
60250e8b
AC
2627 $(gdb_obstack_h) $(exceptions_h) $(language_h) $(bcache_h) \
2628 $(block_h) $(gdb_regex_h) $(dictionary_h) $(gdb_string_h) \
2629 $(readline_h)
04ea0df1
AC
2630symtab.o: symtab.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \
2631 $(frame_h) $(target_h) $(value_h) $(symfile_h) $(objfiles_h) \
2632 $(gdbcmd_h) $(call_cmds_h) $(gdb_regex_h) $(expression_h) \
91092ee5 2633 $(language_h) $(demangle_h) $(inferior_h) $(linespec_h) $(source_h) \
34a17005
AC
2634 $(filenames_h) $(objc_lang_h) $(ada_lang_h) $(hashtab_h) \
2635 $(gdb_obstack_h) $(block_h) $(dictionary_h) $(gdb_string_h) \
ea53e89f 2636 $(gdb_stat_h) $(cp_abi_h) $(observer_h)
e822a2a0
AC
2637target.o: target.c $(defs_h) $(gdb_string_h) $(target_h) $(gdbcmd_h) \
2638 $(symtab_h) $(inferior_h) $(bfd_h) $(symfile_h) $(objfiles_h) \
b2100910 2639 $(gdb_wait_h) $(dcache_h) $(regcache_h) $(gdb_assert_h) $(gdbcore_h)
b66d6d2e 2640thread.o: thread.c $(defs_h) $(symtab_h) $(frame_h) $(inferior_h) \
60250e8b
AC
2641 $(environ_h) $(value_h) $(target_h) $(gdbthread_h) $(exceptions_h) \
2642 $(command_h) $(gdbcmd_h) $(regcache_h) $(gdb_h) $(gdb_string_h) \
2643 $(ui_out_h)
e822a2a0
AC
2644top.o: top.c $(defs_h) $(gdbcmd_h) $(call_cmds_h) $(cli_cmds_h) \
2645 $(cli_script_h) $(cli_setshow_h) $(cli_decode_h) $(symtab_h) \
60250e8b
AC
2646 $(inferior_h) $(exceptions_h) $(target_h) $(breakpoint_h) \
2647 $(gdbtypes_h) $(expression_h) $(value_h) $(language_h) $(terminal_h) \
2648 $(annotate_h) $(completer_h) $(top_h) $(version_h) $(serial_h) \
2649 $(doublest_h) $(gdb_assert_h) $(readline_h) $(readline_history_h) \
2650 $(event_top_h) $(gdb_string_h) $(gdb_stat_h) $(ui_out_h) \
2651 $(cli_out_h)
e822a2a0
AC
2652tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(gdbtypes_h) \
2653 $(expression_h) $(gdbcmd_h) $(value_h) $(target_h) $(language_h) \
2654 $(gdb_string_h) $(inferior_h) $(tracepoint_h) $(remote_h) \
fe898f56 2655 $(linespec_h) $(regcache_h) $(completer_h) $(gdb_events_h) \
dbda9972
AC
2656 $(block_h) $(dictionary_h) $(ax_h) $(ax_gdb_h) $(readline_h) \
2657 $(readline_history_h)
91092ee5
AC
2658trad-frame.o: trad-frame.c $(defs_h) $(frame_h) $(trad_frame_h) \
2659 $(regcache_h)
d2259dd3
AC
2660tramp-frame.o: tramp-frame.c $(defs_h) $(tramp_frame_h) $(frame_unwind_h) \
2661 $(gdbcore_h) $(symtab_h) $(objfiles_h) $(target_h) $(trad_frame_h) \
35124113 2662 $(frame_base_h) $(gdb_assert_h)
04ea0df1
AC
2663typeprint.o: typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \
2664 $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(command_h) \
b9362cc7
AC
2665 $(gdbcmd_h) $(target_h) $(language_h) $(cp_abi_h) $(typeprint_h) \
2666 $(gdb_string_h)
e822a2a0
AC
2667ui-file.o: ui-file.c $(defs_h) $(ui_file_h) $(gdb_string_h)
2668ui-out.o: ui-out.c $(defs_h) $(gdb_string_h) $(expression_h) $(language_h) \
2669 $(ui_out_h) $(gdb_assert_h)
eb8bc282
AC
2670user-regs.o: user-regs.c $(defs_h) $(user_regs_h) $(gdbtypes_h) \
2671 $(gdb_string_h) $(gdb_assert_h) $(frame_h)
91092ee5 2672utils.o: utils.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(event_top_h) \
60250e8b
AC
2673 $(exceptions_h) $(tui_h) $(gdbcmd_h) $(serial_h) $(bfd_h) \
2674 $(target_h) $(demangle_h) $(expression_h) $(language_h) $(charset_h) \
2675 $(annotate_h) $(filenames_h) $(symfile_h) $(inferior_h) \
2676 $(gdb_curses_h) $(readline_h)
e822a2a0
AC
2677uw-thread.o: uw-thread.c $(defs_h) $(gdbthread_h) $(target_h) $(inferior_h) \
2678 $(regcache_h) $(gregset_h)
e822a2a0
AC
2679valarith.o: valarith.c $(defs_h) $(value_h) $(symtab_h) $(gdbtypes_h) \
2680 $(expression_h) $(target_h) $(language_h) $(gdb_string_h) \
04714b91 2681 $(doublest_h) $(infcall_h)
e822a2a0
AC
2682valops.o: valops.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) $(frame_h) \
2683 $(inferior_h) $(gdbcore_h) $(target_h) $(demangle_h) $(language_h) \
91092ee5 2684 $(gdbcmd_h) $(regcache_h) $(cp_abi_h) $(block_h) $(infcall_h) \
79c2c32d 2685 $(dictionary_h) $(cp_support_h) $(gdb_string_h) $(gdb_assert_h) \
f4c5303c 2686 $(cp_support_h) $(observer_h)
e822a2a0
AC
2687valprint.o: valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
2688 $(value_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) $(language_h) \
2689 $(annotate_h) $(valprint_h) $(floatformat_h) $(doublest_h)
92e023d6 2690value.o: value.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \
e822a2a0
AC
2691 $(value_h) $(gdbcore_h) $(command_h) $(gdbcmd_h) $(target_h) \
2692 $(language_h) $(scm_lang_h) $(demangle_h) $(doublest_h) \
fe898f56 2693 $(gdb_assert_h) $(regcache_h) $(block_h)
b66d6d2e
AC
2694varobj.o: varobj.c $(defs_h) $(value_h) $(expression_h) $(frame_h) \
2695 $(language_h) $(wrapper_h) $(gdbcmd_h) $(gdb_string_h) $(varobj_h)
34a17005
AC
2696vaxbsd-nat.o: vaxbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \
2697 $(vax_tdep_h) $(inf_ptrace_h) $(bsd_kvm_h)
2a2de4ce
MK
2698vax-nat.o: vax-nat.c $(defs_h) $(inferior_h) $(gdb_assert_h) $(vax_tdep_h) \
2699 $(inf_ptrace_h)
9c5519a5 2700vaxnbsd-tdep.o: vaxnbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \
b2e31a62 2701 $(vax_tdep_h) $(solib_svr4_h) $(gdb_string_h)
35124113
AC
2702vax-tdep.o: vax-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) $(frame_h) \
2703 $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \
2704 $(osabi_h) $(regcache_h) $(regset_h) $(trad_frame_h) $(value_h) \
2705 $(gdb_string_h) $(vax_tdep_h)
1bfd8a83 2706win32-nat.o: win32-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
60250e8b
AC
2707 $(exceptions_h) $(gdbcore_h) $(command_h) $(completer_h) \
2708 $(regcache_h) $(top_h) $(buildsym_h) $(symfile_h) $(objfiles_h) \
2709 $(gdb_string_h) $(gdbthread_h) $(gdbcmd_h) $(exec_h) $(i386_tdep_h) \
2710 $(i387_tdep_h)
2711wince.o: wince.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \
2712 $(exceptions_h) $(gdbcore_h) $(command_h) $(buildsym_h) $(symfile_h) \
2713 $(objfiles_h) $(gdb_string_h) $(gdbthread_h) $(gdbcmd_h) \
2714 $(wince_stub_h) $(regcache_h) $(mips_tdep_h)
91092ee5 2715wince-stub.o: wince-stub.c $(wince_stub_h)
1c7b1e5a
MK
2716wrapper.o: wrapper.c $(defs_h) $(value_h) $(exceptions_h) $(wrapper_h) \
2717 $(ui_out_h)
e822a2a0
AC
2718xcoffread.o: xcoffread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(gdb_stat_h) \
2719 $(coff_internal_h) $(libcoff_h) $(coff_xcoff_h) $(libxcoff_h) \
0c0b39de 2720 $(coff_rs6000_h) $(symtab_h) $(gdbtypes_h) $(symfile_h) \
e822a2a0
AC
2721 $(objfiles_h) $(buildsym_h) $(stabsread_h) $(expression_h) \
2722 $(complaints_h) $(gdb_stabs_h) $(aout_stab_gnu_h)
2723xcoffsolib.o: xcoffsolib.c $(defs_h) $(bfd_h) $(xcoffsolib_h) $(inferior_h) \
2724 $(gdbcmd_h) $(symfile_h) $(frame_h) $(gdb_regex_h)
dba24537
AC
2725xstormy16-tdep.o: xstormy16-tdep.c $(defs_h) $(frame_h) $(frame_base_h) \
2726 $(frame_unwind_h) $(dwarf2_frame_h) $(symtab_h) $(gdbtypes_h) \
2727 $(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) $(inferior_h) \
2728 $(gdb_string_h) $(gdb_assert_h) $(arch_utils_h) $(floatformat_h) \
2729 $(regcache_h) $(doublest_h) $(osabi_h) $(objfiles_h)
8b93c638 2730
d318976c 2731#
72acd513 2732# gdb/cli/ dependencies
d318976c
FN
2733#
2734# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 2735# or try to compile the object file into the sub-directory.
d318976c 2736
dbda9972
AC
2737cli-cmds.o: $(srcdir)/cli/cli-cmds.c $(defs_h) $(readline_h) \
2738 $(readline_tilde_h) $(completer_h) $(target_h) $(gdb_wait_h) \
2739 $(gdb_regex_h) $(gdb_string_h) $(gdb_vfork_h) $(linespec_h) \
2740 $(expression_h) $(frame_h) $(value_h) $(language_h) $(filenames_h) \
2741 $(objfiles_h) $(source_h) $(disasm_h) $(ui_out_h) $(top_h) \
2742 $(cli_decode_h) $(cli_script_h) $(cli_setshow_h) $(cli_cmds_h) \
2743 $(tui_h)
f02df580 2744 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-cmds.c
72acd513
AC
2745cli-decode.o: $(srcdir)/cli/cli-decode.c $(defs_h) $(symtab_h) \
2746 $(gdb_regex_h) $(gdb_string_h) $(ui_out_h) $(cli_cmds_h) \
6a83354a 2747 $(cli_decode_h) $(tui_h) $(gdb_assert_h)
d318976c 2748 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-decode.c
72acd513
AC
2749cli-dump.o: $(srcdir)/cli/cli-dump.c $(defs_h) $(gdb_string_h) \
2750 $(cli_decode_h) $(cli_cmds_h) $(value_h) $(completer_h) \
dbda9972 2751 $(cli_dump_h) $(gdb_assert_h) $(target_h) $(readline_h)
f02df580 2752 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-dump.c
4389a95a 2753cli-interp.o: $(srcdir)/cli/cli-interp.c $(defs_h) $(interps_h) $(wrapper_h) \
60250e8b
AC
2754 $(event_top_h) $(ui_out_h) $(cli_out_h) $(top_h) $(gdb_string_h) \
2755 $(exceptions_h)
4389a95a 2756 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-interp.c
91092ee5
AC
2757cli-logging.o: $(srcdir)/cli/cli-logging.c $(defs_h) $(gdbcmd_h) $(ui_out_h) \
2758 $(gdb_string_h)
0fac0b41 2759 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-logging.c
72acd513 2760cli-script.o: $(srcdir)/cli/cli-script.c $(defs_h) $(value_h) $(language_h) \
17d92a02
AC
2761 $(ui_out_h) $(gdb_string_h) $(exceptions_h) $(top_h) $(cli_cmds_h) \
2762 $(cli_decode_h) $(cli_script_h)
72acd513 2763 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-script.c
dbda9972
AC
2764cli-setshow.o: $(srcdir)/cli/cli-setshow.c $(defs_h) $(readline_tilde_h) \
2765 $(value_h) $(gdb_string_h) $(ui_out_h) $(cli_decode_h) $(cli_cmds_h) \
72acd513 2766 $(cli_setshow_h)
d318976c 2767 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-setshow.c
72acd513 2768cli-utils.o: $(srcdir)/cli/cli-utils.c $(defs_h) $(cli_utils_h)
12cf3f1b
ND
2769 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-utils.c
2770
541a7aac
AC
2771#
2772# GDBTK sub-directory
2773#
72acd513
AC
2774# Need to explicitly specify the compile rule as make will do nothing
2775# or try to compile the object file into the mi directory.
541a7aac 2776
f15ab4a7
AC
2777all-gdbtk: insight$(EXEEXT)
2778
2779install-gdbtk:
2780 transformed_name=`t='$(program_transform_name)'; \
2781 echo insight | sed -e $$t` ; \
2782 if test "x$$transformed_name" = x; then \
2783 transformed_name=insight ; \
2784 else \
2785 true ; \
2786 fi ; \
c938e9b0 2787 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
72bdd927
AC
2788 $(INSTALL_PROGRAM) insight$(EXEEXT) \
2789 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2790 $(SHELL) $(srcdir)/../mkinstalldirs \
2791 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2792 $(SHELL) $(srcdir)/../mkinstalldirs \
2793 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2794 $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2795 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2796 $(SHELL) $(srcdir)/../mkinstalldirs \
2797 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2798 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
f15ab4a7 2799 $(SHELL) $(srcdir)/../mkinstalldirs \
72bdd927
AC
2800 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2801 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2802 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
f15ab4a7 2803 cd $(srcdir)/gdbtk/library ; \
df21e465 2804 for i in *.tcl *.itcl *.ith *.itb images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html help/trace/*.html help/trace/index.toc help/images/*.gif help/images/*.png; \
f15ab4a7 2805 do \
72bdd927 2806 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
f15ab4a7
AC
2807 done ;
2808
2809uninstall-gdbtk:
2810 transformed_name=`t='$(program_transform_name)'; \
2811 echo insight | sed -e $$t` ; \
2812 if test "x$$transformed_name" = x; then \
2813 transformed_name=insight ; \
2814 else \
2815 true ; \
2816 fi ; \
72bdd927
AC
2817 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2818 rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
f15ab4a7
AC
2819
2820clean-gdbtk:
2821 rm -f insight$(EXEEXT)
2822
2823# Removing the old gdb first works better if it is running, at least on SunOS.
d836ee13 2824insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
f15ab4a7
AC
2825 $(CDEPS) $(TDEPLIBS)
2826 rm -f insight$(EXEEXT)
72cfdc76 2827 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
d836ee13 2828 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
f15ab4a7
AC
2829 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2830
541a7aac
AC
2831gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2832 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2833
2834gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c \
2835 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
2836 $(symtab_h) $(inferior_h) $(command_h) \
2837 $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \
3cf93817 2838 $(tracepoint_h) $(top_h)
541a7aac 2839 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 2840 $(ITK_CFLAGS) \
541a7aac
AC
2841 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
2842 $(srcdir)/gdbtk/generic/gdbtk.c \
2843 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2844
2845gdbtk-bp.o: $(srcdir)/gdbtk/generic/gdbtk-bp.c \
2846 $(srcdir)/gdbtk/generic/gdbtk.h \
2847 $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
2848 $(defs_h) $(breakpoint_h) $(tracepoint_h) \
2849 $(symfile_h) $(symtab_h) $(gdb_string_h)
2850 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 2851 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
541a7aac
AC
2852 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-bp.c \
2853 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2854
2855gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
2856 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
de4f826b
DC
2857 $(defs_h) $(inferior_h) $(source_h) $(symfile_h) $(objfiles_h) \
2858 $(gdbcore_h) $(demangle_h) $(linespec_h) $(tui_file_h) $(top_h) \
2859 $(annotate_h) $(block_h) $(dictionary_h) $(gdb_string_h) \
2860 $(dis_asm_h) $(gdbcmd_h)
541a7aac 2861 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 2862 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
541a7aac
AC
2863 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
2864 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2865
2866gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c \
2867 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
2868 $(symtab_h) $(inferior_h) $(command_h) \
2869 $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \
2870 $(tracepoint_h)
b2a1bd4f 2871 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
541a7aac
AC
2872 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
2873 $(srcdir)/gdbtk/generic/gdbtk-hooks.c -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2874
5412f5f3
KS
2875gdbtk-interp.o: $(srcdir)/gdbtk/generic/gdbtk-interp.c \
2876 $(defs_h) $(interps_h) $(ui_out_h) $(ui_file_h) \
2877 $(cli_out_h) $(gdb_string_h) $(cli_cmds_h) $(cli_decode_h) \
2878 $(srcdir)/gdbtk/generic/gdbtk.h
2879 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2880 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS) \
2881 $(srcdir)/gdbtk/generic/gdbtk-interp.c
2882
f15ab4a7
AC
2883gdbtk-main.o: $(srcdir)/gdbtk/generic/gdbtk-main.c $(defs_h) $(main_h) \
2884 $(gdb_string_h)
b2a1bd4f 2885 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
f15ab4a7
AC
2886 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
2887 $(srcdir)/gdbtk/generic/gdbtk-main.c -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2888
541a7aac
AC
2889gdbtk-register.o: $(srcdir)/gdbtk/generic/gdbtk-register.c \
2890 $(srcdir)/gdbtk/generic/gdbtk.h \
2891 $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
2892 $(defs_h) $(frame_h) $(value_h) $(gdb_string_h)
2893 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 2894 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
541a7aac
AC
2895 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-register.c \
2896 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2897
2898gdbtk-stack.o: $(srcdir)/gdbtk/generic/gdbtk-stack.c \
2899 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
2900 $(srcdir)/gdbtk/generic/gdbtk-wrapper.h \
de4f826b
DC
2901 $(defs_h) $(target_h) $(breakpoint_h) $(linespec_h) \
2902 $(block_h) $(dictionary_h)
541a7aac 2903 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
b2a1bd4f 2904 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
541a7aac
AC
2905 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-stack.c \
2906 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
2907
2908gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c \
2909 $(srcdir)/gdbtk/generic/gdbtk.h \
2910 $(defs_h) $(value_h) $(varobj_h) $(gdb_string_h)
b2a1bd4f 2911 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
541a7aac
AC
2912 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
2913 $(srcdir)/gdbtk/generic/gdbtk-varobj.c
2914
2915gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c \
2916 $(srcdir)/gdbtk/generic/gdbtk-wrapper.h \
2917 $(defs_h) $(frame_h) $(value_h)
2918 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(GDBTK_CFLAGS)\
2919 $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
2920
fb40c209 2921#
72acd513 2922# gdb/mi/ dependencies
fb40c209
AC
2923#
2924# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 2925# or try to compile the object file into the sub-directory.
fb40c209 2926
fb40c209 2927mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c $(defs_h) $(mi_cmds_h) \
72acd513
AC
2928 $(ui_out_h) $(mi_out_h) $(breakpoint_h) $(gdb_string_h) \
2929 $(mi_getopt_h) $(gdb_events_h) $(gdb_h)
fb40c209 2930 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-break.c
5f8a3188 2931mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c $(defs_h) $(target_h) $(value_h) \
91092ee5 2932 $(mi_cmds_h) $(mi_getopt_h) $(gdb_string_h) $(ui_out_h) $(disasm_h)
fb40c209 2933 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-disas.c
4ef3f3be
AC
2934mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c $(defs_h) $(inferior_h) $(value_h) \
2935 $(mi_out_h) $(mi_cmds_h) $(mi_getopt_h) $(symtab_h) $(target_h) \
91092ee5
AC
2936 $(environ_h) $(command_h) $(ui_out_h) $(top_h) $(gdb_string_h) \
2937 $(gdb_stat_h)
c04e0a08 2938 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-env.c
91092ee5 2939mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c $(defs_h) $(mi_cmds_h) \
35124113 2940 $(mi_getopt_h) $(ui_out_h) $(symtab_h) $(source_h) $(objfiles_h)
91092ee5
AC
2941 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-file.c
2942mi-cmds.o: $(srcdir)/mi/mi-cmds.c $(defs_h) $(top_h) $(mi_cmds_h) \
2943 $(gdb_string_h)
2944 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmds.c
72acd513 2945mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c $(defs_h) $(target_h) $(frame_h) \
91092ee5 2946 $(value_h) $(mi_cmds_h) $(ui_out_h) $(symtab_h) $(block_h) \
20d286a5 2947 $(stack_h) $(dictionary_h) $(gdb_string_h)
72acd513
AC
2948 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-stack.c
2949mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c $(defs_h) $(mi_cmds_h) $(ui_out_h) \
2950 $(mi_out_h) $(varobj_h) $(value_h) $(gdb_string_h)
2951 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-var.c
72acd513
AC
2952mi-console.o: $(srcdir)/mi/mi-console.c $(defs_h) $(mi_console_h) \
2953 $(gdb_string_h)
2954 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-console.c
2955mi-getopt.o: $(srcdir)/mi/mi-getopt.c $(defs_h) $(mi_getopt_h) \
2956 $(gdb_string_h)
2957 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-getopt.c
4389a95a
AC
2958mi-interp.o: $(srcdir)/mi/mi-interp.c $(defs_h) $(gdb_string_h) $(interps_h) \
2959 $(event_top_h) $(event_loop_h) $(inferior_h) $(ui_out_h) $(top_h) \
c1043fc2
AC
2960 $(exceptions_h) $(mi_main_h) $(mi_cmds_h) $(mi_out_h) \
2961 $(mi_console_h)
4389a95a 2962 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-interp.c
72acd513 2963mi-main.o: $(srcdir)/mi/mi-main.c $(defs_h) $(target_h) $(inferior_h) \
60250e8b
AC
2964 $(gdb_string_h) $(exceptions_h) $(top_h) $(gdbthread_h) $(mi_cmds_h) \
2965 $(mi_parse_h) $(mi_getopt_h) $(mi_console_h) $(ui_out_h) $(mi_out_h) \
2966 $(interps_h) $(event_loop_h) $(event_top_h) $(gdbcore_h) $(value_h) \
2967 $(regcache_h) $(gdb_h) $(frame_h) $(mi_main_h)
6311b07d 2968 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-main.c
72acd513 2969mi-out.o: $(srcdir)/mi/mi-out.c $(defs_h) $(ui_out_h) $(mi_out_h)
fb40c209 2970 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-out.c
72acd513
AC
2971mi-parse.o: $(srcdir)/mi/mi-parse.c $(defs_h) $(mi_cmds_h) $(mi_parse_h) \
2972 $(gdb_string_h)
fb40c209 2973 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-parse.c
91092ee5
AC
2974mi-symbol-cmds.o: $(srcdir)/mi/mi-symbol-cmds.c $(defs_h) $(mi_cmds_h) \
2975 $(symtab_h) $(ui_out_h)
30e221b4 2976 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-symbol-cmds.c
fb40c209 2977
6d39a69f
AC
2978#
2979# rdi-share sub-directory
2980#
72acd513
AC
2981# Need to explicitly specify the compile rule as make will do nothing
2982# or try to compile the object file into the mi directory.
6d39a69f
AC
2983
2984rdi-share/libangsd.a: force
2985 @dir=rdi-share; \
2986 if [ -f ./$${dir}/Makefile ] ; then \
2987 r=`pwd`; export r; \
2988 srcroot=`cd $(srcdir); pwd`; export srcroot; \
2989 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
2990 else \
2991 true; \
2992 fi
2993
f92d4a7b 2994#
1517c6d1 2995# gdb/signals/ dependencies
f92d4a7b 2996#
72acd513 2997# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 2998# or try to compile the object file into the sub-directory.
f92d4a7b 2999
91092ee5
AC
3000signals.o: $(srcdir)/signals/signals.c $(server_h) $(defs_h) $(target_h) \
3001 $(gdb_string_h)
f92d4a7b
AC
3002 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/signals/signals.c
3003
ed952ac5 3004#
1517c6d1 3005# gdb/tui/ dependencies
ed952ac5
AC
3006#
3007# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 3008# or try to compile the object file into the sub-directory.
ed952ac5 3009
6a83354a
AC
3010tui.o: $(srcdir)/tui/tui.c $(defs_h) $(gdbcmd_h) $(tui_h) $(tui_hooks_h) \
3011 $(tui_data_h) $(tui_layout_h) $(tui_io_h) $(tui_regs_h) \
3012 $(tui_stack_h) $(tui_win_h) $(tui_winsource_h) $(tui_windata_h) \
dbda9972
AC
3013 $(target_h) $(frame_h) $(breakpoint_h) $(inferior_h) $(symtab_h) \
3014 $(source_h) $(gdb_curses_h) $(readline_h)
91092ee5 3015 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui.c
d7b2e967 3016tui-command.o: $(srcdir)/tui/tui-command.c $(defs_h) $(tui_h) $(tui_data_h) \
88289b6e 3017 $(tui_win_h) $(tui_io_h) $(gdb_curses_h) $(gdb_string_h)
d7b2e967
AC
3018 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-command.c
3019tui-data.o: $(srcdir)/tui/tui-data.c $(defs_h) $(symtab_h) $(tui_h) \
6a83354a 3020 $(tui_data_h) $(tui_wingeneral_h) $(gdb_string_h) $(gdb_curses_h)
d7b2e967
AC
3021 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-data.c
3022tui-disasm.o: $(srcdir)/tui/tui-disasm.c $(defs_h) $(symtab_h) \
3023 $(breakpoint_h) $(frame_h) $(value_h) $(source_h) $(disasm_h) \
20d286a5 3024 $(gdb_string_h) $(tui_h) $(tui_data_h) $(tui_win_h) $(tui_layout_h) \
6a83354a 3025 $(tui_winsource_h) $(tui_stack_h) $(tui_file_h) $(gdb_curses_h)
d7b2e967 3026 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-disasm.c
91092ee5 3027tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(ui_file_h) $(tui_file_h) \
20d286a5 3028 $(tui_io_h) $(tui_h) $(gdb_string_h)
91092ee5
AC
3029 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c
3030tui-hooks.o: $(srcdir)/tui/tui-hooks.c $(defs_h) $(symtab_h) $(inferior_h) \
3031 $(command_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) \
3032 $(gdbcore_h) $(event_loop_h) $(event_top_h) $(frame_h) \
35124113
AC
3033 $(breakpoint_h) $(gdb_events_h) $(ui_out_h) $(top_h) $(tui_h) \
3034 $(tui_hooks_h) $(tui_data_h) $(tui_layout_h) $(tui_io_h) \
6a83354a 3035 $(tui_regs_h) $(tui_win_h) $(tui_stack_h) $(tui_windata_h) \
35124113 3036 $(tui_winsource_h) $(gdb_curses_h) $(readline_h)
91092ee5
AC
3037 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-hooks.c
3038tui-interp.o: $(srcdir)/tui/tui-interp.c $(defs_h) $(interps_h) $(top_h) \
c14a44d5 3039 $(event_top_h) $(event_loop_h) $(ui_out_h) $(cli_out_h) \
d7b2e967 3040 $(tui_data_h) $(readline_h) $(tui_win_h) $(tui_h) $(tui_io_h)
91092ee5 3041 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-interp.c
4fab48b9 3042tui-io.o: $(srcdir)/tui/tui-io.c $(defs_h) $(target_h) \
35124113
AC
3043 $(event_loop_h) $(event_top_h) $(command_h) $(top_h) $(tui_h) \
3044 $(tui_data_h) $(tui_io_h) $(tui_command_h) $(tui_win_h) \
6a83354a 3045 $(tui_wingeneral_h) $(tui_file_h) $(ui_out_h) $(cli_out_h) \
35124113 3046 $(gdb_curses_h) $(readline_h)
d7b2e967
AC
3047 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-io.c
3048tui-layout.o: $(srcdir)/tui/tui-layout.c $(defs_h) $(command_h) $(symtab_h) \
3049 $(frame_h) $(source_h) $(tui_h) $(tui_data_h) $(tui_windata_h) \
3050 $(tui_wingeneral_h) $(tui_stack_h) $(tui_regs_h) $(tui_win_h) \
88289b6e 3051 $(tui_winsource_h) $(tui_disasm_h) $(gdb_string_h) $(gdb_curses_h)
d7b2e967 3052 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-layout.c
226361c4
AC
3053tui-main.o: $(srcdir)/tui/tui-main.c $(defs_h) $(main_h) $(gdb_string_h) \
3054 $(interps_h)
3055 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-main.c
91092ee5
AC
3056tui-out.o: $(srcdir)/tui/tui-out.c $(defs_h) $(ui_out_h) $(tui_h) \
3057 $(gdb_string_h) $(gdb_assert_h)
3058 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-out.c
d7b2e967
AC
3059tui-regs.o: $(srcdir)/tui/tui-regs.c $(defs_h) $(tui_h) $(tui_data_h) \
3060 $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(frame_h) $(regcache_h) \
20d286a5 3061 $(inferior_h) $(target_h) $(gdb_string_h) $(tui_layout_h) \
6a83354a 3062 $(tui_win_h) $(tui_windata_h) $(tui_wingeneral_h) $(tui_file_h) \
8050c72f 3063 $(reggroups_h) $(gdb_curses_h)
d7b2e967
AC
3064 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-regs.c
3065tui-source.o: $(srcdir)/tui/tui-source.c $(defs_h) $(symtab_h) $(frame_h) \
3066 $(breakpoint_h) $(source_h) $(symtab_h) $(tui_h) $(tui_data_h) \
88289b6e
AC
3067 $(tui_stack_h) $(tui_winsource_h) $(tui_source_h) $(gdb_string_h) \
3068 $(gdb_curses_h)
d7b2e967
AC
3069 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-source.c
3070tui-stack.o: $(srcdir)/tui/tui-stack.c $(defs_h) $(symtab_h) $(breakpoint_h) \
20d286a5
AC
3071 $(frame_h) $(command_h) $(inferior_h) $(target_h) $(top_h) \
3072 $(gdb_string_h) $(tui_h) $(tui_data_h) $(tui_stack_h) \
6a83354a
AC
3073 $(tui_wingeneral_h) $(tui_source_h) $(tui_winsource_h) $(tui_file_h) \
3074 $(gdb_curses_h)
d7b2e967
AC
3075 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-stack.c
3076tui-win.o: $(srcdir)/tui/tui-win.c $(defs_h) $(command_h) $(symtab_h) \
3077 $(breakpoint_h) $(frame_h) $(cli_cmds_h) $(top_h) $(source_h) \
3078 $(tui_h) $(tui_data_h) $(tui_wingeneral_h) $(tui_stack_h) \
3079 $(tui_regs_h) $(tui_disasm_h) $(tui_source_h) $(tui_winsource_h) \
dbda9972 3080 $(tui_windata_h) $(gdb_curses_h) $(gdb_string_h) $(readline_h)
d7b2e967
AC
3081 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-win.c
3082tui-windata.o: $(srcdir)/tui/tui-windata.c $(defs_h) $(tui_h) $(tui_data_h) \
88289b6e 3083 $(tui_wingeneral_h) $(tui_regs_h) $(gdb_string_h) $(gdb_curses_h)
d7b2e967
AC
3084 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-windata.c
3085tui-wingeneral.o: $(srcdir)/tui/tui-wingeneral.c $(defs_h) $(tui_h) \
6a83354a 3086 $(tui_data_h) $(tui_wingeneral_h) $(tui_win_h) $(gdb_curses_h)
d7b2e967
AC
3087 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-wingeneral.c
3088tui-winsource.o: $(srcdir)/tui/tui-winsource.c $(defs_h) $(symtab_h) \
3089 $(frame_h) $(breakpoint_h) $(value_h) $(source_h) $(tui_h) \
3090 $(tui_data_h) $(tui_stack_h) $(tui_win_h) $(tui_wingeneral_h) \
88289b6e
AC
3091 $(tui_winsource_h) $(tui_source_h) $(tui_disasm_h) $(gdb_string_h) \
3092 $(gdb_curses_h)
d7b2e967 3093 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-winsource.c
ed952ac5 3094
c906108c 3095### end of the gdb Makefile.in.