Rewrite target_signal_to_name().
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
b6ba6518 1# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
c18be923 2# 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
c906108c
SS
3
4# This file is part of GDB.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20prefix = @prefix@
21exec_prefix = @exec_prefix@
22
23host_alias = @host_alias@
24target_alias = @target_alias@
25program_transform_name = @program_transform_name@
26bindir = @bindir@
27libdir = @libdir@
28tooldir = $(libdir)/$(target_alias)
29
30datadir = @datadir@
31mandir = @mandir@
32man1dir = $(mandir)/man1
33man2dir = $(mandir)/man2
34man3dir = $(mandir)/man3
35man4dir = $(mandir)/man4
36man5dir = $(mandir)/man5
37man6dir = $(mandir)/man6
38man7dir = $(mandir)/man7
39man8dir = $(mandir)/man8
40man9dir = $(mandir)/man9
41infodir = @infodir@
085dd6e6 42htmldir = $(prefix)/html
c906108c
SS
43includedir = @includedir@
44
45# This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
46top_builddir = .
47
48SHELL = @SHELL@
49EXEEXT = @EXEEXT@
50
7a292a7a 51AWK = @AWK@
b3a90332 52LN_S = @LN_S@
7a292a7a 53
c906108c
SS
54INSTALL = @INSTALL@
55INSTALL_PROGRAM = @INSTALL_PROGRAM@
56INSTALL_DATA = @INSTALL_DATA@
57
58AR = @AR@
59AR_FLAGS = qv
60RANLIB = @RANLIB@
61DLLTOOL = @DLLTOOL@
62WINDRES = @WINDRES@
b9f21955 63MIG = @MIG@
c906108c 64
c906108c
SS
65# Flags that describe where you can find the termcap library.
66# This can be overridden in the host Makefile fragment file.
67TERMCAP = @TERM_LIB@
68
69# If you are compiling with GCC, make sure that either 1) You have the
70# fixed include files where GCC can reach them, or 2) You use the
71# -traditional flag. Otherwise the ioctl calls in inflow.c
72# will be incorrectly compiled. The "fixincludes" script in the gcc
73# distribution will fix your include files up.
74CC=@CC@
75
76# Directory containing source files.
77srcdir = @srcdir@
78VPATH = @srcdir@
79
80YACC=@YACC@
81
82YLWRAP = $(srcdir)/../ylwrap
83
84# where to find makeinfo, preferably one designed for texinfo-2
85MAKEINFO=makeinfo
86
085dd6e6
JM
87MAKEHTML = texi2html
88
89MAKEHTMLFLAGS = -glossary -menu -split_chapter
90
c906108c
SS
91# Set this up with gcc if you have gnu ld and the loader will print out
92# line numbers for undefined references.
93#CC_LD=gcc -static
94CC_LD=$(CC)
95
96# Where is our "include" directory? Typically $(srcdir)/../include.
97# This is essentially the header file directory for the library
98# routines in libiberty.
99INCLUDE_DIR = $(srcdir)/../include
100INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
101
102# Where is the "-liberty" library? Typically in ../libiberty.
103LIBIBERTY = ../libiberty/libiberty.a
104
105# Configured by the --with-mmalloc option to configure.
106MMALLOC = @MMALLOC@
107MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
108
b4df4f68
FN
109# Configured by the --with-uiout option to configure.
110UIOUT_CFLAGS = @UIOUT_CFLAGS@
111
c906108c
SS
112# Where is the BFD library? Typically in ../bfd.
113BFD_DIR = ../bfd
114BFD = $(BFD_DIR)/libbfd.a
115BFD_SRC = $(srcdir)/$(BFD_DIR)
116BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
117
118# Where is the READLINE library? Typically in ../readline.
119READLINE_DIR = ../readline
120READLINE = $(READLINE_DIR)/libreadline.a
121READLINE_SRC = $(srcdir)/$(READLINE_DIR)
122READLINE_CFLAGS = -I$(READLINE_SRC)/..
123
124WARN_CFLAGS = @WARN_CFLAGS@
104c1213 125WERROR_CFLAGS = @WERROR_CFLAGS@
d4f3574e
SS
126GDB_WARN_CFLAGS = $(WARN_CFLAGS)
127GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
128
129# Where is the INTL library? Typically in ../intl.
130INTL_DIR = ../intl
131INTL = @INTLLIBS@
132INTL_DEPS = @INTLDEPS@
133INTL_SRC = $(srcdir)/$(INTL_DIR)
134INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
135
d318976c
FN
136#
137# CLI sub directory definitons
138#
139SUBDIR_CLI_OBS = \
12cf3f1b 140 cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o
d318976c 141SUBDIR_CLI_SRCS = \
12cf3f1b
ND
142 cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
143 cli/cli-utils.c
d318976c
FN
144SUBDIR_CLI_DEPS =
145SUBDIR_CLI_INITS =
146SUBDIR_CLI_LDFLAGS=
147SUBDIR_CLI_CFLAGS=
148SUBDIR_CLI_ALL=
149SUBDIR_CLI_CLEAN=
150SUBDIR_CLI_INSTALL=
151SUBDIR_CLI_UNINSTALL=
152
fb40c209
AC
153#
154# MI sub directory definitons
155#
156SUBDIR_MI_OBS = \
157 mi-out.o mi-console.o \
158 mi-cmds.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
159 mi-cmd-disas.o \
160 mi-main.o mi-parse.o mi-getopt.o
161SUBDIR_MI_SRCS = \
162 mi/mi-out.c mi/mi-console.c \
163 mi/mi-cmds.c \
164 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
165 mi/mi-cmd-disas.c \
166 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
167SUBDIR_MI_DEPS =
168SUBDIR_MI_INITS = \
4226a5a5 169 mi/mi-cmds.c mi/mi-parse.c mi/mi-main.c mi/mi-out.c
fb40c209
AC
170SUBDIR_MI_LDFLAGS=
171SUBDIR_MI_CFLAGS= \
b4df4f68 172 -DMI_OUT=1
b3a90332
AC
173SUBDIR_MI_ALL=
174SUBDIR_MI_CLEAN=
e56ac5c3
AC
175SUBDIR_MI_INSTALL=
176SUBDIR_MI_UNINSTALL=
fb40c209 177
ed952ac5
AC
178#
179# TUI sub directory definitions
180#
181SUBDIR_TUI_OBS = \
227288a0 182 tui-file.o tui.o tuiData.o tuiSource.o tuiStack.o tuiIO.o \
ed952ac5 183 tuiGeneralWin.o tuiLayout.o tuiWin.o tuiCommand.o \
8aaf581c
SC
184 tuiDisassem.o tuiSourceWin.o tuiRegs.o tuiDataWin.o \
185 tui-out.o tui-hooks.o
ed952ac5 186SUBDIR_TUI_SRCS = \
227288a0 187 tui/tui-file.c tui/tui.c tui/tuiData.c tui/tuiSource.c \
ed952ac5
AC
188 tui/tuiStack.c tui/tuiIO.c \
189 tui/tuiGeneralWin.c tui/tuiLayout.c \
190 tui/tuiWin.c tui/tuiCommand.c \
191 tui/tuiDisassem.c tui/tuiSourceWin.c \
8aaf581c 192 tui/tuiRegs.c tui/tuiDataWin.c tui/tui-out.c tui/tui-hooks.c
ed952ac5
AC
193SUBDIR_TUI_DEPS =
194SUBDIR_TUI_INITS = \
195 $(SUBDIR_TUI_SRCS)
196SUBDIR_TUI_LDFLAGS=
197SUBDIR_TUI_CFLAGS= \
198 -DTUI=1 -I${srcdir}/tui
199SUBDIR_TUI_ALL=
200SUBDIR_TUI_CLEAN=
201SUBDIR_TUI_INSTALL=
202SUBDIR_TUI_UNINSTALL=
203
204
205
c906108c
SS
206# Opcodes currently live in one of two places. Either they are in the
207# opcode library, typically ../opcodes, or they are in a header file
208# in INCLUDE_DIR.
209# Where is the "-lopcodes" library, with (some of) the opcode tables and
210# disassemblers?
211OPCODES = ../opcodes/libopcodes.a
212# Where are the other opcode tables which only have header file
213# versions?
214OP_INCLUDE = $(INCLUDE_DIR)/opcode
215OPCODES_CFLAGS = -I$(OP_INCLUDE)
216
217# The simulator is usually nonexistent; targets that include one
218# should set this to list all the .o or .a files to be linked in.
219SIM =
220
cd0fc7c3
SS
221WIN32LIBS = @WIN32LIBS@
222
3fc11d3e
JM
223# Where is the TCL library? Typically in ../tcl.
224LIB_INSTALL_DIR = $(libdir)
225# This variable is needed when doing dynamic linking.
226LIB_RUNTIME_DIR = $(libdir)
227TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
228TCL_CFLAGS = @TCLHDIR@
dd2504ab 229TCL_DEPS = @TCL_DEPS@
3fc11d3e
JM
230GDBTKLIBS = @GDBTKLIBS@
231# Extra flags that the GDBTK files need:
232GDBTK_CFLAGS = @GDBTK_CFLAGS@
233
234# Where is the TK library? Typically in ../tk.
235TK = @TK_BUILD_LIB_SPEC@
236TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
dd2504ab 237TK_DEPS = @TK_DEPS@
3fc11d3e
JM
238
239# Where is Itcl? Typically in ../itcl/itcl.
240ITCL_CFLAGS = @ITCLHDIR@
241ITCL = @ITCLLIB@
242ITCL_DEPS = @ITCL_DEPS@
243
244# Where is Itk? Typically in ../itcl/itk.
245ITK_CFLAGS = @ITKHDIR@
246ITK = @ITKLIB@
247ITK_DEPS = @ITK_DEPS@
248
249# Where is Tix? Typically in ../tix.
250TIX_CFLAGS = @TIXHDIR@
251TIX = @TIXLIB@
252TIX_DEPS = @TIX_DEPS@
253
254X11_CFLAGS = @TK_XINCLUDES@
255X11_LDFLAGS =
256X11_LIBS =
257
258WIN32LDAPP = @WIN32LDAPP@
259
3fc11d3e
JM
260LIBGUI = @LIBGUI@
261GUI_CFLAGS_X = @GUI_CFLAGS_X@
262IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
4226a5a5 263
f0b743a9
KS
264# The version of gdbtk we're building. This should be kept
265# in sync with GDBTK_VERSION and friends in gdbtk.h.
266GDBTK_VERSION = 1.0
267GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
268
d1c3b63a
KS
269# Gdbtk requires an absolute path to the source directory or
270# the testsuite won't run properly.
271GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
272
4226a5a5 273SUBDIR_GDBTK_OBS = \
ecb9ce7e
KS
274 gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o \
275 gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o
4226a5a5 276SUBDIR_GDBTK_SRCS = \
ecb9ce7e
KS
277 gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \
278 gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c \
279 gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \
280 gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c
4226a5a5
FN
281SUBDIR_GDBTK_DEPS = \
282 $(LIBGUI) $(ITCL_DEPS) $(ITK_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)
283SUBDIR_GDBTK_INITS = gdbtk/generic/gdbtk.c
284SUBDIR_GDBTK_LDFLAGS=
285SUBDIR_GDBTK_CFLAGS= -DGDBTK
f0b743a9
KS
286SUBDIR_GDBTK_ALL=
287SUBDIR_GDBTK_CLEAN=
e56ac5c3
AC
288SUBDIR_GDBTK_INSTALL= install-gdbtk
289SUBDIR_GDBTK_UNINSTALL=
c906108c 290
fb40c209 291CONFIG_OBS= @CONFIG_OBS@
66b965bb 292CONFIG_LIB_OBS= @CONFIG_LIB_OBS@
fb40c209
AC
293CONFIG_SRCS= @CONFIG_SRCS@
294CONFIG_DEPS= @CONFIG_DEPS@
295CONFIG_INITS= @CONFIG_INITS@
296CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
c906108c 297ENABLE_CFLAGS= @ENABLE_CFLAGS@
b3a90332
AC
298CONFIG_ALL= @CONFIG_ALL@
299CONFIG_CLEAN= @CONFIG_CLEAN@
300CONFIG_CLEAN= @CONFIG_CLEAN@
e56ac5c3
AC
301CONFIG_INSTALL = @CONFIG_INSTALL@
302CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
c906108c
SS
303
304# -I. for config files.
f77b92bf 305# -I$(srcdir) for gdb internal headers.
c906108c
SS
306# -I$(srcdir)/config for more generic config files.
307
308# It is also possible that you will need to add -I/usr/include/sys if
309# your system doesn't have fcntl.h in /usr/include (which is where it
310# should be according to Posix).
311DEFS = @DEFS@
312GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
313
314# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
315# from the config directory.
316GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
317#PROFILE_CFLAGS = -pg
318
319# CFLAGS is specifically reserved for setting from the command line
320# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
1decb323 321CFLAGS = @CFLAGS@
c906108c
SS
322
323# Need to pass this to testsuite for "make check". Probably should be
324# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
325# so "make check" has the same result no matter where it is run.
326CXXFLAGS = -g -O
327
328# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
104c1213
JM
329INTERNAL_WARN_CFLAGS = \
330 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
c906108c
SS
331 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
332 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
b4df4f68 333 $(INTL_CFLAGS) $(ENABLE_CFLAGS) $(UIOUT_CFLAGS) \
e48f66e4 334 $(GDB_WARN_CFLAGS)
d4f3574e 335INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
c906108c
SS
336
337# LDFLAGS is specifically reserved for setting from the command line
338# when running make.
339
340# Profiling options need to go here to work.
341# I think it's perfectly reasonable for a user to set -pg in CFLAGS
342# and have it work; that's why CFLAGS is here.
7a78ae4e 343INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS) @HLDFLAGS@
c906108c
SS
344HLDENV = @HLDENV@
345
c906108c
SS
346# If your system is missing alloca(), or, more likely, it's there but
347# it doesn't work, then refer to libiberty.
348
349# Libraries and corresponding dependencies for compiling gdb.
350# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
351# TERMCAP comes after readline, since readline depends on it.
352# MMALLOC comes after anything else that might want an allocation function.
353# LIBIBERTY appears twice on purpose.
354# If you have the Cygnus libraries installed,
355# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
356INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
357 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
358 -lmmalloc -lintl -liberty
359CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
360 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
361 $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS)
362CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
fb40c209 363 $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS)
c906108c 364
f77b92bf
MK
365ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
366ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
c906108c 367
c906108c
SS
368DIST=gdb
369
370LINT=/usr/5bin/lint
5565b556
C
371LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
372 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
373 $(INTL_CFLAGS)
c906108c
SS
374
375RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
376 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
377 fi`
378
379RUNTESTFLAGS=
380
381# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
382# interface to the serial port. Hopefully if get ported to OS/2, VMS,
383# etc., then there will be (as part of the C library or perhaps as
384# part of libiberty) a POSIX interface. But at least for now the
385# host-dependent makefile fragment might need to use something else
386# besides ser-unix.o
6688f7e9 387SER_HARDWIRE = @SER_HARDWIRE@
c906108c
SS
388
389# The `remote' debugging target is supported for most architectures,
390# but not all (e.g. 960)
391REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o
392
393# This is remote-sim.o if a simulator is to be linked in.
394SIM_OBS =
395
396ANNOTATE_OBS = annotate.o
397
398# Host and target-dependent makefile fragments come in here.
399@host_makefile_frag@
400@target_makefile_frag@
401# End of host and target-dependent makefile fragments
402
7a292a7a
SS
403# Possibly ignore the simulator. If the simulator is being ignored,
404# these expand into SIM= and SIM_OBJ=, overriding the entries from
405# target_makefile_frag
406#
407@IGNORE_SIM@
408@IGNORE_SIM_OBS@
409
c906108c
SS
410FLAGS_TO_PASS = \
411 "prefix=$(prefix)" \
412 "exec_prefix=$(exec_prefix)" \
6688f7e9 413 "infodir=$(infodir)" \
c906108c
SS
414 "against=$(against)" \
415 "AR=$(AR)" \
416 "AR_FLAGS=$(AR_FLAGS)" \
417 "CC=$(CC)" \
418 "CFLAGS=$(CFLAGS)" \
419 "CHILLFLAGS=$(CHILLFLAGS)" \
420 "CHILL=$(CHILL)" \
421 "CHILL_LIB=$(CHILL_LIB)" \
422 "CXX=$(CXX)" \
423 "CXXFLAGS=$(CXXFLAGS)" \
424 "DLLTOOL=$(DLLTOOL)" \
425 "RANLIB=$(RANLIB)" \
426 "MAKEINFO=$(MAKEINFO)" \
085dd6e6
JM
427 "MAKEHTML=$(MAKEHTML)" \
428 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
c906108c
SS
429 "INSTALL=$(INSTALL)" \
430 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
431 "INSTALL_DATA=$(INSTALL_DATA)" \
432 "RUNTEST=$(RUNTEST)" \
433 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
434
435# Flags that we pass when building the testsuite.
436
437# empty for native, $(target_alias)/ for cross
438target_subdir = @target_subdir@
439
440CC_FOR_TARGET = ` \
441 if [ -f $${rootme}/../gcc/xgcc ] ; then \
442 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
443 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/; \
444 else \
445 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
446 fi; \
447 else \
448 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
449 echo $(CC); \
450 else \
451 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
452 fi; \
453 fi`
454
455CXX = gcc
456CXX_FOR_TARGET = ` \
457 if [ -f $${rootme}/../gcc/xgcc ] ; then \
458 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
459 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/; \
460 else \
461 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
462 fi; \
463 else \
464 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
465 echo $(CXX); \
466 else \
467 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
468 fi; \
469 fi`
470
471CHILLFLAGS = $(CFLAGS)
472CHILL = gcc
473CHILL_FOR_TARGET = ` \
474 if [ -f $${rootme}/../gcc/Makefile ] ; then \
475 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
476 else \
477 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
478 echo $(CC); \
479 else \
480 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
481 fi; \
482 fi`
483CHILL_LIB = ` \
484 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
485 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
486 $${rootme}/../gcc/ch/runtime/libchill.a; \
487 else \
488 echo -lchill; \
489 fi`
490
491# The use of $$(x_FOR_TARGET) reduces the command line length by not
492# duplicating the lengthy definition.
493TARGET_FLAGS_TO_PASS = \
494 "prefix=$(prefix)" \
495 "exec_prefix=$(exec_prefix)" \
496 "against=$(against)" \
497 'CC=$$(CC_FOR_TARGET)' \
498 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
499 "CFLAGS=$(CFLAGS)" \
500 "CHILLFLAGS=$(CHILLFLAGS)" \
501 'CHILL=$$(CHILL_FOR_TARGET)' \
502 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
503 "CHILL_LIB=$(CHILL_LIB)" \
504 'CXX=$$(CXX_FOR_TARGET)' \
505 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
506 "CXXFLAGS=$(CXXFLAGS)" \
507 "INSTALL=$(INSTALL)" \
508 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
509 "INSTALL_DATA=$(INSTALL_DATA)" \
510 "MAKEINFO=$(MAKEINFO)" \
085dd6e6 511 "MAKEHTML=$(MAKEHTML)" \
c906108c
SS
512 "RUNTEST=$(RUNTEST)" \
513 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
514
515# All source files that go into linking GDB.
516# Links made at configuration time should not be specified here, since
517# SFILES is used in building the distribution archive.
518
519SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \
520 buildsym.c c-exp.y c-lang.c c-typeprint.c c-valprint.c \
521 ch-exp.c ch-lang.c ch-typeprint.c ch-valprint.c coffread.c \
d318976c 522 complaints.c completer.c corefile.c cp-valprint.c dbxread.c \
c906108c 523 demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \
cd0fc7c3 524 event-loop.c event-top.c \
c906108c 525 expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \
32178cab 526 findvar.c regcache.c gdbarch.c arch-utils.c gdbtypes.c \
2acceee2 527 inf-loop.c infcmd.c inflow.c infrun.c language.c \
96baa820 528 kod.c kod-cisco.c \
8b93c638
JM
529 ui-out.c cli-out.c \
530 varobj.c wrapper.c \
c906108c
SS
531 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
532 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
29e57380 533 memattr.c mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c \
df115219 534 p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c \
c906108c 535 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c \
0150732f 536 scm-valprint.c signals.c source.c stabsread.c stack.c symfile.c \
50641945 537 symmisc.c symtab.c linespec.c target.c thread.c top.c tracepoint.c \
c906108c
SS
538 typeprint.c utils.c valarith.c valops.c valprint.c values.c \
539 serial.c ser-unix.c mdebugread.c os9kread.c \
540 tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \
541 tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \
542 tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \
543 tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \
544 tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \
545 tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \
da59e081 546 tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h \
8aaf581c 547 tui/tui-file.h tui/tui-file.c tui/tui-out.c tui/tui-hooks.c \
d65fe839 548 ui-file.h ui-file.c \
d16aafd8 549 frame.c doublest.c \
7ed49443 550 gnu-v2-abi.c gnu-v3-abi.c hpacc-abi.c cp-abi.c
c906108c 551
fb40c209 552LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
c906108c
SS
553
554# "system" headers. Using these in dependencies is a rather personal
555# choice. (-rich, summer 1993)
556# (Why would we not want to depend on them? If one of these changes in a
557# non-binary-compatible way, it is a real pain to remake the right stuff
558# without these dependencies -kingdon, 13 Mar 1994)
559getopt_h = $(INCLUDE_DIR)/getopt.h
560floatformat_h = $(INCLUDE_DIR)/floatformat.h
561bfd_h = $(BFD_DIR)/bfd.h
1b0cad1c 562dis_asm_h = $(INCLUDE_DIR)/dis-asm.h
c906108c 563remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
bea7bb93 564demangle_h = $(INCLUDE_DIR)/demangle.h
c2c197ae 565obstack_h = $(INCLUDE_DIR)/obstack.h
c906108c 566
c906108c
SS
567readline_headers = \
568 $(READLINE_SRC)/chardefs.h \
569 $(READLINE_SRC)/history.h \
570 $(READLINE_SRC)/keymaps.h \
571 $(READLINE_SRC)/readline.h
572
573udiheaders = \
574 $(srcdir)/29k-share/udi/udiproc.h \
575 $(srcdir)/29k-share/udi/udiphcfg.h \
576 $(srcdir)/29k-share/udi/udiphunix.h \
577 $(srcdir)/29k-share/udi/udiptcfg.h \
578 $(srcdir)/29k-share/udi/udipt29k.h \
579 $(srcdir)/29k-share/udi/udisoc.h
580
5a2402b8
AC
581xm_h = @xm_h@
582tm_h = @tm_h@
583nm_h = @nm_h@
c906108c 584
1b0cad1c
AC
585annotate_h = annotate.h $(symtab_h) $(gdbtypes_h)
586arch_utils_h = arch-utils.h
d16aafd8 587ax_h = ax.h $(doublest_h)
17732724 588bcache_h = bcache.h
1b0cad1c 589breakpoint_h = breakpoint.h $(frame_h) $(value_h)
17732724 590buildsym_h = buildsym.h
68c42665 591c_lang_h = c-lang.h $(value_h)
1b0cad1c
AC
592call_cmds_h = call-cmds.h
593cli_cmds_h = $(srcdir)/cli/cli-cmds.h
594cli_decode_h = $(srcdir)/cli/cli-decode.h
595cli_out_h = cli-out.h
596cli_script_h = $(srcdir)/cli/cli-script.h
597cli_setshow_h = $(srcdir)/cli/cli-setshow.h
598cli_utils_h = $(srcdir)/cli/cli-utils.h
599command_h = command.h
17732724 600complaints_h = complaints.h
1b0cad1c
AC
601completer_h = completer.h
602cp_abi_h = cp-abi.h
603dcache_h = dcache.h
17732724
AC
604defs_h = defs.h $(xm_h) $(tm_h) $(nm_h) config.status config.h \
605 gdbarch.h ui-file.h
d16aafd8 606doublest_h = doublest.h $(floatformat_h)
b6af0555 607dwarf2cfi_h = dwarf2cfi.h
c2c6d25f
JM
608event_loop_h = event-loop.h
609event_top_h = event-top.h
d16aafd8 610expression_h = expression.h $(doublest_h) $(symtab_h)
1b0cad1c
AC
611frame_h = frame.h
612gdb_h = gdb.h
17732724
AC
613gdb_events_h = gdb-events.h
614gdb_stabs_h = gdb-stabs.h
1b0cad1c
AC
615gdb_string_h = gdb_string.h
616gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h)
617gdbcore_h = gdbcore.h $(bfd_h)
618gdbthread_h = gdbthread.h $(breakpoint_h)
619gdbtypes_h = gdbtypes.h
17732724
AC
620hpread_h = hpread.h $(defs_h) $(bfd_h) $(gdb_string_h) $(hp_symtab_h) \
621 $(syms_h) $(symtab_h) $(symfile_h) $(objfiles_h) \
622 $(buildsym_h) $(complaints_h) $(gdb_stabs_h) $(gdbtypes_h) \
623 $(demangle_h)
2acceee2 624inf_loop_h = inf-loop.h
1b0cad1c 625inferior_h = inferior.h $(breakpoint_h)
17732724
AC
626language_h = language.h
627linespec_h = linespec.h
1b0cad1c 628memattr_h = memattr.h
17732724
AC
629monitor_h = monitor.h
630objfiles_h = objfiles.h
d16aafd8 631parser_defs_h = parser-defs.h $(doublest_h)
1b0cad1c 632regcache_h = regcache.h
c2c6d25f 633remote_h = remote.h
1b0cad1c 634remote_utils_h = remote-utils.h $(target_h)
17732724
AC
635ser_unix_h = ser-unix.h
636serial_h = serial.h
637solist_h = solist.h
638source_h = source.h
639stabsread_h = stabsread.h
1b0cad1c 640symfile_h = symfile.h
17732724 641symtab_h = symtab.h $(bcache_h)
1b0cad1c 642target_h = target.h $(bfd_h) $(symtab_h) $(dcache_h) $(memattr_h)
17732724 643terminal_h = terminal.h
1b0cad1c
AC
644top_h = top.h
645tracepoint_h = tracepoint.h
17732724 646typeprint_h = typeprint.h
8b93c638 647ui_out_h = ui-out.h
17732724 648valprint_h = valprint.h
d16aafd8 649value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h) $(doublest_h)
17732724 650varobj_h = varobj.h $(symtab_h) $(gdbtypes_h)
1b0cad1c 651version_h = version.h
17732724
AC
652wrapper_h = wrapper.h
653xcoffsolib_h = xcoffsolib.h
015a42b4 654
c906108c
SS
655# Header files that need to have srcdir added. Note that in the cases
656# where we use a macro like $(gdbcmd_h), things are carefully arranged
657# so that each .h file is listed exactly once (M-x tags-search works
658# wrong if TAGS has files twice). Because this is tricky to get
659# right, it is probably easiest just to list .h files here directly.
660
661HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
5b7f31a4 662 dst.h environ.h $(gdbcmd_h) gdb.h gdbcore.h \
c906108c 663 gdb-stabs.h hpread.h $(inferior_h) language.h minimon.h monitor.h \
6a34fd2f 664 objfiles.h parser-defs.h serial.h solib.h \
c906108c
SS
665 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
666 c-lang.h ch-lang.h f-lang.h \
667 jv-lang.h \
df115219 668 m2-lang.h p-lang.h \
c906108c
SS
669 complaints.h valprint.h \
670 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
671 nindy-share/block_io.h nindy-share/coff.h \
672 nindy-share/env.h nindy-share/stop.h \
673 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
674 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
675 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
676 dcache.h remote-utils.h top.h somsolib.h
677
678# Header files that already have srcdir in them, or which are in objdir.
679
680HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
681
682
683# GDB "info" files, which should be included in their entirety
684INFOFILES = gdb.info*
685
686REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
687
c906108c
SS
688# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
689# default their values the way we do for SER_HARDWIRE; in the future
690# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
691# variables analogous to SER_HARDWIRE which get defaulted in this
692# Makefile.in
693
694DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
66b965bb 695 $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_LIB_OBS)
c906108c 696
fb40c209 697SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
c906108c
SS
698# Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
699# and it's more useful to see it in the .y file.
700TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
f77b92bf 701 $(SUBDIR_CLI_SRCS)
c906108c
SS
702TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
703
32178cab 704COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o regcache.o \
c906108c 705 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
d318976c 706 symtab.o symfile.o symmisc.o linespec.o infcmd.o infrun.o \
32178cab 707 expprint.o environ.o stack.o thread.o \
c5f0f3d0 708 event-loop.o event-top.o inf-loop.o completer.o \
1ad03bde 709 gdbarch.o arch-utils.o gdbtypes.o copying.o $(DEPFILES) \
29e57380 710 memattr.o mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
0150732f 711 signals.o \
96baa820 712 kod.o kod-cisco.o \
104c1213 713 gdb-events.o \
c906108c
SS
714 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
715 dbxread.o coffread.o elfread.o \
716 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
717 c-lang.o ch-exp.o ch-lang.o f-lang.o \
8b93c638
JM
718 ui-out.o cli-out.o \
719 varobj.o wrapper.o \
c906108c 720 jv-lang.o jv-valprint.o jv-typeprint.o \
454313e5 721 m2-lang.o p-lang.o p-typeprint.o p-valprint.o \
c906108c
SS
722 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
723 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
724 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
da59e081 725 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o \
227288a0 726 ui-file.o \
d16aafd8
AC
727 frame.o doublest.o \
728 ui-file.o \
729 frame.o doublest.o \
7ed49443 730 gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o
c906108c 731
104c1213 732OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
c906108c
SS
733
734TSOBS = inflow.o
735
7be570e7 736SUBDIRS = @SUBDIRS@
c906108c
SS
737
738# For now, shortcut the "configure GDB for fewer languages" stuff.
739YYFILES = c-exp.tab.c \
740 jv-exp.tab.c \
df115219 741 f-exp.tab.c m2-exp.tab.c p-exp.tab.c
c906108c
SS
742YYOBJ = c-exp.tab.o \
743 jv-exp.tab.o \
df115219 744 f-exp.tab.o m2-exp.tab.o p-exp.tab.o
c906108c
SS
745
746# Things which need to be built when making a distribution.
747
748DISTSTUFF = $(YYFILES)
749
750# Prevent Sun make from putting in the machine type. Setting
751# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
752.c.o:
753 $(CC) -c $(INTERNAL_CFLAGS) $<
754
b3a90332 755all: gdb$(EXEEXT) $(CONFIG_ALL)
c906108c
SS
756 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
757
758installcheck:
759
760# The check target can not use subdir_do, because subdir_do does not
761# use TARGET_FLAGS_TO_PASS.
762check: force
763 @if [ -f testsuite/Makefile ]; then \
764 rootme=`pwd`; export rootme; \
765 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
766 cd testsuite; \
767 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
768 else true; fi
769
085dd6e6 770info dvi install-info clean-info html install-html: force
c906108c
SS
771 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
772
773gdb.z:gdb.1
774 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
775 pack gdb.t ; rm -f gdb.t
776 mv gdb.t.z gdb.z
777
778# Traditionally "install" depends on "all". But it may be useful
779# not to; for example, if the user has made some trivial change to a
780# source file and doesn't care about rebuilding or just wants to save the
781# time it takes for make to check that all is up to date.
782# install-only is intended to address that need.
783install: all install-only
e56ac5c3 784install-only: $(CONFIG_INSTALL)
c906108c
SS
785 transformed_name=`t='$(program_transform_name)'; \
786 echo gdb | sed -e $$t` ; \
787 if test "x$$transformed_name" = x; then \
788 transformed_name=gdb ; \
789 else \
790 true ; \
791 fi ; \
ee29d710 792 $(srcdir)/../mkinstalldirs $(bindir) ; \
c906108c 793 $(INSTALL_PROGRAM) gdb$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \
ee29d710 794 $(srcdir)/../mkinstalldirs $(man1dir) ; \
c906108c
SS
795 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
796 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
797
e56ac5c3 798uninstall: force $(CONFIG_UNINSTALL)
c906108c
SS
799 transformed_name=`t='$(program_transform_name)'; \
800 echo gdb | sed -e $$t` ; \
801 if test "x$$transformed_name" = x; then \
802 transformed_name=gdb ; \
803 else \
804 true ; \
805 fi ; \
806 rm -f $(bindir)/$$transformed_name$(EXEEXT) $(man1dir)/$$transformed_name.1
f0b743a9 807 rm -rf $(GDBTK_LIBRARY)
c906108c
SS
808 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
809
810# We do this by grepping through sources. If that turns out to be too slow,
811# maybe we could just require every .o file to have an initialization routine
9b4ff276 812# of a given name (top.o -> _initialize_top, etc.).
c906108c
SS
813#
814# Formatting conventions: The name of the _initialize_* routines must start
815# in column zero, and must not be inside #if.
816#
817# Note that the set of files with init functions might change, or the names
818# of the functions might change, so this files needs to depend on all the
819# object files that will be linked into gdb.
f2c4d933
EZ
820#
821# FIXME: There are 2 problems with this approach. First, if the INIT_FILES
822# list includes a file twice (because of some mistake somewhere else)
823# the _initialize_* function will be included twice in init.c. Second,
227288a0 824# init.c may force unnecessary files to be linked in.
f2c4d933 825#
c906108c 826
b46cd165 827INIT_FILES = $(OBS) $(TSOBS) $(CONFIG_OBS) $(CONFIG_INITS)
c2d11a7d 828init.c: $(INIT_FILES)
c906108c 829 @echo Making init.c
6426a772 830 @rm -f init.c-tmp init.l-tmp
c2d11a7d 831 @-echo $(INIT_FILES) | \
c906108c
SS
832 tr ' ' '\012' | \
833 sed -e '/^Onindy.o/d' \
6426a772 834 -e '/^init.o/d' \
c906108c
SS
835 -e '/^nindy.o/d' \
836 -e '/ttyflush.o/d' \
837 -e '/xdr_ld.o/d' \
838 -e '/xdr_ptrace.o/d' \
839 -e '/xdr_rdb.o/d' \
840 -e '/udr.o/d' \
841 -e '/udip2soc.o/d' \
842 -e '/udi2go32.o/d' \
843 -e '/version.o/d' \
844 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
845 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
846 -e 's/\.o/.c/' \
847 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
848 while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \
6426a772
JM
849 sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' > init.l-tmp
850 @echo '/* Do not modify this file. */' >>init.c-tmp
851 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
852 @echo '#include "defs.h"' >>init.c-tmp
853 @echo '#include "call-cmds.h"' >>init.c-tmp
854 @sed -e 's/\(.*\)/extern initialize_file_ftype \1;/' <init.l-tmp >>init.c-tmp
855 @echo 'void' >>init.c-tmp
856 @echo 'initialize_all_files (void)' >>init.c-tmp
857 @echo '{' >>init.c-tmp
858 @sed -e 's/\(.*\)/ \1 ();/' <init.l-tmp >>init.c-tmp
c906108c 859 @echo '}' >>init.c-tmp
6426a772 860 @rm init.l-tmp
c906108c
SS
861 @mv init.c-tmp init.c
862
863.PRECIOUS: init.c
864
6426a772
JM
865init.o: init.c $(defs_h) $(call_cmds_h)
866
c906108c 867# Removing the old gdb first works better if it is running, at least on SunOS.
b46cd165 868gdb$(EXEEXT): main.o libgdb.a $(CONFIG_OBS) $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
c906108c 869 rm -f gdb$(EXEEXT)
b46cd165
FN
870 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) -o gdb$(EXEEXT) \
871 main.o libgdb.a $(CONFIG_OBS) $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS)\
872 $(LOADLIBES)
c906108c
SS
873
874nlm: force
875 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
876
104c1213
JM
877# Create a library of the gdb object files and build GDB by linking
878# against that.
879#
880# init.o is very important. It pulls in the rest of GDB.
881LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o
882libgdb.a: $(LIBGDB_OBS)
883 -rm -f libgdb.a
884 $(AR) q libgdb.a $(LIBGDB_OBS)
885 $(RANLIB) libgdb.a
c906108c
SS
886
887saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
888 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
889 #load ./init.c $(SFILES)
890 #unload $(srcdir)/c-exp.y
891 #unload $(srcdir)/jv-exp.y
892 #unload $(srcdir)/m2-exp.y
df115219 893 #unload $(srcdir)/p-exp.y
c906108c
SS
894 #unload vx-share/*.h
895 #unload nindy-share/[A-Z]*
896 #load c-exp.tab.c
897 #load jv-exp.tab.c
898 #load m2-exp.tab.c
df115219 899 #load p-exp.tab.c
c906108c
SS
900 #load copying.c version.c
901 #load ../opcodes/libopcodes.a
902 #load ../libiberty/libiberty.a
903 #load ../bfd/libbfd.a
904 #load ../readline/libreadline.a
905 #load ../mmalloc/libmmalloc.a
906 #load ../intl/libintl.a
907 #load -ltermcap
908 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
909 echo "Load .c corresponding to:" $(DEPFILES)
910
911
912# A Mach 3.0 program to force gdb back to command level
913
914stop-gdb: stop-gdb.o
915 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
916 stop-gdb.o $(CLIBS) $(LOADLIBES)
917
918# This is useful when debugging GDB, because some Unix's don't let you run GDB
919# on itself without copying the executable. So "make gdb1" will make
920# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
921# Removing gdb1 before the copy is the right thing if gdb1 is open
922# in another process.
923gdb1$(EXEEXT): gdb$(EXEEXT)
924 rm -f gdb1$(EXEEXT)
925 cp gdb$(EXEEXT) gdb1$(EXEEXT)
926
927# FIXME. These are not generated by "make depend" because they only are there
928# for some machines.
929# But these rules don't do what we want; we want to hack the foo.o: tm.h
930# dependency to do the right thing.
514e603d 931tm-sun3.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
c906108c 932tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
c906108c
SS
933xm-i386-sv32.h: xm-i386.h
934tm-i386gas.h: tm-i386.h
935xm-sun4os4.h: xm-sparc.h
936tm-sun4os4.h: tm-sparc.h
937xm-vaxult.h: xm-vax.h
938xm-vaxbsd.h: xm-vax.h
939
c906108c
SS
940# Put the proper machine-specific files first, so M-. on a machine
941# specific routine gets the one for the correct machine. (FIXME: those
942# files go in twice; we should be removing them from the main list).
943
944# TAGS depends on all the files that go into it so you can rebuild TAGS
945# with `make TAGS' and not have to say `rm TAGS' first.
946
947TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
948 @echo Making TAGS
949 @etags $(srcdir)/$(TM_FILE) \
950 $(srcdir)/$(XM_FILE) \
951 $(srcdir)/$(NAT_FILE) \
952 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
953 echo $(srcdir)/$$i ; \
954 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
955 echo $$i ; \
956 done) | sed -e 's/\.o$$/\.c/'` \
957 `find $(srcdir)/config -name '*.h' -print`
958
959tags: TAGS
960
b3a90332 961clean mostlyclean: $(CONFIG_CLEAN)
c906108c 962 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
d3814881 963 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
c906108c 964 rm -f init.c version.c
104c1213 965 rm -f gdb$(EXEEXT) core make.log
c906108c
SS
966 rm -f gdb[0-9]$(EXEEXT)
967
968# This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
969# I believe this is wrong; the makefile standards for distclean just
970# describe removing files; the only sort of "re-create a distribution"
971# functionality described is if the distributed files are unmodified.
4edb848c
AC
972# NB: While GDBSERVER might be configured on native systems, it isn't
973# always included in SUBDIRS. Remove the gdbserver files explictly.
c906108c
SS
974distclean: clean
975 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
4edb848c
AC
976 rm -f gdbserver/config.status gdbserver/config.log
977 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
978 rm -f gdbserver/Makefile gdbserver/config.cache
c906108c
SS
979 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
980 rm -f y.output yacc.acts yacc.tmp y.tab.h
981 rm -f config.log config.cache
982 rm -f Makefile
983
984maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
985realclean: maintainer-clean
986
987local-maintainer-clean:
988 @echo "This command is intended for maintainers to use;"
989 @echo "it deletes files that may require special tools to rebuild."
990 rm -f c-exp.tab.c \
991 jv-exp.tab \
df115219 992 f-exp.tab.c m2-exp.tab.c p-exp.tab.c
c906108c
SS
993 rm -f TAGS $(INFOFILES)
994 rm -f $(YYFILES)
995 rm -f nm.h tm.h xm.h config.status
996
997do-maintainer-clean:
998 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
999 subdir_do
1000
1001diststuff: $(DISTSTUFF)
1a645206 1002 cd doc; $(MAKE) $(MFLAGS) diststuff
c906108c
SS
1003
1004subdir_do: force
1005 @for i in $(DODIRS); do \
1006 if [ -f ./$$i/Makefile ] ; then \
1007 if (cd ./$$i; \
1008 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1009 else exit 1 ; fi ; \
1010 else true ; fi ; \
1011 done
1012
1013Makefile: Makefile.in config.status @frags@
1014 $(SHELL) config.status
1015
1016config.h: stamp-h ; @true
1017stamp-h: config.in config.status
1018 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
1019
1020config.status: configure
1021 $(SHELL) config.status --recheck
1022
1023force:
1024
1025# Documentation!
1026# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
1027doc/refcard.dvi:
1028 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
1029
1030# GDB QUICK REFERENCE (PostScript output, common PS fonts)
1031doc/refcard.ps:
1032 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
1033
1034# GDB MANUAL: TeX dvi file
1035doc/gdb.dvi:
1036 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
1037
1038# GDB MANUAL: info file
1039doc/gdb.info:
1040 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
1041
1042# Make copying.c from COPYING
413ccac7
AC
1043$(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \
1044 $(srcdir)/COPYING $(srcdir)/copying.awk
1045 awk -f $(srcdir)/copying.awk \
1046 < $(srcdir)/COPYING > $(srcdir)/copying.tmp
1047 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
c906108c 1048
d3814881
AC
1049version.c: Makefile version.in
1050 rm -f version.c-tmp version.c
1051 echo '#include "version.h"' >> version.c-tmp
1052 echo 'const char version[] = "'"`head -1 ${srcdir}/version.in`"'";' >> version.c-tmp
1053 echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
1054 echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
1055 mv version.c-tmp version.c
d4f3574e 1056version.o: version.c $(version_h)
c906108c
SS
1057
1058# c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
1059# in srcdir, then compiled in objdir to c-exp.tab.o.
1060
1061# If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
1062# would sometimes re-write it into $(srcdir)/c-exp.tab.c.
1063
1064# Remove bogus decls for malloc/realloc/free which conflict with everything
1065# else. Strictly speaking c-exp.tab.c should therefore depend on
1066# Makefile.in, but that was a pretty big annoyance.
c906108c
SS
1067c-exp.tab.c: c-exp.y
1068 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS)
1069 -sed -e '/extern.*malloc/d' \
1070 -e '/extern.*realloc/d' \
1071 -e '/extern.*free/d' \
1072 -e '/include.*malloc.h/d' \
1073 -e 's/malloc/xmalloc/g' \
1074 -e 's/realloc/xrealloc/g' \
1075 -e '/^#line.*y.tab.c/d' \
1076 < c-exp.tmp > c-exp.new
1077 -rm c-exp.tmp
1078 mv c-exp.new ./c-exp.tab.c
1079
1080jv-exp.tab.o: jv-exp.tab.c
1081jv-exp.tab.c: jv-exp.y
1082 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/jv-exp.y y.tab.c jv-exp.tmp -- $(YFLAGS)
1083 -sed -e '/extern.*malloc/d' \
1084 -e '/extern.*realloc/d' \
1085 -e '/extern.*free/d' \
1086 -e '/include.*malloc.h/d' \
1087 -e 's/malloc/xmalloc/g' \
1088 -e 's/realloc/xrealloc/g' \
1089 -e '/^#line.*y.tab.c/d' \
1090 < jv-exp.tmp > jv-exp.new
1091 -rm jv-exp.tmp
1092 mv jv-exp.new ./jv-exp.tab.c
1093
1094f-exp.tab.o: f-exp.tab.c
1095f-exp.tab.c: f-exp.y c-exp.tab.c
1096 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS)
1097 -sed -e '/extern.*malloc/d' \
1098 -e '/extern.*realloc/d' \
1099 -e '/extern.*free/d' \
1100 -e '/include.*malloc.h/d' \
1101 -e 's/malloc/xmalloc/g' \
1102 -e 's/realloc/xrealloc/g' \
1103 -e '/^#line.*y.tab.c/d' \
1104 < f-exp.tmp > f-exp.new
1105 -rm f-exp.tmp
1106 mv f-exp.new ./f-exp.tab.c
1107
1108# m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
1109# in srcdir, then compiled in objdir to m2-exp.tab.o.
1110# Remove bogus decls for malloc/realloc/free which conflict with everything
1111# else.
1112m2-exp.tab.o: m2-exp.tab.c
1113m2-exp.tab.c: m2-exp.y
1114 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/m2-exp.y y.tab.c m2-exp.tmp -- $(YFLAGS)
1115 -sed -e '/extern.*malloc/d' \
1116 -e '/extern.*realloc/d' \
1117 -e '/extern.*free/d' \
1118 -e '/include.*malloc.h/d' \
1119 -e 's/malloc/xmalloc/g' \
1120 -e 's/realloc/xrealloc/g' \
1121 -e '/^#line.*y.tab.c/d' \
1122 < m2-exp.tmp > m2-exp.new
1123 -rm m2-exp.tmp
1124 mv m2-exp.new ./m2-exp.tab.c
1125
df115219
PM
1126# p-exp.tab.c is generated in objdir from p-exp.y if it doesn't exist
1127# in srcdir, then compiled in objdir to p-exp.tab.o.
1128# Remove bogus decls for malloc/realloc/free which conflict with everything
1129# else.
1130p-exp.tab.o: p-exp.tab.c
1131p-exp.tab.c: p-exp.y
1132 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/p-exp.y y.tab.c p-exp.tmp -- $(YFLAGS)
1133 -sed -e '/extern.*malloc/d' \
1134 -e '/extern.*realloc/d' \
1135 -e '/extern.*free/d' \
1136 -e '/include.*malloc.h/d' \
1137 -e 's/malloc/xmalloc/g' \
1138 -e 's/realloc/xrealloc/g' \
1139 -e '/^#line.*y.tab.c/d' \
1140 < p-exp.tmp > p-exp.new
1141 -rm p-exp.tmp
1142 mv p-exp.new ./p-exp.tab.c
1143
c906108c
SS
1144# These files are updated atomically, so make never has to remove them
1145.PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
df115219 1146.PRECIOUS: jv-exp.tab.c p-exp.tab.c
c906108c
SS
1147
1148lint: $(LINTFILES)
1149 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1150 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
1151
1152gdb.cxref: $(SFILES)
1153 cxref -I. $(SFILES) >gdb.cxref
1154
1155force_update:
1156
1157# GNU Make has an annoying habit of putting *all* the Makefile variables
1158# into the environment, unless you include this target as a circumvention.
1159# Rumor is that this will be fixed (and this target can be removed)
1160# in GNU Make 4.0.
1161.NOEXPORT:
1162
1163# GNU Make 3.63 has a different problem: it keeps tacking command line
1164# overrides onto the definition of $(MAKE). This variable setting
1165# will remove them.
1166MAKEOVERRIDES=
1167
1168## This is ugly, but I don't want GNU make to put these variables in
1169## the environment. Older makes will see this as a set of targets
1170## with no dependencies and no actions.
1171unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1172
1173ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
1174 29k-share/udi/udi2go32.c \
1175 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
de7dd7a9 1176 arm-linux-nat.c arm-linux-tdep.c arm-tdep.c armnbsd-nat.c \
c5bb1243 1177 coff-solib.c \
c906108c
SS
1178 core-sol2.c core-regset.c core-aout.c corelow.c \
1179 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
5330533d 1180 go32-nat.c h8300-tdep.c h8500-tdep.c \
c906108c
SS
1181 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
1182 hp-psymtab-read.c hp-symtab-read.c \
d4f3574e 1183 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \
c906108c 1184 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
25630444 1185 i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c \
0fc087fe 1186 i387-tdep.c i387-nat.c \
52b98211 1187 i386-linux-tdep.c i386-nat.c \
c906108c 1188 i960-tdep.c \
8064c6ae 1189 ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
514e603d 1190 infptrace.c inftarg.c irix4-nat.c irix5-nat.c \
c906108c 1191 lynx-nat.c m3-nat.c \
1a12f22f 1192 m68hc11-tdep.c \
c906108c 1193 m68k-tdep.c \
9e086581 1194 m88k-nat.c m88k-tdep.c mac-nat.c \
96baa820 1195 mcore-tdep.c \
d2b57b94 1196 mips-linux-nat.c mips-linux-tdep.c \
9e086581 1197 mips-nat.c \
3680c638 1198 mips-tdep.c mipsm3-nat.c mipsv4-nat.c \
c906108c
SS
1199 nindy-share/Onindy.c nindy-share/nindy.c \
1200 nindy-share/ttyflush.c nindy-tdep.c \
a1cd1908 1201 ns32k-tdep.c solib-osf.c \
c906108c 1202 somread.c somsolib.c $(HPREAD_SOURCE) \
2559291b 1203 ppc-linux-nat.c ppc-linux-tdep.c \
c5bb1243 1204 procfs.c \
c906108c
SS
1205 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
1206 remote-es.c remote-hms.c remote-mips.c \
1207 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
1208 remote-st.c remote-utils.c dcache.c \
1209 remote-udi.c remote-vx.c remote-vx29k.c \
1210 rs6000-nat.c rs6000-tdep.c \
e81b020b 1211 s390-tdep.c s390-nat.c \
a196c81c 1212 ser-go32.c ser-pipe.c ser-tcp.c \
d2b57b94
DJ
1213 sh-tdep.c solib.c solib-svr4.c solib-sunos.c sparc-linux-nat.c \
1214 sparc-nat.c \
24f89b68 1215 sparc-tdep.c sparcl-tdep.c sun3-nat.c \
c906108c 1216 symm-tdep.c symm-nat.c \
c906108c
SS
1217 vax-tdep.c \
1218 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
1219 win32-nat.c \
0c884e17
CV
1220 xcoffread.c xcoffsolib.c \
1221 xstormy16-tdep.c \
1222 z8k-tdep.c
c906108c
SS
1223
1224udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
1225 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1226
1227udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1228 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1229
1230udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
1231 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1232
9b4ff276
AC
1233# OBSOLETE a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1234# OBSOLETE $(regcache_h)
c906108c 1235
367e21d8
AC
1236a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1237 $(regcache_h)
c906108c 1238
1b0cad1c 1239alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \
367e21d8 1240 $(regcache_h)
c906108c
SS
1241
1242alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
17732724 1243 $(inferior_h) $(symtab_h) $(dis_asm_h) $(gdb_string_h) $(linespec_h) \
d16aafd8 1244 $(regcache_h) $(doublest_h)
c906108c 1245
1b0cad1c 1246annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) $(gdbtypes_h)
c906108c 1247
ed9a39eb 1248arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
6e0ce711 1249 $(gdb_string_h) $(regcache_h)
ed9a39eb 1250
1b0cad1c 1251arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \
d16aafd8 1252 $(gdbtypes_h) $(floatformat_h) $(regcache_h) $(doublest_h)
03e0fb3a 1253
c906108c 1254arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
fd0407d6 1255 $(gdbcore_h) $(regcache_h) $(doublest_h) $(value_h)
c906108c 1256
de7dd7a9 1257armnbsd-nat.o: armnbsd-nat.c $(defs_h)
e7a42bc8 1258
17732724 1259bcache.o: bcache.c $(bcache_h) $(defs_h)
c906108c
SS
1260
1261blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
17732724 1262 $(objfiles_h) $(symfile_h) $(target_h) $(regcache_h)
c906108c
SS
1263
1264breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
17732724
AC
1265 $(inferior_h) $(language_h) $(target_h) $(gdbthread_h) \
1266 $(gdb_string_h) $(gdb_events_h) $(linespec_h) $(ui_out_h) \
1267 $(completer_h) $(gdb_h)
c906108c 1268
17732724
AC
1269buildsym.o: buildsym.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1270 $(objfiles_h) $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1271
68c42665 1272c-lang.o: c-lang.c $(c_lang_h) $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1273 $(language_h) $(parser_defs_h) $(symtab_h)
c906108c 1274
68c42665 1275c-typeprint.o: c-typeprint.c $(c_lang_h) $(defs_h) $(expression_h) \
17732724
AC
1276 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) \
1277 $(target_h) $(typeprint_h) $(value_h) $(gdb_string_h) $(cp_abi_h)
c906108c
SS
1278
1279c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1280 $(language_h) $(symtab_h) $(valprint_h) $(value_h) $(cp_abi_h)
c906108c 1281
befc81ac 1282doublest.o: doublest.c $(defs_h) $(doublest_h) $(floatformat_h) $(gdbtypes_h) \
d16aafd8
AC
1283 gdb_assert.h gdb_string.h
1284
c906108c 1285f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1286 $(language_h) $(parser_defs_h) $(symtab_h) $(gdb_string_h)
c906108c
SS
1287
1288f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
17732724
AC
1289 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) \
1290 $(target_h) $(typeprint_h) $(value_h) $(gdb_string_h)
c906108c
SS
1291
1292f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1293 $(language_h) $(symtab_h) $(valprint_h) $(value_h) $(gdb_string_h)
c906108c 1294
17732724
AC
1295ch-exp.o: ch-exp.c ch-lang.h $(defs_h) $(language_h) $(parser_defs_h) \
1296 $(bfd_h) $(symfile_h) $(objfiles_h) $(value_h)
c906108c
SS
1297
1298ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1299 $(language_h) $(parser_defs_h) $(symtab_h)
c906108c
SS
1300
1301ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
17732724
AC
1302 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) \
1303 $(target_h) $(value_h) $(typeprint_h) $(gdb_string_h)
c906108c
SS
1304
1305ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
68c42665 1306 $(language_h) $(symtab_h) $(valprint_h) $(value_h) $(c_lang_h)
c906108c
SS
1307
1308coff-solib.o: coff-solib.c $(defs_h)
1309
17732724
AC
1310coffread.o: coffread.c $(bfd_h) $(breakpoint_h) $(buildsym_h) \
1311 $(complaints_h) $(defs_h) $(expression_h) $(gdbtypes_h) $(objfiles_h) \
1312 $(symfile_h) $(symtab_h) $(gdb_stabs_h) $(stabsread_h) $(target_h) \
6e0ce711 1313 $(gdb_string_h)
c906108c 1314
17732724 1315complaints.o: complaints.c $(complaints_h) $(defs_h) $(gdbcmd_h)
c906108c 1316
413ccac7
AC
1317# Provide explicit rule/dependency - works for more makes.
1318copying.o: $(srcdir)/copying.c $(defs_h) $(gdbcmd_h)
1319 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c
c906108c 1320
367e21d8
AC
1321core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h) \
1322 $(regcache_h)
c906108c
SS
1323
1324core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1b0cad1c 1325 $(inferior_h) $(target_h) $(gdb_string_h) $(regcache_h)
c906108c
SS
1326
1327core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1b0cad1c 1328 $(inferior_h) $(target_h) $(gdb_string_h)
c906108c 1329
1b0cad1c 1330corefile.o: corefile.c $(dis_asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
17732724
AC
1331 $(inferior_h) $(target_h) $(language_h) $(gdb_string_h) \
1332 $(completer_h) $(symfile_h)
c906108c
SS
1333
1334corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1b0cad1c 1335 $(target_h) $(gdbthread_h) $(gdb_string_h) $(regcache_h)
c906108c 1336
c18be923
MS
1337gcore.o: gcore.c $(defs_h) $(command_h) $(inferior_h) $(gdbcore_h) \
1338 $(BFD_SRC)/elf-bfd.h $(symfile_h) $(objfiles_h)
1339
1340linux-proc.o: linux-proc.c $(defs_h) $(inferior_h) $(gregset_h) \
1341 $(gdbcore_h) $(gdbthread_h) $(BFD_SRC)/elf-bfd.h
1342
015a42b4
JB
1343cp-abi.o: cp-abi.c $(defs_h) $(value_h) $(cp_abi_h)
1344
c906108c 1345cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1e8e5c2a 1346 $(gdbtypes_h) $(symtab_h) $(value_h) $(gdb_string_h) $(cp_abi_h)
c906108c 1347
6e0ce711 1348dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) $(gdb_string_h) \
1b0cad1c 1349 $(gdbcore_h) $(target_h)
c906108c 1350
17732724
AC
1351dbxread.o: dbxread.c $(breakpoint_h) $(buildsym_h) $(command_h) \
1352 $(complaints_h) $(defs_h) $(expression_h) $(gdb_stabs_h) $(gdbcore_h) \
6a34fd2f 1353 $(gdbtypes_h) $(language_h) $(objfiles_h) \
17732724
AC
1354 $(stabsread_h) $(symfile_h) $(symtab_h) $(target_h) $(gdb_string_h) \
1355 $(cp_abi_h)
c906108c
SS
1356
1357delta68-nat.o: delta68-nat.c $(defs_h)
1358
6e0ce711 1359demangle.o: demangle.c $(defs_h) $(gdbcmd_h) $(gdb_string_h)
c906108c 1360
17732724
AC
1361dink32-rom.o: dink32-rom.c $(monitor_h) $(bfd_h) gdb_wait.h $(defs_h) \
1362 $(gdbcmd_h) $(inferior_h) $(target_h) $(serial_h) $(terminal_h) \
1363 $(symfile_h) $(regcache_h)
c906108c 1364
6e0ce711 1365dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) $(gdb_string_h)
c906108c 1366
6e0ce711 1367dstread.o: dstread.c $(gdb_string_h)
c906108c 1368
b6af0555
JS
1369dwarf2cfi.o: dwarf2cfi.c $(defs_h) $(symtab_h) $(symfile_h) $(objfiles_h) \
1370 $(target_h) $(inferior_h) $(regcache_h) $(dwarf2cfi_h)
1371
17732724
AC
1372dwarfread.o: dwarfread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1373 $(expression_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \
1374 $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1375
17732724
AC
1376dwarf2read.o: dwarf2read.c $(bfd_h) $(buildsym_h) $(defs_h) \
1377 $(expression_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \
1378 $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1379
17732724
AC
1380elfread.o: elfread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1381 $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(symtab_h) $(gdb_string_h) \
c906108c
SS
1382 $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
1383
6e0ce711 1384environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) $(gdb_string_h)
c906108c
SS
1385
1386eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
17732724 1387 $(gdbtypes_h) $(language_h) $(symtab_h) $(target_h) $(value_h) \
6e0ce711 1388 $(gdb_string_h) $(cp_abi_h)
c906108c 1389
c2c6d25f 1390event-loop.o: event-loop.c $(defs_h) $(top_h) $(event_loop_h) $(event_top_h)
cd0fc7c3 1391
17732724
AC
1392event-top.o: event-top.c $(top_h) $(readline_headers) \
1393 $(defs_h) $(inferior_h) $(event_loop_h) $(event_top_h) $(terminal_h) \
1b0cad1c 1394 $(gdbcmd_h) $(target_h)
cd0fc7c3 1395
2acceee2
JM
1396inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(inf_loop_h) $(event_loop_h) \
1397 $(event_top_h)
1398
c906108c 1399exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
17732724 1400 $(target_h) $(language_h) $(gdb_string_h) $(completer_h) $(value_h)
c906108c
SS
1401
1402expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1403 $(language_h) $(parser_defs_h) $(symtab_h) $(value_h)
c906108c 1404
1b0cad1c 1405findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \
6e0ce711 1406 $(gdb_string_h) $(regcache_h)
c906108c 1407
367e21d8
AC
1408frame.o: frame.c $(defs_h) $(frame_h) $(target_h) $(value_h) $(inferior_h) \
1409 $(regcache_h)
d65fe839 1410
1b0cad1c 1411regcache.o: regcache.c $(defs_h) $(inferior_h) $(target_h) $(regcache_h)
32178cab 1412
03f2053f 1413fork-child.o: fork-child.c gdb_wait.h $(defs_h) $(gdbcore_h) \
17732724 1414 $(inferior_h) $(target_h) $(terminal_h) $(gdbthread_h) $(gdb_string_h)
c906108c 1415
e56ac5c3 1416install-gdbtk:
f0b743a9 1417 $(SHELL) $(srcdir)/../mkinstalldirs $(GDBTK_LIBRARY) ; \
e56ac5c3 1418 $(SHELL) $(srcdir)/../mkinstalldirs \
f0b743a9
KS
1419 $(GDBTK_LIBRARY)/images \
1420 $(GDBTK_LIBRARY)/images2 ; \
1421 $(SHELL) $(srcdir)/../mkinstalldirs $(GDBTK_LIBRARY)/help \
1422 $(GDBTK_LIBRARY)/help/images \
1423 $(GDBTK_LIBRARY)/help/trace ; \
e56ac5c3 1424 cd $(srcdir)/gdbtk/library ; \
1302fd5e 1425 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; \
e56ac5c3 1426 do \
f0b743a9 1427 $(INSTALL_DATA) $$i $(GDBTK_LIBRARY)/$$i ; \
e56ac5c3
AC
1428 done ;
1429
3fc11d3e
JM
1430gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
1431 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
1432
1433gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c \
1434 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1435 $(symtab_h) $(inferior_h) $(command_h) \
17732724 1436 $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \
6e0ce711 1437 $(tracepoint_h) $(top_h)
3fc11d3e
JM
1438 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1439 $(ITK_CFLAGS) $(TIX_CFLAGS) \
1440 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
f0b743a9 1441 $(srcdir)/gdbtk/generic/gdbtk.c \
d1c3b63a 1442 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
3fc11d3e 1443
ecb9ce7e
KS
1444gdbtk-bp.o: $(srcdir)/gdbtk/generic/gdbtk-bp.c \
1445 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
1446 $(defs_h) $(breakpoint_h) $(tracepoint_h) $(symfile_h) $(symtab_h)
1447 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1448 $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1449 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-bp.c \
f0b743a9 1450 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
ecb9ce7e 1451
3fc11d3e 1452gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
ecb9ce7e 1453 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
3fc11d3e 1454 $(defs_h) $(symtab_h) $(inferior_h) \
17732724
AC
1455 $(command_h) $(bfd_h) $(top_h) $(symfile_h) $(objfiles_h) $(target_h) \
1456 $(gdb_string_h) $(tracepoint_h) $(source_h) $(regcache_h)
3fc11d3e
JM
1457 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1458 $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
ecb9ce7e 1459 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
f0b743a9 1460 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
3fc11d3e
JM
1461
1462gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c \
1463 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1464 $(symtab_h) $(inferior_h) $(command_h) \
17732724
AC
1465 $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \
1466 $(tracepoint_h)
3fc11d3e
JM
1467 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1468 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
f0b743a9 1469 $(srcdir)/gdbtk/generic/gdbtk-hooks.c -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
3fc11d3e 1470
ecb9ce7e
KS
1471gdbtk-register.o: $(srcdir)/gdbtk/generic/gdbtk-register.c \
1472 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
1473 $(defs_h) $(frame_h) $(value_h)
1474 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1475 $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1476 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-register.c \
f0b743a9 1477 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
ecb9ce7e
KS
1478
1479gdbtk-stack.o: $(srcdir)/gdbtk/generic/gdbtk-stack.c \
1480 $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \
1481 $(srcdir)/gdbtk/generic/gdbtk-wrapper.h \
1482 $(defs_h) $(frame_h) $(value_h) $(target_h) $(breakpoint_h) \
17732724 1483 $(linespec_h)
ecb9ce7e
KS
1484 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1485 $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1486 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-stack.c \
f0b743a9 1487 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\"
ecb9ce7e 1488
3fc11d3e
JM
1489gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c \
1490 $(srcdir)/gdbtk/generic/gdbtk.h \
2bf63d86 1491 $(defs_h) $(value_h) $(varobj_h)
3fc11d3e
JM
1492 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1493 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1494 $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1495
1496gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c \
1497 $(srcdir)/gdbtk/generic/gdbtk-wrapper.h
1498 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(GDBTK_CFLAGS)\
1499 $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1500
1501v850ice.o: v850ice.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
1b0cad1c 1502 $(frame_h) $(breakpoint_h) $(gdbcore_h) $(value_h) $(symfile_h) \
17732724 1503 $(gdb_string_h) $(target_h) $(objfiles_h) $(regcache_h)
3fc11d3e
JM
1504 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1505 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1506 $(srcdir)/v850ice.c
1507
b4a20239
AC
1508v850-tdep.o: v850-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(obstack_h) \
1509 $(target_h) $(value_h) $(bfd_h) $(gdb_string_h) $(gdbcore_h) \
367e21d8 1510 $(symfile_h) $(arch_utils_h) $(regcache_h)
b4a20239 1511
c906108c 1512tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \
1b0cad1c 1513 $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) $(target_h) \
17732724
AC
1514 $(language_h) $(gdb_string_h) $(readline_headers) $(remote_h) \
1515 $(linespec_h) $(regcache_h) $(completer_h)
c906108c
SS
1516
1517gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h)
1518
1ad03bde 1519arch-utils.o: arch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \
39d4ef09 1520 $(arch_utils_h) gdb_assert.h
c0e8c252 1521
17732724
AC
1522gdbtypes.o: gdbtypes.c $(bfd_h) $(complaints_h) $(defs_h) $(expression_h) \
1523 $(gdbtypes_h) $(language_h) $(objfiles_h) $(symfile_h) $(symtab_h) \
1524 $(target_h) $(value_h) $(gdb_string_h) $(wrapper_h) $(cp_abi_h)
c906108c 1525
3a95698a 1526go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) gdb_wait.h $(gdbcore_h) \
1b0cad1c 1527 $(command_h) $(floatformat_h) $(target_h) i387-nat.h $(regcache_h)
3a95698a 1528
c906108c
SS
1529gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
1530 exc_request_U.h msg_U.h gnu-nat.h
1531
529acb48
JB
1532gnu-v2-abi.o: gnu-v2-abi.c $(defs_h) $(gdb_string_h) $(symtab_h) \
1533 $(gdbtypes_h) $(value_h) $(demangle_h) $(cp_abi_h)
015a42b4 1534
7ed49443
JB
1535gnu-v3-abi.o: gnu-v2-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(demangle_h)
1536
367e21d8 1537h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(regcache_h)
c906108c 1538
1b0cad1c 1539h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis_asm_h) $(defs_h) \
c906108c 1540 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
367e21d8 1541 $(value_h) $(regcache_h)
c906108c 1542
367e21d8 1543hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c 1544
6e0ce711 1545hpacc-abi.o: hpacc-abi.c $(defs_h) $(cp_abi_h) $(gdb_string_h) $(gdbtypes_h) \
015a42b4
JB
1546 $(value_h) $(gdbcore_h)
1547
03f2053f 1548hppa-tdep.o: hppa-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
17732724 1549 $(inferior_h) $(objfiles_h) $(symfile_h) $(target_h) $(regcache_h)
c906108c 1550
1b0cad1c 1551hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(target_h) \
367e21d8 1552 $(regcache_h)
c906108c 1553
1b0cad1c 1554hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(target_h) \
367e21d8 1555 $(regcache_h)
c906108c
SS
1556
1557i386gnu-nat.o: gnu-nat.h
1558
6e0ce711 1559i386-tdep.o: i386-tdep.c $(defs_h) $(gdb_string_h) $(frame_h) \
1b0cad1c 1560 $(inferior_h) $(gdbcore_h) $(target_h) $(floatformat_h) \
d16aafd8 1561 $(symtab_h) $(gdbcmd_h) $(command_h) $(arch_utils_h) $(regcache_h) \
fd0407d6 1562 $(doublest_h) $(value_h)
c906108c 1563
52b98211
EZ
1564i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h)
1565
c906108c 1566i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
17732724 1567 $(language_h) $(gdbcore_h) $(floatformat_h) $(target_h) $(regcache_h)
c906108c 1568
367e21d8 1569i386b-nat.o: i386b-nat.c $(defs_h) $(regcache_h)
c906108c 1570
0123ceaf
MK
1571i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(frame_h) $(gdb_core_h) \
1572 $(regcache_h)
1573
1574i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h)
1575
25630444
MK
1576i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h)
1577
1b0cad1c 1578i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h)
c906108c 1579
1b0cad1c 1580i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \
367e21d8 1581 $(regcache_h)
c906108c 1582
1b0cad1c 1583i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) $(target_h) \
367e21d8 1584 $(regcache_h)
c906108c 1585
367e21d8
AC
1586i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1587 $(regcache_h)
c906108c
SS
1588
1589i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
17732724 1590 $(inferior_h) $(language_h) $(target_h)
c906108c 1591
d4f3574e 1592i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
17732724 1593 $(symtab_h) $(symfile_h) $(objfiles_h) $(regcache_h)
e7ee86a9
JB
1594
1595i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
367e21d8 1596 $(value_h) $(regcache_h)
d4f3574e 1597
367e21d8 1598i386v4-nat.o: i386v4-nat.c $(defs_h) $(regcache_h)
c906108c
SS
1599
1600i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
17732724 1601 $(inferior_h) $(language_h) $(regcache_h) $(doublest_h) i386-tdep.h
c906108c 1602
0fc087fe
MK
1603i387-nat.o: i387-nat.c $(defs_h) $(inferior_h) $(value_h) $(regcache_h) \
1604 i387-nat.h
1605
c906108c 1606i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
367e21d8
AC
1607 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h) \
1608 $(regcache_h)
c906108c 1609
76d689a6 1610ia64-linux-nat.o: ia64-linux-nat.c $(defs_h) $(inferior_h) $(target_h) \
367e21d8 1611 $(gdbcore_h) $(regcache_h)
76d689a6 1612
8064c6ae
KB
1613ia64-linux-tdep.o: ia64-linux-tdep.c $(defs_h) $(arch_utils_h)
1614
1b0cad1c 1615ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) $(symfile_h) $(gdbcore_h) \
17732724 1616 $(arch_utils_h) $(floatformat_h) $(objfiles_h) $(value_h) \
d16aafd8 1617 $(INCLUDE_DIR)/elf/common.h $(regcache_h) $(doublest_h)
76d689a6 1618
c906108c 1619infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
17732724 1620 $(inferior_h) $(target_h) $(language_h) $(symfile_h) $(gdb_string_h) \
d75b5104 1621 $(ui_out_h) $(completer_h)
c906108c
SS
1622
1623inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
17732724 1624 $(target_h) $(terminal_h) $(gdbthread_h) $(gdb_string_h)
c906108c 1625
1b0cad1c 1626infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \
6e0ce711 1627 $(gdb_string_h) gdb_wait.h $(command_h) $(regcache_h)
c906108c 1628
210661e7 1629infrun.o: infrun.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(cli_script_h) \
fd0407d6 1630 $(gdbcore_h) $(value_h) \
1b0cad1c 1631 $(inferior_h) $(target_h) $(gdbthread_h) $(gdb_string_h) $(event_loop_h) \
367e21d8 1632 $(event_top_h) $(regcache_h)
c906108c 1633
03f2053f 1634inftarg.o: inftarg.c gdb_wait.h $(defs_h) $(gdbcore_h) $(inferior_h) \
17732724 1635 $(target_h) $(terminal_h) $(command_h)
c906108c 1636
367e21d8 1637irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(regcache_h)
1b0cad1c 1638irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \
17732724
AC
1639 $(symtab_h) $(symfile_h) $(objfiles_h) $(command_h) $(frame_h) \
1640 gdb_regex.h $(language_h) $(gdb_string_h) $(regcache_h)
c906108c 1641
c906108c 1642jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
17732724 1643 $(expression_h) $(parser_defs_h) $(language_h) $(symfile_h) \
68c42665 1644 $(objfiles_h) $(gdb_string_h) $(value_h) $(c_lang_h) jv-lang.h \
17732724 1645 $(gdbcore_h)
c906108c
SS
1646
1647jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
6e0ce711 1648 $(value_h) $(demangle_h) jv-lang.h $(gdb_string_h) \
68c42665 1649 $(typeprint_h) $(c_lang_h) $(cp_abi_h)
c906108c
SS
1650
1651jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
17732724 1652 $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \
68c42665 1653 $(language_h) jv-lang.h $(c_lang_h) gdbcore.h $(annotate_h)
c906108c 1654
17732724
AC
1655kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) $(target_h) $(gdb_string_h) \
1656 kod.h
96baa820 1657
6e0ce711 1658kod-cisco.o: kod-cisco.c $(defs_h) $(gdb_string_h) kod.h
96baa820 1659
c906108c 1660language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
17732724 1661 $(gdbcmd_h) $(gdbtypes_h) $(language_h) $(parser_defs_h) $(symtab_h) \
1b0cad1c 1662 $(target_h) $(value_h) $(gdb_string_h)
c906108c
SS
1663
1664lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1b0cad1c 1665 $(target_h) $(regcache_h)
c906108c
SS
1666
1667m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1668 $(language_h) m2-lang.h $(parser_defs_h) $(symtab_h)
c906108c
SS
1669
1670m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
17732724
AC
1671 $(gdbcore_h) $(gdbtypes_h) $(language_h) m2-lang.h $(symtab_h) \
1672 $(target_h) $(value_h) $(gdb_string_h)
c906108c
SS
1673
1674m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
17732724 1675 $(valprint_h) m2-lang.h
c906108c 1676
17732724
AC
1677m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) $(language_h) \
1678 $(target_h) gdb_wait.h $(gdbcmd_h) $(gdbcore_h) $(regcache_h)
c906108c 1679
df115219 1680p-lang.o: p-lang.c p-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1681 $(language_h) $(parser_defs_h) $(symtab_h) $(gdb_string_h)
df115219
PM
1682
1683p-typeprint.o: p-typeprint.c p-lang.h $(defs_h) $(expression_h) \
17732724
AC
1684 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) \
1685 $(target_h) $(typeprint_h) $(value_h) $(gdb_string_h)
df115219
PM
1686
1687p-valprint.o: p-valprint.c p-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724 1688 $(language_h) $(symtab_h) $(valprint_h) $(value_h) $(gdb_string_h)
df115219 1689
1a12f22f
SC
1690m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1691 $(gdbcore_h) gdb_string.h
1692
c906108c 1693m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
6e0ce711 1694 $(gdbcore_h) $(gdb_string_h) $(regcache_h)
c906108c 1695
1b0cad1c 1696m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h)
c906108c
SS
1697
1698m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1b0cad1c 1699 $(language_h) $(gdbcore_h) $(floatformat_h) $(target_h) $(regcache_h)
c906108c 1700
367e21d8 1701m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c 1702
367e21d8 1703m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c 1704
6e0ce711 1705mac-nat.o: mac-nat.c $(defs_h) $(gdb_string_h) $(regcache_h)
c906108c 1706
17732724 1707main.o: main.c $(top_h) $(defs_h) $(gdb_string_h) $(event_loop_h) \
1b0cad1c 1708 $(symfile_h) $(gdbcore_h) $(ui_out_h)
c906108c 1709
17732724
AC
1710maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1711 $(language_h) $(expression_h) $(objfiles_h) $(symfile_h)
c906108c 1712
58841d58
AC
1713mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) \
1714 $(symtab_h) $(symfile_h) $(gdbcore_h) $(inferior_h)
96baa820 1715
17732724
AC
1716mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \
1717 $(gdb_string_h) $(regcache_h) $(serial_h)
96baa820 1718
17732724
AC
1719mdebugread.o: mdebugread.c $(buildsym_h) $(complaints_h) $(bfd_h) $(defs_h) \
1720 $(expression_h) $(gdb_stabs_h) $(gdbcore_h) $(gdbtypes_h) \
686c918f 1721 $(language_h) $(objfiles_h) $(stabsread_h) \
17732724 1722 $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1723
367e21d8 1724mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h) $(regcache_h)
c906108c 1725
088d891f
AC
1726# os9kread assumes that sizeof(char*) <= sizeof(int). This looses on
1727# 64 bit targets where often, sizeof(int)=4 but sizeof(char*)=9.
17732724
AC
1728os9kread.o: os9kread.c $(buildsym_h) $(complaints_h) $(bfd_h) $(defs_h) \
1729 $(expression_h) $(gdb_stabs_h) $(gdbcore_h) $(gdbtypes_h) \
1730 $(language_h) $(objfiles_h) $(stabsread_h) $(symfile_h) \
1731 $(symtab_h) $(target_h) $(gdb_string_h)
e5d63811
BH
1732 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
1733 $(srcdir)/os9kread.c
c906108c
SS
1734
1735mem-break.o: mem-break.c $(defs_h)
1736
17732724 1737minsyms.o: minsyms.c $(bfd_h) $(defs_h) $(objfiles_h) $(symfile_h) \
7ed49443 1738 $(symtab_h) $(gdb_string_h) $(value_h) $(cp_abi_h)
c906108c 1739
d2b57b94
DJ
1740mips-linux-nat.o: mips-linux-nat.c $(defs_h)
1741
1742mips-linux-tdep.o: mips-linux-tdep.c $(defs_h) $(gdbcore_h) $(target_h) \
1743 solib-svr4.h
1744
367e21d8 1745mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c
SS
1746
1747mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
367e21d8 1748 $(arch_utils_h) $(regcache_h) \
17732724 1749 $(inferior_h) $(language_h) $(objfiles_h) $(symfile_h) $(gdb_string_h)
c906108c 1750
17732724
AC
1751mipsread.o: mipsread.c $(buildsym_h) $(complaints_h) $(bfd_h) $(defs_h) \
1752 $(expression_h) $(gdb_stabs_h) $(gdbcore_h) $(gdbtypes_h) \
1753 $(language_h) $(objfiles_h) $(stabsread_h) $(symfile_h) $(symtab_h) \
6e0ce711 1754 $(gdb_string_h)
c906108c 1755
1b0cad1c 1756mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \
367e21d8 1757 $(regcache_h)
c906108c 1758
6e0ce711
JB
1759mn10300-tdep.o: mn10300-tdep.c $(defs_h) $(frame_h) $(inferior_h) \
1760 $(obstack_h) $(target_h) $(value_h) $(bfd_h) gdb_string.h \
1761 $(gdbcore_h) $(symfile_h) $(regcache_h) $(arch-utils.h)
1762
17732724
AC
1763monitor.o: monitor.c $(monitor_h) $(bfd_h) $(defs_h) $(gdbcmd_h) \
1764 $(inferior_h) $(target_h) $(serial_h) $(terminal_h) $(gdb_string_h) \
1765 $(regcache_h)
c906108c 1766
03f2053f 1767Onindy.o: nindy-share/Onindy.c gdb_wait.h nindy-share/block_io.h \
c906108c
SS
1768 nindy-share/env.h
1769 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1770
03f2053f 1771nindy.o: nindy-share/nindy.c gdb_wait.h nindy-share/block_io.h \
c906108c
SS
1772 nindy-share/env.h
1773 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1774
17732724
AC
1775nlmread.o: nlmread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1776 $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(symtab_h) $(stabsread_h) \
6e0ce711 1777 $(gdb_string_h)
c906108c 1778
c906108c
SS
1779ttyflush.o: nindy-share/ttyflush.c
1780 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1781
1782nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
1783
1b0cad1c 1784ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis_asm_h) $(defs_h)
c906108c 1785
17732724 1786objfiles.o: objfiles.c $(bfd_h) $(defs_h) $(objfiles_h) $(symfile_h) \
6e0ce711 1787 $(symtab_h) $(gdb_string_h) $(breakpoint_h)
c906108c 1788
17732724
AC
1789solib-osf.o: solib-osf.c $(defs_h) $(inferior_h) $(symtab_h) $(objfiles_h) \
1790 $(symfile_h) $(target_h) $(gdb_string_h) $(solist_h)
c906108c 1791
17732724
AC
1792somread.o: somread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1793 $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1794
367e21d8 1795somsolib.o: somsolib.c $(defs_h) $(regcache_h)
c906108c 1796
367e21d8 1797pa64solib.o: pa64solib.c $(defs_h) $(regcache_h)
53a5351d 1798
1b0cad1c 1799hpux-thread.o: hpux-thread.c $(defs_h) $(gdbthread_h) $(target_h) inferior.h \
367e21d8 1800 $(regcache_h)
c906108c
SS
1801 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1802 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1803
1804# FIXME!!!
17732724
AC
1805hpread.o: hpread.c $(bfd_h) $(buildsym_h) $(complaints_h) $(defs_h) \
1806 $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 1807
17732724
AC
1808hp-psymtab-read.o: hp-psymtab-read.c $(hpread_h) $(bfd_h) $(buildsym_h) \
1809 $(complaints_h) $(defs_h) $(gdb_stabs_h) $(objfiles_h) $(symfile_h) \
1810 $(symtab_h) $(gdb_string_h)
c906108c 1811
17732724
AC
1812hp-symtab-read.o: hp-symtab-read.c $(hpread_h) $(bfd_h) $(buildsym_h) \
1813 $(complaints_h) $(defs_h) $(gdb_stabs_h) $(objfiles_h) $(symfile_h) \
1814 $(symtab_h) $(gdb_string_h)
c906108c
SS
1815# END FIXME!!!
1816
1817parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
17732724
AC
1818 $(gdbtypes_h) $(language_h) $(parser_defs_h) $(symtab_h) $(value_h) \
1819 $(gdb_string_h) $(linespec_h) $(doublest_h)
c906108c 1820
6e0ce711 1821ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) \
1b0cad1c 1822 $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \
17732724 1823 $(objfiles_h) $(gdb_stabs_h) $(serial_h) ocd.h $(regcache_h)
c906108c 1824
2559291b 1825ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdbcore_h) $(frame_h) \
16333c4f 1826 $(inferior_h) $(target_h) $(regcache_h) ppc-tdep.h
2559291b
KB
1827
1828ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
fd0407d6 1829 $(target_h) ppc-tdep.h $(regcache_h) $(value_h)
2559291b 1830
17732724
AC
1831ppcbug-rom.o: ppcbug-rom.c $(monitor_h) $(bfd_h) gdb_wait.h $(defs_h) \
1832 $(gdbcmd_h) $(inferior_h) $(target_h) $(serial_h) $(terminal_h) \
1833 $(regcache_h)
c906108c
SS
1834
1835printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
17732724 1836 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \
1b0cad1c 1837 $(symfile_h) $(symtab_h) $(target_h) $(gdb_string_h) $(ui_out_h) \
d75b5104 1838 $(completer_h)
c906108c 1839
4ce44c66
JM
1840# FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1841# match output format strings.
c906108c 1842procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1b0cad1c 1843 $(target_h) $(gdb_string_h) $(gdbthread_h) proc-utils.h
e5d63811 1844 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/procfs.c
c906108c 1845
d75b5104 1846proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) proc-utils.h $(completer_h)
c3f6f71d 1847
0fda6bd2 1848proc-events.o: proc-events.c $(defs_h)
c3f6f71d 1849
0fda6bd2 1850proc-flags.o: proc-flags.c $(defs_h)
c3f6f71d 1851
0fda6bd2 1852proc-why.o: proc-why.c $(defs_h) proc-utils.h
c3f6f71d 1853
1b0cad1c 1854sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) $(inferior_h) \
367e21d8 1855 $(gdbcmd_h) $(regcache_h)
d4f3574e 1856
4b09dc8c
MS
1857linux-proc.o: linux-proc.c $(defs_h)
1858
03f2053f 1859linux-thread.o: linux-thread.c $(breakpoint_h) $(gdbcmd_h) gdb_wait.h \
1b0cad1c 1860 $(gdbthread_h) $(gdbcore_h) $(inferior_h) $(target_h) $(defs_h)
d4f3574e 1861
9572d2b6 1862thread-db.o: thread-db.c $(defs_h) gdb_assert.h gdb_proc_service.h \
1b0cad1c 1863 gdb_thread_db.h $(bfd_h) $(gdbthread_h) $(inferior_h) $(symfile_h) \
17732724 1864 $(objfiles_h) $(target_h) $(regcache_h)
9572d2b6 1865
1b0cad1c 1866lin-lwp.o: lin-lwp.c $(defs_h) gdb_assert.h gdb_wait.h $(gdbthread_h) \
9572d2b6
MS
1867 $(inferior_h) $(target_h) $(gdbcmd_h) $(regcache_h)
1868
1869proc-service.o: proc-service.c $(defs_h) $(inferior_h) gdb_proc_service.h \
1870 $(symtab_h) $(target_h) gregset.h
1871
9b4ff276
AC
1872# OBSOLETE remote-adapt.o: remote-adapt.c $(defs_h) $(gdbcore_h) \
1873# OBSOLETE $(inferior_h) $(target_h) $(terminal_h) $(gdb_string_h) $(regcache_h)
c906108c 1874
1b0cad1c 1875remote-array.o: remote-array.c $(defs_h) $(gdbcore_h) $(target_h) \
17732724 1876 $(gdb_string_h) $(command_h) $(serial_h) $(monitor_h) $(remote_utils_h) \
367e21d8 1877 $(version_h) $(regcache_h)
c906108c 1878
82467003 1879remote-rdi.o: remote-rdi.c $(defs_h) $(gdbcore_h) \
d75b5104 1880 $(inferior_h) $(gdb_string_h) $(completer_h)
c906108c
SS
1881
1882rdi-share/libangsd.a: force
1883 @dir=rdi-share; \
1884 if [ -f ./$${dir}/Makefile ] ; then \
1885 r=`pwd`; export r; \
1886 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1887 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1888 else \
1889 true; \
1890 fi
1891
82467003 1892remote-rdp.o: remote-rdp.c $(defs_h) $(gdbcore_h) \
6e0ce711 1893 $(inferior_h) $(gdb_string_h)
c906108c 1894
17732724
AC
1895remote-bug.o: remote-bug.c $(defs_h) $(gdbcore_h) $(serial_h) \
1896 $(inferior_h) $(target_h) $(terminal_h) $(remote_utils_h) \
1897 $(gdb_string_h) $(regcache_h)
c906108c 1898
1b0cad1c 1899remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) $(target_h) \
17732724 1900 $(serial_h) $(gdb_string_h) $(regcache_h)
c906108c 1901
9b4ff276
AC
1902# OBSOLETE remote-eb.o: remote-eb.c $(srcdir)/config/a29k/tm-a29k.h \
1903# OBSOLETE $(defs_h) $(gdbcore_h) $(inferior_h) $(symfile_h) $(target_h) \
1904# OBSOLETE $(terminal_h) $(gdb_string_h) $(regcache_h)
c906108c 1905
82467003 1906remote-es.o: remote-es.c $(bfd_h) $(command_h) $(defs_h) \
17732724 1907 $(inferior_h) $(remote_utils_h) $(terminal_h) $(gdb_string_h) \
fd0407d6 1908 $(symfile_h) $(regcache_h) $(value_h)
c906108c 1909
82467003 1910remote-est.o: remote-est.c $(defs_h) $(gdbcore_h) \
17732724 1911 $(inferior_h) $(serial_h) $(target_h) $(terminal_h) $(regcache_h)
82467003
C
1912
1913remote-hms.o: remote-hms.c $(defs_h) $(gdbcore_h) \
17732724 1914 $(inferior_h) $(serial_h) $(target_h) $(terminal_h) $(regcache_h)
c906108c 1915
82467003 1916remote-mips.o: remote-mips.c $(defs_h) $(gdbcmd_h) \
17732724
AC
1917 $(gdbcore_h) $(inferior_h) $(serial_h) $(symfile_h) $(target_h) \
1918 $(regcache_h)
c906108c 1919
9b4ff276
AC
1920# OBSOLETE remote-mm.o: remote-mm.c $(bfd_h) $(defs_h) $(inferior_h) \
1921# OBSOLETE minimon.h $(target_h) $(terminal_h) $(gdb_string_h) $(regcache_h)
c906108c 1922
82467003 1923remote-nindy.o: remote-nindy.c $(floatformat_h) $(command_h) \
c906108c
SS
1924 $(defs_h) $(gdbcore_h) $(inferior_h) \
1925 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1b0cad1c 1926 $(symfile_h) $(regcache_h)
c906108c 1927
82467003 1928remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) \
17732724
AC
1929 $(command_h) $(monitor_h) $(remote_utils_h) $(symtab_h) $(symfile_h) \
1930 $(objfiles_h) $(gdb_stabs_h) $(gdb_string_h) $(regcache_h)
c906108c 1931
82467003 1932remote-sds.o: remote-sds.c $(bfd_h) $(defs_h) $(gdbcmd_h) \
17732724
AC
1933 $(inferior_h) $(remote_utils_h) $(symfile_h) $(terminal_h) \
1934 $(gdb_string_h) $(regcache_h)
c906108c 1935
82467003 1936remote-sim.o: remote-sim.c $(defs_h) $(gdbcore_h) \
17732724 1937 $(inferior_h) $(target_h) $(terminal_h) $(gdb_string_h) \
367e21d8 1938 $(INCLUDE_DIR)/callback.h $(regcache_h)
c906108c 1939
17732724 1940remote-st.o: remote-st.c $(defs_h) $(gdbcore_h) $(serial_h) \
1b0cad1c 1941 $(target_h) $(gdb_string_h) $(regcache_h)
c906108c 1942
9b4ff276
AC
1943# OBSOLETE remote-udi.o: remote-udi.c $(bfd_h) $(defs_h) $(gdbcmd_h) \
1944# OBSOLETE $(inferior_h) $(target_h) $(terminal_h) $(udiheaders) $(gdb_string_h) \
1945# OBSOLETE $(regcache_h)
c906108c 1946
17732724 1947remote-vx.o: remote-vx.c $(complaints_h) $(defs_h) $(gdbcmd_h) \
1b0cad1c 1948 $(gdbcore_h) $(inferior_h) $(target_h) vx-share/dbgRpcLib.h \
c906108c 1949 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
17732724 1950 vx-share/xdr_rdb.h $(gdb_stabs_h) $(objfiles_h) $(symfile_h) $(bfd_h) \
6e0ce711 1951 $(gdb_string_h) $(regcache_h)
c906108c 1952
17732724 1953remote-vx29k.o: remote-vx29k.c $(complaints_h) $(defs_h) $(gdbcmd_h) \
1b0cad1c 1954 $(gdbcore_h) $(inferior_h) $(target_h) vx-share/dbgRpcLib.h \
c906108c 1955 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
6e0ce711 1956 vx-share/xdr_rdb.h $(gdb_string_h) $(regcache_h)
c906108c 1957
6e0ce711 1958ocd.o: ocd.c ocd.h $(gdbcore_h) $(gdb_string_h) $(frame_h) $(inferior_h) \
17732724
AC
1959 $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) $(objfiles_h) \
1960 $(gdb_stabs_h) $(dcache_h) $(serial_h) $(regcache_h)
c906108c
SS
1961
1962remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
6e0ce711 1963 $(inferior_h) $(remote_utils_h) $(gdb_string_h) $(regcache_h)
c906108c 1964
03f2053f 1965remote.o: remote.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
17732724
AC
1966 $(inferior_h) $(remote_utils_h) $(symfile_h) $(terminal_h) \
1967 $(gdb_string_h) $(event_loop_h) $(event_top_h) $(remote_h) \
1968 $(inf_loop_h) $(value_h)
c906108c 1969
03f2053f 1970remote-nrom.o: remote-nrom.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
17732724 1971 $(inferior_h) $(remote_utils_h) $(symfile_h) $(terminal_h)
c906108c 1972
17732724
AC
1973rom68k-rom.o: rom68k-rom.c $(monitor_h) $(bfd_h) gdb_wait.h $(defs_h) \
1974 $(gdbcmd_h) $(inferior_h) $(target_h) $(serial_h) $(terminal_h) \
a2e2dd80 1975 $(regcache_h) $(value_h)
c906108c 1976
1b0cad1c 1977rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(target_h) \
17732724
AC
1978 $(gdbcore_h) $(xcoffsolib_h) $(symfile_h) $(objfiles_h) \
1979 $(gdb_stabs_h) $(regcache_h)
c906108c
SS
1980
1981rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1fcc0bb8 1982 $(target_h) ppc-tdep.h $(regcache_h) $(value_h) $(parser_defs_h)
c906108c 1983
e81b020b
JB
1984s390-tdep.o: s390-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) $(inferior_h) \
1985 $(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) \
1986 $(objfiles_h) $(bfd_h) $(floatformat_h) $(regcache_h) $(value_h)
1987
1988s390-nat.o: s390-nat.c $(defs_h) $(regcache_h)
1989
68c42665 1990scm-exp.o: $(defs_h) $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
c906108c
SS
1991 scm-lang.h scm-tags.h
1992
68c42665 1993scm-lang.o: $(defs_h) $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) \
6e0ce711 1994 scm-lang.h scm-tags.h $(gdb_string_h) $(gdbcore_h)
c906108c 1995
17732724
AC
1996scm-valprint.o: $(defs_h) $(value_h) $(parser_defs_h) $(language_h) \
1997 scm-lang.h $(valprint_h) $(gdbcore_h)
c906108c 1998
17732724 1999ser-go32.o: ser-go32.c $(defs_h) $(serial_h)
c906108c 2000
17732724 2001ser-pipe.o: ser-pipe.c $(defs_h) $(serial_h) $(gdb_string_h) $(ser_unix_h)
43e526b9 2002
17732724 2003ser-tcp.o: ser-tcp.c $(defs_h) $(serial_h) $(gdb_string_h) $(ser_unix_h)
c906108c 2004
17732724 2005ser-unix.o: ser-unix.c $(defs_h) $(serial_h) $(ser_unix_h)
c906108c 2006
17732724 2007serial.o: serial.c $(defs_h) $(serial_h) $(gdb_string_h)
c906108c 2008
1b0cad1c 2009sh-tdep.o: sh-tdep.c $(bfd_h) $(dis_asm_h) \
c906108c 2010 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
367e21d8 2011 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(arch_utils_h) \
d16aafd8 2012 $(regcache_h) $(doublest_h)
c906108c 2013
17732724
AC
2014sh3-rom.o: sh3-rom.c $(monitor_h) $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
2015 $(inferior_h) $(target_h) $(serial_h) $(terminal_h) $(arch_utils_h) \
367e21d8 2016 $(regcache_h)
c906108c 2017
1b0cad1c 2018signals.o: signals.c $(defs_h) $(target_h)
0150732f 2019
17732724
AC
2020mon960-rom.o: mon960-rom.c $(monitor_h) $(bfd_h) gdb_wait.h $(defs_h) \
2021 $(gdbcmd_h) $(inferior_h) $(target_h) $(serial_h) $(terminal_h)
c906108c
SS
2022
2023solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
17732724
AC
2024 $(objfiles_h) gdb_regex.h $(symfile_h) $(target_h) $(gdb_string_h) \
2025 $(solist_h) $(completer_h)
13437d4b 2026
17732724
AC
2027solib-sunos.o: solib-sunos.c $(defs_h) $(symfile_h) $(objfiles_h) \
2028 $(gdbcore_h) $(inferior_h) $(solist_h)
ab31aa69 2029
17732724
AC
2030solib-svr4.o: solib-svr4.c $(defs_h) $(gdbcore_h) $(inferior_h) $(objfiles_h) \
2031 $(symfile_h) $(target_h) $(solist_h) solib-svr4.h
c906108c 2032
21479ded
KB
2033solib-legacy.o: solib-legacy.c $(defs_h) $(gdbcore_h) solib-svr4.h
2034
c906108c 2035source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
17732724
AC
2036 $(gdbcore_h) $(language_h) $(objfiles_h) gdb_regex.h $(symfile_h) \
2037 $(symtab_h) $(gdb_string_h) $(source_h) $(completer_h) $(linespec_h) \
f77b92bf 2038 $(ui_out_h)
c906108c 2039
d2b57b94
DJ
2040sparc-linux-nat.o: sparc-linux-nat.c $(defs_h) $(regcache_h)
2041
c906108c 2042sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1b0cad1c 2043 $(target_h) $(regcache_h)
c906108c
SS
2044
2045sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
17732724 2046 $(inferior_h) $(objfiles_h) $(symfile_h) $(target_h) $(gdb_string_h) \
367e21d8 2047 $(arch_utils_h) $(regcache_h)
c906108c 2048
1b0cad1c 2049sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) $(target_h) $(regcache_h)
c906108c 2050
0c884e17
CV
2051xstormy16-tdep.o: xstormy16-tdep.c $(defs_h) $(value_h) $(inferior_h) \
2052 $(symfile_h) $(arch_utils_h) $(regcache_h) $(gdbcore_h)
2053
c906108c
SS
2054dsrec.o: dsrec.c $(defs_h) srec.h
2055
2056stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
17732724
AC
2057 $(INCLUDE_DIR)/aout/stab_gnu.h $(buildsym_h) $(complaints_h) \
2058 $(defs_h) $(gdbtypes_h) $(objfiles_h) $(stabsread_h) $(symfile_h) \
2059 $(symtab_h) $(gdb_string_h) $(doublest_h)
c906108c
SS
2060
2061stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
17732724 2062 $(language_h) $(target_h) $(gdb_string_h) $(ui_out_h)
c906108c 2063
d9fcf2fb 2064ui-file.o: ui-file.c $(defs_h) ui-file.h
f9eb4b01
EZ
2065tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(srcdir)/tui/tui-file.h \
2066 $(srcdir)/tui/tuiIO.h
da59e081
JM
2067 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c
2068
7a292a7a 2069ax-general.o: ax-general.c $(ax_h) $(defs_h) $(value_h)
1b0cad1c 2070ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) \
c906108c
SS
2071 $(value_h) $(expression_h) $(command_h) $(ax_h) $(gdbcmd_h) ax-gdb.h
2072
367e21d8 2073sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c 2074
17732724
AC
2075symfile.o: symfile.c $(breakpoint_h) $(complaints_h) $(defs_h) \
2076 $(expression_h) $(gdb_stabs_h) $(gdbcmd_h) $(gdbcore_h) \
2077 $(gdbtypes_h) $(language_h) $(objfiles_h) $(symfile_h) $(symtab_h) \
1b0cad1c 2078 $(target_h) $(gdb_string_h) $(completer_h)
c906108c
SS
2079
2080symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
2081
367e21d8 2082symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) $(regcache_h)
c906108c
SS
2083
2084symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
17732724
AC
2085 $(expression_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \
2086 $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 2087
17732724
AC
2088symtab.o: symtab.c $(call_cmds_h) $(defs_h) $(expression_h) $(frame_h) \
2089 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) $(language_h) $(objfiles_h) \
f77b92bf 2090 gdb_regex.h $(symfile_h) $(symtab_h) $(target_h) $(value_h) \
17732724 2091 $(gdb_string_h) $(linespec_h) $(cp_abi_h)
c906108c 2092
17732724
AC
2093linespec.o: linespec.c $(linespec_h) $(defs_h) $(frame_h) $(value_h) \
2094 $(objfiles_h) $(symfile_h) $(completer_h) $(symtab_h) \
2095 $(demangle_h) $(command_h) $(cp_abi_h)
50641945 2096
c906108c 2097target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
17732724 2098 $(objfiles_h) $(symfile_h) $(target_h) $(gdb_string_h) $(regcache_h)
c906108c 2099
1b0cad1c 2100thread.o: thread.c $(defs_h) $(gdbthread_h) $(gdbcmd_h) $(target_h) \
5b7f31a4 2101 $(regcache_h) $(ui_out_h) $(gdb_h)
c906108c 2102
d75b5104 2103completer.o: completer.c $(completer_h) $(gdbtypes_h) $(symtab_h) \
c5f0f3d0
FN
2104 $(defs_h) $(gdbcmd_h) $(expression_h) $(readline_headers)
2105
17732724 2106top.o: top.c $(top_h) $(bfd_h) $(getopt_h) $(readline_headers) $(call_cmds_h) \
210661e7 2107 $(cli_cmds_h) $(cli_script_h) $(cli_setshow_h) \
17732724 2108 $(defs_h) $(gdbcmd_h) $(inferior_h) $(language_h) \
6e0ce711 2109 $(remote_utils_h) $(gdb_string_h) $(event_loop_h) $(event_top_h) \
d16aafd8 2110 $(completer_h) $(version_h) $(ui_out_h) $(doublest_h) \
17732724 2111 $(serial_h)
c906108c
SS
2112
2113typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
17732724
AC
2114 $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) $(target_h) \
2115 $(value_h) $(gdb_string_h) $(cp_abi_h)
c906108c 2116
c906108c 2117utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
17732724 2118 $(language_h) $(target_h) $(terminal_h) $(readline_headers) \
6e0ce711 2119 $(gdb_string_h) $(event_loop_h) $(event_top_h)
c906108c
SS
2120
2121valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
17732724 2122 $(gdbtypes_h) $(language_h) $(symtab_h) $(target_h) $(value_h) \
d16aafd8 2123 $(gdb_string_h) $(doublest_h)
c906108c 2124
1b0cad1c 2125valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) $(target_h) \
6e0ce711 2126 $(gdb_string_h) $(regcache_h) $(cp_abi_h)
c906108c
SS
2127
2128valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
17732724
AC
2129 $(gdbcore_h) $(gdbtypes_h) $(language_h) $(symtab_h) $(target_h) \
2130 $(value_h) $(gdb_string_h) $(valprint_h) $(doublest_h)
c906108c
SS
2131
2132values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1b0cad1c 2133 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) $(target_h) $(value_h) \
d16aafd8 2134 $(gdb_string_h) scm-lang.h $(doublest_h)
c906108c
SS
2135
2136vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
2137
17732724
AC
2138x86-64-linux-tdep.o : x86-64-linux-tdep.c $(defs_h) $(inferior_h) \
2139 $(gdbcore_h) $(regcache_h) x86-64-tdep.h i386-tdep.h
53e95fcf 2140
17732724
AC
2141x86-64-tdep.o : x86-64-tdep.c $(defs_h) $(inferior_h) $(gdbcore_h) \
2142 $(gdbcmd_h) $(arch_utils_h) $(regcache_h) $(symfile_h) x86-64-tdep.h \
2143 i386-tdep.h $(value_h)
53e95fcf 2144
17732724
AC
2145x86-64-linux-tdep.o : x86-64-linux-tdep.c $(defs_h) $(inferior_h) \
2146 $(gdbcore_h) $(regcache_h) i387-nat.h x86-64-tdep.h i386-tdep.h
53e95fcf 2147
c906108c 2148win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
d75b5104 2149 $(gdb_string_h) $(regcache_h) $(completer_h)
c906108c
SS
2150
2151xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
2152 vx-share/vxWorks.h vx-share/xdr_ld.h
2153 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
2154
2155xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
2156 vx-share/vxWorks.h vx-share/xdr_ptrace.h
2157 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
2158
2159xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
2160 vx-share/vxWorks.h vx-share/xdr_rdb.h
2161 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
2162
2163xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
2164 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
17732724
AC
2165 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h $(buildsym_h) \
2166 $(complaints_h) $(defs_h) $(gdbtypes_h) $(objfiles_h) $(stabsread_h) \
2167 $(symfile_h) $(symtab_h) $(gdb_string_h)
c906108c 2168
17732724 2169xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) $(xcoffsolib_h) $(inferior_h) \
f77b92bf 2170 $(gdbcmd_h) $(symfile_h) $(frame_h) gdb_regex.h
c906108c 2171
d4f3574e
SS
2172# FIXME: z8k-tdep.c calls _initialize_gdbtypes(). Since that isn't
2173# declared -Wimplicit fails. It should be using the GDBARCH framework.
2174# cagney 1999-09-02.
1b0cad1c 2175z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis_asm_h) $(defs_h) $(frame_h) \
367e21d8
AC
2176 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h) $(value_h) \
2177 $(regcache_h)
e5d63811
BH
2178 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \
2179 $(srcdir)/z8k-tdep.c
c906108c 2180
c0d4a49f
JB
2181c-exp.tab.o: c-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \
2182 $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) $(bfd_h) \
2183 $(symfile_h) $(objfiles_h)
c906108c
SS
2184
2185jv-exp.tab.o: jv-exp.tab.c jv-lang.h $(defs_h) $(expression_h) \
17732724
AC
2186 $(gdbtypes_h) $(language_h) $(parser_defs_h) $(symtab_h) $(value_h) \
2187 $(bfd_h) $(objfiles_h) $(symfile_h)
c906108c
SS
2188
2189f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
17732724
AC
2190 $(language_h) $(parser_defs_h) $(value_h) $(bfd_h) $(objfiles_h) \
2191 $(symfile_h)
c906108c
SS
2192
2193m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724
AC
2194 $(language_h) m2-lang.h $(parser_defs_h) $(symtab_h) $(value_h) \
2195 $(bfd_h) $(objfiles_h) $(symfile_h)
c906108c 2196
df115219 2197p-exp.tab.o: p-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
17732724
AC
2198 $(language_h) p-lang.h $(parser_defs_h) $(symtab_h) $(value_h) \
2199 $(bfd_h) $(objfiles_h) $(symfile_h)
df115219 2200
17732724 2201gdb-events.o: gdb-events.c $(gdb_events_h) $(defs_h) $(gdbcmd_h)
104c1213 2202
17732724 2203ui-out.o: ui-out.c $(defs_h) $(ui_out_h) $(expression_h) $(language_h)
8b93c638 2204cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h)
b045c3f9 2205
8b93c638 2206varobj.o: varobj.c $(defs_h) $(frame_h) $(value_h) \
17732724 2207 $(language_h) $(valprint_h) $(varobj_h) $(wrapper_h)
b045c3f9 2208
17732724 2209wrapper.o: wrapper.c $(defs_h) $(frame_h) $(value_h) $(wrapper_h)
8b93c638 2210
d318976c
FN
2211#
2212# CLI dependencies
2213#
2214# Need to explicitly specify the compile rule as make will do nothing
2215# or try to compile the object file into the cli directory.
2216
2217cli-decode.o: $(srcdir)/cli/cli-decode.c $(cli_decode_h) \
2218 $(cli_cmds_h) $(defs_h) $(ui_out_h) \
f77b92bf 2219 $(symtab_h) gdb_regex.h
d318976c
FN
2220 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-decode.c
2221
2222cli-cmds.o: $(srcdir)/cli/cli-cmds.c $(cli_cmds_h) $(cli_decode_h) \
17732724 2223 $(cli_script_h) $(cli_setshow_h) $(top_h) $(completer_h) \
f77b92bf 2224 $(defs_h) $(target_h) gdb_wait.h gdb_regex.h $(ui_out_h)
d318976c
FN
2225 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-cmds.c
2226
2227cli-setshow.o: $(srcdir)/cli/cli-setshow.c $(cli_setshow_h) \
2228 $(cli_decode_h) $(cli_cmds_h) $(defs_h) \
2229 $(value_h) $(ui_out_h)
2230 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-setshow.c
2231
2232cli-script.o: $(srcdir)/cli/cli-script.c $(cli_script_h) \
17732724
AC
2233 $(cli_cmds_h) $(cli_decode_h) $(top_h) \
2234 $(defs_h) $(value_h) $(language_h) $(ui_out_h)
d318976c
FN
2235 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-script.c
2236
12cf3f1b
ND
2237cli-utils.o: $(srcdir)/cli/cli-utils.c $(cli_utils_h) $(defs_h)
2238 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-utils.c
2239
fb40c209
AC
2240#
2241# MI dependencies
2242#
2243# Need to explicitly specify the compile rule as make will do nothing
2244# or try to compile the object file into the mi directory.
2245
2246mi_cmds_h = $(srcdir)/mi/mi-cmds.h
2247mi_out_h = $(srcdir)/mi/mi-out.h
2248mi_parse_h = $(srcdir)/mi/mi-parse.h
2249mi_getopt_h = $(srcdir)/mi/mi-getopt.h
2250mi_console_h = $(srcdir)/mi/mi-console.h
2251
2252mi-cmds.o: $(srcdir)/mi/mi-cmds.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h)
2253 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmds.c
2254mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c $(defs_h) $(top_h) $(mi_cmds_h) \
2bf63d86 2255 $(ui_out_h) $(varobj_h)
fb40c209
AC
2256 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-var.c
2257mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c $(defs_h) $(top_h) $(mi_cmds_h) \
2258 $(ui_out_h) $(frame_h) $(value_h) $(target_h)
2259 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-stack.c
2260mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c $(defs_h) $(mi_cmds_h) \
5b7f31a4 2261 $(ui_out_h) $(mi_getopt_h) $(gdb_h)
fb40c209
AC
2262 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-break.c
2263mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c $(defs_h) $(mi_cmds_h) \
2264 $(ui_out_h) $(value_h) $(target_h)
2265 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-disas.c
2266mi-main.o: $(srcdir)/mi/mi-main.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h) \
2267 $(mi_console_h) $(mi_getopt_h) $(event_loop_h) $(event_top_h) \
5b7f31a4 2268 $(mi_getopt_h) $(regcache_h) $(gdb_h)
6311b07d 2269 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-main.c
fb40c209
AC
2270mi-out.o: $(srcdir)/mi/mi-out.c $(defs_h) $(mi_out_h) $(ui_out_h)
2271 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-out.c
2272mi-console.o: $(srcdir)/mi/mi-console.c $(mi_out_h) $(defs_h)
2273 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-console.c
2274mi-parse.o: $(srcdir)/mi/mi-parse.c $(defs_h) $(mi_parse_h) $(mi_cmds_h)
2275 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-parse.c
2276mi-getopt.o: $(srcdir)/mi/mi-getopt.c $(mi_getopt_h) $(defs_h)
2277 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-getopt.c
2278
ed952ac5
AC
2279#
2280# TUI dependencies
2281#
2282# Need to explicitly specify the compile rule as make will do nothing
2283# or try to compile the object file into the mi directory.
2284
2285tui.o: $(srcdir)/tui/tui.c \
2286 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2287 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiIO.h \
2288 $(srcdir)/tui/tuiRegs.h $(srcdir)/tui/tuiWin.h
2289 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tui.c
8aaf581c
SC
2290tui-out.o: $(srcdir)/tui/tui-out.c \
2291 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h
2292 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tui-out.c
2293tui-hooks.o: $(srcdir)/tui/tui-hooks.c \
2294 $(srcdir)/tui/tui.h
2295 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tui-hooks.c
ed952ac5
AC
2296tuiCommand.o: $(srcdir)/tui/tuiCommand.c \
2297 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2298 $(srcdir)/tui/tuiWin.h $(srcdir)/tui/tuiIO.h
2299 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiCommand.c
2300tuiData.o: $(srcdir)/tui/tuiData.c \
2301 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h
2302 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiData.c
2303tuiDataWin.o: $(srcdir)/tui/tuiDataWin.c \
2304 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2305 $(srcdir)/tui/tuiRegs.h
2306 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiDataWin.c
2307tuiDisassem.o: $(srcdir)/tui/tuiDisassem.c \
2308 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2309 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiSourceWin.h \
2310 $(srcdir)/tui/tuiStack.h
2311 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiDisassem.c
2312tuiGeneralWin.o: $(srcdir)/tui/tuiGeneralWin.c \
2313 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2314 $(srcdir)/tui/tuiGeneralWin.h
2315 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiGeneralWin.c
2316tuiIO.o: $(srcdir)/tui/tuiIO.c \
2317 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2318 $(srcdir)/tui/tuiIO.h $(srcdir)/tui/tuiCommand.h \
2319 $(srcdir)/tui/tuiWin.h
2320 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiIO.c
2321tuiLayout.o: $(srcdir)/tui/tuiLayout.c \
2322 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2323 $(srcdir)/tui/tuiGeneralWin.h $(srcdir)/tui/tuiStack.h \
2324 $(srcdir)/tui/tuiRegs.h $(srcdir)/tui/tuiDisassem.h
2325 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiLayout.c
2326tuiRegs.o: $(srcdir)/tui/tuiRegs.c \
2327 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2328 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiWin.h
2329 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiRegs.c
2330tuiSource.o: $(srcdir)/tui/tuiSource.c \
2331 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2332 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h \
2333 $(srcdir)/tui/tuiSource.h
2334 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiSource.c
2335tuiSourceWin.o: $(srcdir)/tui/tuiSourceWin.c \
2336 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2337 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h \
2338 $(srcdir)/tui/tuiSource.h $(srcdir)/tui/tuiDisassem.h
2339 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiSourceWin.c
2340tuiStack.o: $(srcdir)/tui/tuiStack.c \
2341 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2342 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h
2343 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiStack.c
2344tuiWin.o: $(srcdir)/tui/tuiWin.c \
2345 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2346 $(srcdir)/tui/tuiGeneralWin.h $(srcdir)/tui/tuiStack.h \
2347 $(srcdir)/tui/tuiSourceWin.h $(srcdir)/tui/tuiDataWin.h
2348 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiWin.c
2349
c906108c 2350### end of the gdb Makefile.in.
This page took 0.275013 seconds and 4 git commands to generate.