import gdb-2000-02-01 snapshot
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
d9fcf2fb 1# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
c906108c
SS
2# Free Software Foundation, Inc.
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
SS
51AWK = @AWK@
52
c906108c
SS
53INSTALL = @INSTALL@
54INSTALL_PROGRAM = @INSTALL_PROGRAM@
55INSTALL_DATA = @INSTALL_DATA@
56
57AR = @AR@
58AR_FLAGS = qv
59RANLIB = @RANLIB@
60DLLTOOL = @DLLTOOL@
61WINDRES = @WINDRES@
62
63# If the user configured GDB to include the TUI, the name of the tui
64# library goes here.
65TUI_LIBRARY = @TUI_LIBRARY@
66
67# If the user configured GDB to include the TUI, the all-tui
68# target goes here.
69BUILD_TUI = @BUILD_TUI@
70
71# Flags that describe where you can find the termcap library.
72# This can be overridden in the host Makefile fragment file.
73TERMCAP = @TERM_LIB@
74
75# If you are compiling with GCC, make sure that either 1) You have the
76# fixed include files where GCC can reach them, or 2) You use the
77# -traditional flag. Otherwise the ioctl calls in inflow.c
78# will be incorrectly compiled. The "fixincludes" script in the gcc
79# distribution will fix your include files up.
80CC=@CC@
81
82# Directory containing source files.
83srcdir = @srcdir@
84VPATH = @srcdir@
85
86YACC=@YACC@
87
88YLWRAP = $(srcdir)/../ylwrap
89
90# where to find makeinfo, preferably one designed for texinfo-2
91MAKEINFO=makeinfo
92
085dd6e6
JM
93MAKEHTML = texi2html
94
95MAKEHTMLFLAGS = -glossary -menu -split_chapter
96
c906108c
SS
97# Set this up with gcc if you have gnu ld and the loader will print out
98# line numbers for undefined references.
99#CC_LD=gcc -static
100CC_LD=$(CC)
101
102# Where is our "include" directory? Typically $(srcdir)/../include.
103# This is essentially the header file directory for the library
104# routines in libiberty.
105INCLUDE_DIR = $(srcdir)/../include
106INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
107
108# Where is the "-liberty" library? Typically in ../libiberty.
109LIBIBERTY = ../libiberty/libiberty.a
110
111# Configured by the --with-mmalloc option to configure.
112MMALLOC = @MMALLOC@
113MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
114
115# Where is the BFD library? Typically in ../bfd.
116BFD_DIR = ../bfd
117BFD = $(BFD_DIR)/libbfd.a
118BFD_SRC = $(srcdir)/$(BFD_DIR)
119BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
120
121# Where is the READLINE library? Typically in ../readline.
122READLINE_DIR = ../readline
123READLINE = $(READLINE_DIR)/libreadline.a
124READLINE_SRC = $(srcdir)/$(READLINE_DIR)
125READLINE_CFLAGS = -I$(READLINE_SRC)/..
126
127WARN_CFLAGS = @WARN_CFLAGS@
104c1213 128WERROR_CFLAGS = @WERROR_CFLAGS@
d4f3574e
SS
129GDB_WARN_CFLAGS = $(WARN_CFLAGS)
130GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c
SS
131
132# Where is the INTL library? Typically in ../intl.
133INTL_DIR = ../intl
134INTL = @INTLLIBS@
135INTL_DEPS = @INTLDEPS@
136INTL_SRC = $(srcdir)/$(INTL_DIR)
137INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
138
139# Where is the TUI library? Typically in tui/.
140TUI_DIR=tui
141TUI_SRC = $(srcdir)/$(TUI_DIR)
142TUI_CFLAGS= -I$(TUI_SRC)
143
144# Opcodes currently live in one of two places. Either they are in the
145# opcode library, typically ../opcodes, or they are in a header file
146# in INCLUDE_DIR.
147# Where is the "-lopcodes" library, with (some of) the opcode tables and
148# disassemblers?
149OPCODES = ../opcodes/libopcodes.a
150# Where are the other opcode tables which only have header file
151# versions?
152OP_INCLUDE = $(INCLUDE_DIR)/opcode
153OPCODES_CFLAGS = -I$(OP_INCLUDE)
154
155# The simulator is usually nonexistent; targets that include one
156# should set this to list all the .o or .a files to be linked in.
157SIM =
158
cd0fc7c3
SS
159WIN32LIBS = @WIN32LIBS@
160
c906108c
SS
161
162ENABLE_CFLAGS= @ENABLE_CFLAGS@
163
164# -I. for config files.
165# -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
166# -I$(srcdir)/config for more generic config files.
167
168# It is also possible that you will need to add -I/usr/include/sys if
169# your system doesn't have fcntl.h in /usr/include (which is where it
170# should be according to Posix).
171DEFS = @DEFS@
172GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
173
174# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
175# from the config directory.
176GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
177#PROFILE_CFLAGS = -pg
178
179# CFLAGS is specifically reserved for setting from the command line
180# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
181CFLAGS = -g
182
183# Need to pass this to testsuite for "make check". Probably should be
184# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
185# so "make check" has the same result no matter where it is run.
186CXXFLAGS = -g -O
187
188# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
104c1213
JM
189INTERNAL_WARN_CFLAGS = \
190 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
c906108c
SS
191 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
192 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
d4f3574e
SS
193 $(INTL_CFLAGS) $(TUI_CFLAGS) $(ENABLE_CFLAGS) $(GDB_WARN_CFLAGS)
194INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
c906108c
SS
195
196# LDFLAGS is specifically reserved for setting from the command line
197# when running make.
198
199# Profiling options need to go here to work.
200# I think it's perfectly reasonable for a user to set -pg in CFLAGS
201# and have it work; that's why CFLAGS is here.
202INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS) @CONFIG_LDFLAGS@ @HLDFLAGS@
203HLDENV = @HLDENV@
204
205# We are using our own version of REGEX now to be consistent across
206# machines.
207REGEX = gnu-regex.o
208REGEX1 = gnu-regex.o
209
210# If your system is missing alloca(), or, more likely, it's there but
211# it doesn't work, then refer to libiberty.
212
213# Libraries and corresponding dependencies for compiling gdb.
214# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
215# TERMCAP comes after readline, since readline depends on it.
216# MMALLOC comes after anything else that might want an allocation function.
217# LIBIBERTY appears twice on purpose.
218# If you have the Cygnus libraries installed,
219# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
220INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
221 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
222 -lmmalloc -lintl -liberty
223CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
224 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
225 $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS)
226CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
227 $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) @CONFIG_DEPS@
228
229ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
230ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
231
d9fcf2fb 232VERSION = 20000201
c906108c
SS
233DIST=gdb
234
235LINT=/usr/5bin/lint
236LINTFLAGS= $(BFD_CFLAGS)
237
238RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
239 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
240 fi`
241
242RUNTESTFLAGS=
243
244# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
245# interface to the serial port. Hopefully if get ported to OS/2, VMS,
246# etc., then there will be (as part of the C library or perhaps as
247# part of libiberty) a POSIX interface. But at least for now the
248# host-dependent makefile fragment might need to use something else
249# besides ser-unix.o
43e526b9 250SER_HARDWIRE = ser-unix.o ser-pipe.o
c906108c
SS
251
252# The `remote' debugging target is supported for most architectures,
253# but not all (e.g. 960)
254REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o
255
256# This is remote-sim.o if a simulator is to be linked in.
257SIM_OBS =
258
259ANNOTATE_OBS = annotate.o
260
261# Host and target-dependent makefile fragments come in here.
262@host_makefile_frag@
263@target_makefile_frag@
264# End of host and target-dependent makefile fragments
265
7a292a7a
SS
266# Possibly ignore the simulator. If the simulator is being ignored,
267# these expand into SIM= and SIM_OBJ=, overriding the entries from
268# target_makefile_frag
269#
270@IGNORE_SIM@
271@IGNORE_SIM_OBS@
272
c906108c
SS
273FLAGS_TO_PASS = \
274 "prefix=$(prefix)" \
275 "exec_prefix=$(exec_prefix)" \
276 "against=$(against)" \
277 "AR=$(AR)" \
278 "AR_FLAGS=$(AR_FLAGS)" \
279 "CC=$(CC)" \
280 "CFLAGS=$(CFLAGS)" \
281 "CHILLFLAGS=$(CHILLFLAGS)" \
282 "CHILL=$(CHILL)" \
283 "CHILL_LIB=$(CHILL_LIB)" \
284 "CXX=$(CXX)" \
285 "CXXFLAGS=$(CXXFLAGS)" \
286 "DLLTOOL=$(DLLTOOL)" \
287 "RANLIB=$(RANLIB)" \
288 "MAKEINFO=$(MAKEINFO)" \
085dd6e6
JM
289 "MAKEHTML=$(MAKEHTML)" \
290 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
c906108c
SS
291 "INSTALL=$(INSTALL)" \
292 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
293 "INSTALL_DATA=$(INSTALL_DATA)" \
294 "RUNTEST=$(RUNTEST)" \
295 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
296
297# Flags that we pass when building the testsuite.
298
299# empty for native, $(target_alias)/ for cross
300target_subdir = @target_subdir@
301
302CC_FOR_TARGET = ` \
303 if [ -f $${rootme}/../gcc/xgcc ] ; then \
304 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
305 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/; \
306 else \
307 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
308 fi; \
309 else \
310 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
311 echo $(CC); \
312 else \
313 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
314 fi; \
315 fi`
316
317CXX = gcc
318CXX_FOR_TARGET = ` \
319 if [ -f $${rootme}/../gcc/xgcc ] ; then \
320 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
321 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/; \
322 else \
323 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
324 fi; \
325 else \
326 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
327 echo $(CXX); \
328 else \
329 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
330 fi; \
331 fi`
332
333CHILLFLAGS = $(CFLAGS)
334CHILL = gcc
335CHILL_FOR_TARGET = ` \
336 if [ -f $${rootme}/../gcc/Makefile ] ; then \
337 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
338 else \
339 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
340 echo $(CC); \
341 else \
342 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
343 fi; \
344 fi`
345CHILL_LIB = ` \
346 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
347 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
348 $${rootme}/../gcc/ch/runtime/libchill.a; \
349 else \
350 echo -lchill; \
351 fi`
352
353# The use of $$(x_FOR_TARGET) reduces the command line length by not
354# duplicating the lengthy definition.
355TARGET_FLAGS_TO_PASS = \
356 "prefix=$(prefix)" \
357 "exec_prefix=$(exec_prefix)" \
358 "against=$(against)" \
359 'CC=$$(CC_FOR_TARGET)' \
360 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
361 "CFLAGS=$(CFLAGS)" \
362 "CHILLFLAGS=$(CHILLFLAGS)" \
363 'CHILL=$$(CHILL_FOR_TARGET)' \
364 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
365 "CHILL_LIB=$(CHILL_LIB)" \
366 'CXX=$$(CXX_FOR_TARGET)' \
367 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
368 "CXXFLAGS=$(CXXFLAGS)" \
369 "INSTALL=$(INSTALL)" \
370 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
371 "INSTALL_DATA=$(INSTALL_DATA)" \
372 "MAKEINFO=$(MAKEINFO)" \
085dd6e6 373 "MAKEHTML=$(MAKEHTML)" \
c906108c
SS
374 "RUNTEST=$(RUNTEST)" \
375 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
376
377# All source files that go into linking GDB.
378# Links made at configuration time should not be specified here, since
379# SFILES is used in building the distribution archive.
380
381SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \
382 buildsym.c c-exp.y c-lang.c c-typeprint.c c-valprint.c \
383 ch-exp.c ch-lang.c ch-typeprint.c ch-valprint.c coffread.c \
384 command.c complaints.c corefile.c cp-valprint.c dbxread.c \
385 demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \
cd0fc7c3 386 event-loop.c event-top.c \
c906108c 387 expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \
2acceee2
JM
388 findvar.c gdbarch.c gdbtypes.c \
389 inf-loop.c infcmd.c inflow.c infrun.c language.c \
96baa820 390 kod.c kod-cisco.c \
c906108c
SS
391 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
392 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
393 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
394 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c \
395 scm-valprint.c source.c stabsread.c stack.c symfile.c \
396 symmisc.c symtab.c target.c thread.c top.c tracepoint.c \
397 typeprint.c utils.c valarith.c valops.c valprint.c values.c \
398 serial.c ser-unix.c mdebugread.c os9kread.c \
399 tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \
400 tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \
401 tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \
402 tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \
403 tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \
404 tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \
da59e081
JM
405 tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h \
406 tui/tui-file.h tui/tui-file.c \
d9fcf2fb 407 ui-file.h ui-file.c
c906108c
SS
408
409LINTFILES = $(SFILES) $(YYFILES) @CONFIG_SRCS@ init.c
410
411# "system" headers. Using these in dependencies is a rather personal
412# choice. (-rich, summer 1993)
413# (Why would we not want to depend on them? If one of these changes in a
414# non-binary-compatible way, it is a real pain to remake the right stuff
415# without these dependencies -kingdon, 13 Mar 1994)
416getopt_h = $(INCLUDE_DIR)/getopt.h
417floatformat_h = $(INCLUDE_DIR)/floatformat.h
418bfd_h = $(BFD_DIR)/bfd.h
ed9a39eb 419elf_bfd_h = $(BFD_SRC)/elf-bfd.h
c906108c
SS
420wait_h = $(INCLUDE_DIR)/wait.h
421dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
422remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
423
424dcache_h = dcache.h
425remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
426
427
428readline_headers = \
429 $(READLINE_SRC)/chardefs.h \
430 $(READLINE_SRC)/history.h \
431 $(READLINE_SRC)/keymaps.h \
432 $(READLINE_SRC)/readline.h
433
434udiheaders = \
435 $(srcdir)/29k-share/udi/udiproc.h \
436 $(srcdir)/29k-share/udi/udiphcfg.h \
437 $(srcdir)/29k-share/udi/udiphunix.h \
438 $(srcdir)/29k-share/udi/udiptcfg.h \
439 $(srcdir)/29k-share/udi/udipt29k.h \
440 $(srcdir)/29k-share/udi/udisoc.h
441
442gdbcore_h = gdbcore.h $(bfd_h)
443
444frame_h = frame.h
445symtab_h = symtab.h bcache.h
446gdbtypes_h = gdbtypes.h
447expression_h = expression.h
448value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
449
450breakpoint_h = breakpoint.h $(frame_h) $(value_h)
451
452command_h = command.h
453gdbcmd_h = gdbcmd.h $(command_h)
454
6426a772 455call_cmds_h = call-cmds.h
d9fcf2fb 456defs_h = defs.h xm.h tm.h nm.h config.status config.h gdbarch.h ui-file.h
c906108c 457
9e0b60a8 458top_h = top.h
c906108c
SS
459inferior_h = inferior.h $(breakpoint_h)
460tracepoint_h = tracepoint.h
461ax_h = ax.h
c2c6d25f
JM
462event_loop_h = event-loop.h
463event_top_h = event-top.h
2acceee2 464inf_loop_h = inf-loop.h
c2c6d25f
JM
465remote_h = remote.h
466version_h = version.h
c906108c
SS
467
468# Header files that need to have srcdir added. Note that in the cases
469# where we use a macro like $(gdbcmd_h), things are carefully arranged
470# so that each .h file is listed exactly once (M-x tags-search works
471# wrong if TAGS has files twice). Because this is tricky to get
472# right, it is probably easiest just to list .h files here directly.
473
474HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
475 dst.h environ.h $(gdbcmd_h) gdbcore.h \
476 gdb-stabs.h hpread.h $(inferior_h) language.h minimon.h monitor.h \
477 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
478 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
479 c-lang.h ch-lang.h f-lang.h \
480 jv-lang.h \
481 m2-lang.h \
482 complaints.h valprint.h \
483 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
484 nindy-share/block_io.h nindy-share/coff.h \
485 nindy-share/env.h nindy-share/stop.h \
486 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
487 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
488 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
489 dcache.h remote-utils.h top.h somsolib.h
490
491# Header files that already have srcdir in them, or which are in objdir.
492
493HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
494
495
496# GDB "info" files, which should be included in their entirety
497INFOFILES = gdb.info*
498
499REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
500
501POSSLIBS = gnu-regex.c gnu-regex.h
502
503# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
504# default their values the way we do for SER_HARDWIRE; in the future
505# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
506# variables analogous to SER_HARDWIRE which get defaulted in this
507# Makefile.in
508
509DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
510 $(REMOTE_OBS) $(SIM_OBS) @CONFIG_OBS@
511
512SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) @CONFIG_SRCS@
513# Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
514# and it's more useful to see it in the .y file.
515TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
516 $(POSSLIBS)
517TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
518
519COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
520 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
521 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
cd0fc7c3 522 expprint.o environ.o \
2acceee2 523 event-loop.o event-top.o inf-loop.o \
cd0fc7c3 524 gdbarch.o gdbtypes.o copying.o $(DEPFILES) \
c906108c 525 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
96baa820 526 kod.o kod-cisco.o \
104c1213 527 gdb-events.o \
c906108c
SS
528 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
529 dbxread.o coffread.o elfread.o \
530 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
531 c-lang.o ch-exp.o ch-lang.o f-lang.o \
532 jv-lang.o jv-valprint.o jv-typeprint.o \
533 m2-lang.o \
534 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
535 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
536 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
da59e081 537 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o \
d9fcf2fb 538 ui-file.o tui-file.o
c906108c 539
104c1213 540OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
c906108c
SS
541
542TSOBS = inflow.o
543
544NTSOBS = standalone.o
545
546NTSSTART = kdb-start.o
547
7be570e7 548SUBDIRS = @SUBDIRS@
c906108c
SS
549
550# For now, shortcut the "configure GDB for fewer languages" stuff.
551YYFILES = c-exp.tab.c \
552 jv-exp.tab.c \
553 f-exp.tab.c m2-exp.tab.c
554YYOBJ = c-exp.tab.o \
555 jv-exp.tab.o \
556 f-exp.tab.o m2-exp.tab.o
557
558# Things which need to be built when making a distribution.
559
560DISTSTUFF = $(YYFILES)
561
562# Prevent Sun make from putting in the machine type. Setting
563# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
564.c.o:
565 $(CC) -c $(INTERNAL_CFLAGS) $<
566
567all: gdb$(EXEEXT)
568 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
569
570installcheck:
571
572# The check target can not use subdir_do, because subdir_do does not
573# use TARGET_FLAGS_TO_PASS.
574check: force
575 @if [ -f testsuite/Makefile ]; then \
576 rootme=`pwd`; export rootme; \
577 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
578 cd testsuite; \
579 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
580 else true; fi
581
085dd6e6 582info dvi install-info clean-info html install-html: force
c906108c
SS
583 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
584
585gdb.z:gdb.1
586 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
587 pack gdb.t ; rm -f gdb.t
588 mv gdb.t.z gdb.z
589
590# Traditionally "install" depends on "all". But it may be useful
591# not to; for example, if the user has made some trivial change to a
592# source file and doesn't care about rebuilding or just wants to save the
593# time it takes for make to check that all is up to date.
594# install-only is intended to address that need.
595install: all install-only
596install-only:
597 transformed_name=`t='$(program_transform_name)'; \
598 echo gdb | sed -e $$t` ; \
599 if test "x$$transformed_name" = x; then \
600 transformed_name=gdb ; \
601 else \
602 true ; \
603 fi ; \
604 $(INSTALL_PROGRAM) gdb$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \
605 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
606 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
607
608uninstall: force
609 transformed_name=`t='$(program_transform_name)'; \
610 echo gdb | sed -e $$t` ; \
611 if test "x$$transformed_name" = x; then \
612 transformed_name=gdb ; \
613 else \
614 true ; \
615 fi ; \
616 rm -f $(bindir)/$$transformed_name$(EXEEXT) $(man1dir)/$$transformed_name.1
617 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
618
619# We do this by grepping through sources. If that turns out to be too slow,
620# maybe we could just require every .o file to have an initialization routine
621# of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
622#
623# Formatting conventions: The name of the _initialize_* routines must start
624# in column zero, and must not be inside #if.
625#
626# Note that the set of files with init functions might change, or the names
627# of the functions might change, so this files needs to depend on all the
628# object files that will be linked into gdb.
629
c2d11a7d
JM
630INIT_FILES = $(OBS) $(TSOBS) $(SUBDIR_INIT_FILES)
631init.c: $(INIT_FILES)
c906108c 632 @echo Making init.c
6426a772 633 @rm -f init.c-tmp init.l-tmp
c2d11a7d 634 @-echo $(INIT_FILES) | \
c906108c
SS
635 tr ' ' '\012' | \
636 sed -e '/^Onindy.o/d' \
6426a772 637 -e '/^init.o/d' \
c906108c
SS
638 -e '/^nindy.o/d' \
639 -e '/ttyflush.o/d' \
640 -e '/xdr_ld.o/d' \
641 -e '/xdr_ptrace.o/d' \
642 -e '/xdr_rdb.o/d' \
643 -e '/udr.o/d' \
644 -e '/udip2soc.o/d' \
645 -e '/udi2go32.o/d' \
646 -e '/version.o/d' \
647 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
648 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
649 -e 's/\.o/.c/' \
650 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
651 while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \
6426a772
JM
652 sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' > init.l-tmp
653 @echo '/* Do not modify this file. */' >>init.c-tmp
654 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
655 @echo '#include "defs.h"' >>init.c-tmp
656 @echo '#include "call-cmds.h"' >>init.c-tmp
657 @sed -e 's/\(.*\)/extern initialize_file_ftype \1;/' <init.l-tmp >>init.c-tmp
658 @echo 'void' >>init.c-tmp
659 @echo 'initialize_all_files (void)' >>init.c-tmp
660 @echo '{' >>init.c-tmp
661 @sed -e 's/\(.*\)/ \1 ();/' <init.l-tmp >>init.c-tmp
c906108c 662 @echo '}' >>init.c-tmp
6426a772 663 @rm init.l-tmp
c906108c
SS
664 @mv init.c-tmp init.c
665
666.PRECIOUS: init.c
667
6426a772
JM
668init.o: init.c $(defs_h) $(call_cmds_h)
669
c906108c 670# Removing the old gdb first works better if it is running, at least on SunOS.
104c1213 671gdb$(EXEEXT): main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
c906108c 672 rm -f gdb$(EXEEXT)
104c1213 673 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) -o gdb$(EXEEXT) main.o libgdb.a $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
c906108c
SS
674
675nlm: force
676 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
677
104c1213
JM
678# Create a library of the gdb object files and build GDB by linking
679# against that.
680#
681# init.o is very important. It pulls in the rest of GDB.
682LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o
683libgdb.a: $(LIBGDB_OBS)
684 -rm -f libgdb.a
685 $(AR) q libgdb.a $(LIBGDB_OBS)
686 $(RANLIB) libgdb.a
c906108c
SS
687
688saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
689 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
690 #load ./init.c $(SFILES)
691 #unload $(srcdir)/c-exp.y
692 #unload $(srcdir)/jv-exp.y
693 #unload $(srcdir)/m2-exp.y
694 #unload vx-share/*.h
695 #unload nindy-share/[A-Z]*
696 #load c-exp.tab.c
697 #load jv-exp.tab.c
698 #load m2-exp.tab.c
699 #load copying.c version.c
700 #load ../opcodes/libopcodes.a
701 #load ../libiberty/libiberty.a
702 #load ../bfd/libbfd.a
703 #load ../readline/libreadline.a
704 #load ../mmalloc/libmmalloc.a
705 #load ../intl/libintl.a
706 #load -ltermcap
707 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
708 echo "Load .c corresponding to:" $(DEPFILES)
709
710
711# A Mach 3.0 program to force gdb back to command level
712
713stop-gdb: stop-gdb.o
714 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
715 stop-gdb.o $(CLIBS) $(LOADLIBES)
716
717# This is useful when debugging GDB, because some Unix's don't let you run GDB
718# on itself without copying the executable. So "make gdb1" will make
719# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
720# Removing gdb1 before the copy is the right thing if gdb1 is open
721# in another process.
722gdb1$(EXEEXT): gdb$(EXEEXT)
723 rm -f gdb1$(EXEEXT)
724 cp gdb$(EXEEXT) gdb1$(EXEEXT)
725
726# FIXME. These are not generated by "make depend" because they only are there
727# for some machines.
728# But these rules don't do what we want; we want to hack the foo.o: tm.h
729# dependency to do the right thing.
730tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
731tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
732xm-news1000.h: xm-news.h
733xm-i386-sv32.h: xm-i386.h
734tm-i386gas.h: tm-i386.h
735xm-sun4os4.h: xm-sparc.h
736tm-sun4os4.h: tm-sparc.h
737xm-vaxult.h: xm-vax.h
738xm-vaxbsd.h: xm-vax.h
739
740kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
741 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
742 -lc $(CLIBS)
743
744# Have the TUI library depend on a phony target, so we'll always
745# recurse and make sure it's up to date. If it is, then the file will
746# be unchanged, and we won't rebuild it.
747# .PHONY: check-tui
748all-tui:
749 @(cd tui; ${MAKE} ${FLAGS_TO_PASS} all)
750
751# Put the proper machine-specific files first, so M-. on a machine
752# specific routine gets the one for the correct machine. (FIXME: those
753# files go in twice; we should be removing them from the main list).
754
755# TAGS depends on all the files that go into it so you can rebuild TAGS
756# with `make TAGS' and not have to say `rm TAGS' first.
757
758TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
759 @echo Making TAGS
760 @etags $(srcdir)/$(TM_FILE) \
761 $(srcdir)/$(XM_FILE) \
762 $(srcdir)/$(NAT_FILE) \
763 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
764 echo $(srcdir)/$$i ; \
765 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
766 echo $$i ; \
767 done) | sed -e 's/\.o$$/\.c/'` \
768 `find $(srcdir)/config -name '*.h' -print`
769
770tags: TAGS
771
772clean mostlyclean:
773 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
6426a772 774 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp
c906108c 775 rm -f init.c version.c
104c1213 776 rm -f gdb$(EXEEXT) core make.log
c906108c
SS
777 rm -f gdb[0-9]$(EXEEXT)
778
779# This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
780# I believe this is wrong; the makefile standards for distclean just
781# describe removing files; the only sort of "re-create a distribution"
782# functionality described is if the distributed files are unmodified.
783distclean: clean
784 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
785 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
786 rm -f y.output yacc.acts yacc.tmp y.tab.h
787 rm -f config.log config.cache
788 rm -f Makefile
789
790maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
791realclean: maintainer-clean
792
793local-maintainer-clean:
794 @echo "This command is intended for maintainers to use;"
795 @echo "it deletes files that may require special tools to rebuild."
796 rm -f c-exp.tab.c \
797 jv-exp.tab \
798 f-exp.tab.c m2-exp.tab.c
799 rm -f TAGS $(INFOFILES)
800 rm -f $(YYFILES)
801 rm -f nm.h tm.h xm.h config.status
802
803do-maintainer-clean:
804 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
805 subdir_do
806
807diststuff: $(DISTSTUFF)
808 cd doc; $(MAKE) $(MFLAGS) all-doc
809
810subdir_do: force
811 @for i in $(DODIRS); do \
812 if [ -f ./$$i/Makefile ] ; then \
813 if (cd ./$$i; \
814 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
815 else exit 1 ; fi ; \
816 else true ; fi ; \
817 done
818
819Makefile: Makefile.in config.status @frags@
820 $(SHELL) config.status
821
822config.h: stamp-h ; @true
823stamp-h: config.in config.status
824 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
825
826config.status: configure
827 $(SHELL) config.status --recheck
828
829force:
830
831# Documentation!
832# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
833doc/refcard.dvi:
834 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
835
836# GDB QUICK REFERENCE (PostScript output, common PS fonts)
837doc/refcard.ps:
838 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
839
840# GDB MANUAL: TeX dvi file
841doc/gdb.dvi:
842 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
843
844# GDB MANUAL: info file
845doc/gdb.info:
846 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
847
848# Make copying.c from COPYING
849copying.c: COPYING copying.awk
850 awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
851
852version.c: Makefile
d4f3574e
SS
853 rm -f version.c
854 echo '#include "version.h"' >> version.c
855 echo 'const char version[] = "$(VERSION)";' >> version.c
856 echo 'const char host_name[] = "$(host_alias)";' >> version.c
857 echo 'const char target_name[] = "$(target_alias)";' >> version.c
858version.o: version.c $(version_h)
c906108c
SS
859
860# c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
861# in srcdir, then compiled in objdir to c-exp.tab.o.
862
863# If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
864# would sometimes re-write it into $(srcdir)/c-exp.tab.c.
865
866# Remove bogus decls for malloc/realloc/free which conflict with everything
867# else. Strictly speaking c-exp.tab.c should therefore depend on
868# Makefile.in, but that was a pretty big annoyance.
869c-exp.tab.o: c-exp.tab.c
870c-exp.tab.c: c-exp.y
871 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS)
872 -sed -e '/extern.*malloc/d' \
873 -e '/extern.*realloc/d' \
874 -e '/extern.*free/d' \
875 -e '/include.*malloc.h/d' \
876 -e 's/malloc/xmalloc/g' \
877 -e 's/realloc/xrealloc/g' \
878 -e '/^#line.*y.tab.c/d' \
879 < c-exp.tmp > c-exp.new
880 -rm c-exp.tmp
881 mv c-exp.new ./c-exp.tab.c
882
883jv-exp.tab.o: jv-exp.tab.c
884jv-exp.tab.c: jv-exp.y
885 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/jv-exp.y y.tab.c jv-exp.tmp -- $(YFLAGS)
886 -sed -e '/extern.*malloc/d' \
887 -e '/extern.*realloc/d' \
888 -e '/extern.*free/d' \
889 -e '/include.*malloc.h/d' \
890 -e 's/malloc/xmalloc/g' \
891 -e 's/realloc/xrealloc/g' \
892 -e '/^#line.*y.tab.c/d' \
893 < jv-exp.tmp > jv-exp.new
894 -rm jv-exp.tmp
895 mv jv-exp.new ./jv-exp.tab.c
896
897f-exp.tab.o: f-exp.tab.c
898f-exp.tab.c: f-exp.y c-exp.tab.c
899 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS)
900 -sed -e '/extern.*malloc/d' \
901 -e '/extern.*realloc/d' \
902 -e '/extern.*free/d' \
903 -e '/include.*malloc.h/d' \
904 -e 's/malloc/xmalloc/g' \
905 -e 's/realloc/xrealloc/g' \
906 -e '/^#line.*y.tab.c/d' \
907 < f-exp.tmp > f-exp.new
908 -rm f-exp.tmp
909 mv f-exp.new ./f-exp.tab.c
910
911# m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
912# in srcdir, then compiled in objdir to m2-exp.tab.o.
913# Remove bogus decls for malloc/realloc/free which conflict with everything
914# else.
915m2-exp.tab.o: m2-exp.tab.c
916m2-exp.tab.c: m2-exp.y
917 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/m2-exp.y y.tab.c m2-exp.tmp -- $(YFLAGS)
918 -sed -e '/extern.*malloc/d' \
919 -e '/extern.*realloc/d' \
920 -e '/extern.*free/d' \
921 -e '/include.*malloc.h/d' \
922 -e 's/malloc/xmalloc/g' \
923 -e 's/realloc/xrealloc/g' \
924 -e '/^#line.*y.tab.c/d' \
925 < m2-exp.tmp > m2-exp.new
926 -rm m2-exp.tmp
927 mv m2-exp.new ./m2-exp.tab.c
928
929# These files are updated atomically, so make never has to remove them
930.PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
931.PRECIOUS: jv-exp.tab.c
932
933lint: $(LINTFILES)
934 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
935 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
936
937gdb.cxref: $(SFILES)
938 cxref -I. $(SFILES) >gdb.cxref
939
940force_update:
941
942# GNU Make has an annoying habit of putting *all* the Makefile variables
943# into the environment, unless you include this target as a circumvention.
944# Rumor is that this will be fixed (and this target can be removed)
945# in GNU Make 4.0.
946.NOEXPORT:
947
948# GNU Make 3.63 has a different problem: it keeps tacking command line
949# overrides onto the definition of $(MAKE). This variable setting
950# will remove them.
951MAKEOVERRIDES=
952
953## This is ugly, but I don't want GNU make to put these variables in
954## the environment. Older makes will see this as a set of targets
955## with no dependencies and no actions.
956unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
957
958ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
959 29k-share/udi/udi2go32.c \
960 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
961 altos-xdep.c arm-convert.s \
ed9a39eb 962 arm-linux-nat.c arm-tdep.c arm-xdep.c coff-solib.c \
c906108c
SS
963 convex-tdep.c convex-xdep.c \
964 core-sol2.c core-regset.c core-aout.c corelow.c \
965 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
7a292a7a 966 gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
c906108c
SS
967 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
968 hp-psymtab-read.c hp-symtab-read.c \
d4f3574e 969 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \
c906108c
SS
970 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
971 i387-tdep.c \
972 i960-tdep.c \
973 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
974 lynx-nat.c m3-nat.c \
975 m68k-tdep.c \
9e086581 976 m88k-nat.c m88k-tdep.c mac-nat.c \
96baa820 977 mcore-tdep.c \
9e086581 978 mips-nat.c \
c906108c
SS
979 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
980 nindy-share/Onindy.c nindy-share/nindy.c \
981 nindy-share/ttyflush.c nindy-tdep.c \
982 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
983 somread.c somsolib.c $(HPREAD_SOURCE) \
984 procfs.c pyr-tdep.c pyr-xdep.c \
985 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
986 remote-es.c remote-hms.c remote-mips.c \
987 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
988 remote-st.c remote-utils.c dcache.c \
989 remote-udi.c remote-vx.c remote-vx29k.c \
990 rs6000-nat.c rs6000-tdep.c \
43e526b9
JM
991 ser-go32.c ser-pipe.c ser-ocd.c ser-tcp.c \
992 sh-tdep.c solib.c sparc-nat.c \
c906108c
SS
993 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
994 symm-tdep.c symm-nat.c \
995 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
996 vax-tdep.c \
997 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
998 win32-nat.c \
999 xcoffread.c xcoffsolib.c z8k-tdep.c
1000
1001udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
1002 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1003
1004udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1005 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1006
1007udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
1008 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1009
1010a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1011
1012a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1013
1014alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1015
1016alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1017 $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
1018
085dd6e6 1019# OBSOLETE altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
c906108c
SS
1020
1021annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1022
ed9a39eb
JM
1023arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1024 gdb_string.h
1025
c906108c
SS
1026arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1027 $(gdbcore_h)
1028
1029bcache.o: bcache.c bcache.h $(defs_h)
1030
1031blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1032 objfiles.h symfile.h target.h
1033
1034breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
104c1213
JM
1035 $(inferior_h) language.h target.h gdbthread.h gdb_string.h \
1036 gdb-events.h
c906108c
SS
1037
1038buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1039 objfiles.h symfile.h $(symtab_h) gdb_string.h
1040
1041c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1042 language.h parser-defs.h $(symtab_h)
1043
1044c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1045 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1046 target.h typeprint.h $(value_h) gdb_string.h
1047
1048c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1049 language.h $(symtab_h) valprint.h $(value_h)
1050
1051f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1052 language.h parser-defs.h $(symtab_h) gdb_string.h
1053
1054f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1055 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1056 target.h typeprint.h $(value_h) gdb_string.h
1057
1058f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1059 language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1060
1061ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
1062
1063ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1064 language.h parser-defs.h $(symtab_h)
1065
1066ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1067 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1068 target.h $(value_h) typeprint.h gdb_string.h
1069
1070ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1071 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1072
1073coff-solib.o: coff-solib.c $(defs_h)
1074
1075coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1076 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1077 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1078 gdb_string.h
1079
1080command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1081 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h $(wait_h)
1082
1083complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1084
085dd6e6
JM
1085# OBSOLETE convex-tdep.o: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1086# OBSOLETE $(gdbcore_h) $(inferior_h)
c906108c 1087
085dd6e6
JM
1088# OBSOLETE convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1089# OBSOLETE $(inferior_h)
c906108c
SS
1090
1091copying.o: copying.c $(defs_h) $(gdbcmd_h)
1092
1093core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1094
1095core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1096 $(inferior_h) target.h gdb_string.h
1097
1098core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1099 $(inferior_h) target.h gdb_string.h
1100
1101corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1102 $(inferior_h) target.h language.h gdb_string.h
1103
1104corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1105 target.h gdbthread.h gdb_string.h
1106
1107cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1108 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
1109
1110dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
1111
1112dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1113 complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1114 $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
1115 symfile.h $(symtab_h) target.h gdb_string.h
1116
1117delta68-nat.o: delta68-nat.c $(defs_h)
1118
1119demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1120
1121dink32-rom.o: dink32-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
d4f3574e 1122 $(inferior_h) target.h serial.h terminal.h symfile.h
c906108c
SS
1123
1124dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
1125
1126dstread.o: dstread.c gdb_string.h
1127
1128dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1129 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1130 $(symtab_h) gdb_string.h
1131
e514a9d6 1132dwarf2read.o: dwarf2read.c $(bfd_h) $(elf_bfd_h) buildsym.h $(defs_h) \
c906108c
SS
1133 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1134 $(symtab_h) gdb_string.h
1135
1136elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1137 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h \
1138 $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
1139
1140environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
1141
1142eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1143 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1144 gdb_string.h
1145
c2c6d25f 1146event-loop.o: event-loop.c $(defs_h) $(top_h) $(event_loop_h) $(event_top_h)
cd0fc7c3
SS
1147
1148event-top.o: event-top.c top.h $(readline_headers) \
6426a772 1149 $(defs_h) $(inferior_h) $(event_loop_h) $(event_top_h) terminal.h \
e514a9d6 1150 $(gdbcmd_h) target.h
cd0fc7c3 1151
2acceee2
JM
1152inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(inf_loop_h) $(event_loop_h) \
1153 $(event_top_h)
1154
c906108c
SS
1155exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1156 target.h language.h gdb_string.h
1157
1158expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1159 language.h parser-defs.h $(symtab_h) $(value_h)
1160
1161findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1162 gdb_string.h
1163
1164fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
1165 $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
1166
1167tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \
1168 $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) target.h \
c2c6d25f 1169 language.h gdb_string.h $(readline_headers) $(remote_h)
c906108c
SS
1170
1171gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h)
1172
1173gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1174 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1175 $(value_h) gdb_string.h
1176
1177gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
1178 exc_request_U.h msg_U.h gnu-nat.h
1179
c906108c
SS
1180# OBSOLETE gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
1181# OBSOLETE $(gdbcore_h) $(symtab_h)
1182
1183# OBSOLETE gould-xdep.o: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1184
1185h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1186
1187h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1188 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1189 $(value_h)
1190
1191hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1192
1193hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1194 $(inferior_h) objfiles.h symfile.h target.h
1195
1196hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1197
1198hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1199
1200i386gnu-nat.o: gnu-nat.h
1201
c2d11a7d
JM
1202i386-tdep.o: i386-tdep.c $(defs_h) gdb_string.h $(frame_h) \
1203 $(inferior_h) $(gdbcore_h) target.h $(floatformat_h) \
1204 $(symtab_h) $(gdbcmd_h) $(command_h)
c906108c
SS
1205
1206i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1207 language.h $(gdbcore_h) $(floatformat_h) target.h
1208
1209i386b-nat.o: i386b-nat.c $(defs_h)
1210
1211i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1212
1213i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
1214
1215i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1216
1217i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1218
1219i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1220 $(inferior_h) language.h target.h
1221
d4f3574e 1222i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
cff3e48b 1223 $(symtab_h) $(frame_h) symfile.h objfiles.h
d4f3574e 1224
c906108c
SS
1225i386v4-nat.o: i386v4-nat.c $(defs_h)
1226
1227i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1228 $(inferior_h) language.h
1229
1230i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1231 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
1232
1233infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1234 $(inferior_h) target.h language.h gdb_string.h
1235
1236inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1237 signals.h target.h terminal.h gdbthread.h gdb_string.h
1238
1239infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1240 gdb_string.h $(wait_h) $(command_h)
1241
1242infrun.o: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
c2c6d25f
JM
1243 $(inferior_h) target.h gdbthread.h gdb_string.h $(event_loop_h) \
1244 $(event_top_h) target.h
c906108c
SS
1245
1246inftarg.o: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1247 target.h terminal.h $(command_h)
1248
1249irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1250irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1251 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
1252 language.h gdb_string.h
1253
1254isi-xdep.o: isi-xdep.c
1255
1256jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1257 $(expression_h) parser-defs.h language.h symfile.h objfiles.h \
1258 gdb_string.h $(value_h) c-lang.h jv-lang.h $(gdbcore_h)
1259
1260jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1261 $(value_h) $(INCLUDE_DIR)/demangle.h jv-lang.h gdb_string.h \
7a292a7a 1262 typeprint.h c-lang.h
c906108c
SS
1263
1264jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1265 $(expression_h) $(value_h) $(INCLUDE_DIR)/demangle.h valprint.h \
7a292a7a 1266 language.h jv-lang.h c-lang.h gdbcore.h annotate.h
c906108c 1267
c2c6d25f 1268kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) target.h gdb_string.h kod.h
96baa820 1269
c2c6d25f 1270kod-cisco.o: kod-cisco.c $(defs_h) gdb_string.h kod.h
96baa820 1271
c906108c
SS
1272language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1273 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1274 target.h $(value_h) gdb_string.h
1275
1276lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1277 target.h
1278
1279m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1280 language.h m2-lang.h parser-defs.h $(symtab_h)
1281
1282m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1283 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1284 $(value_h) gdb_string.h
1285
1286m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1287 valprint.h m2-lang.h
1288
1289m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1290 $(wait_h) $(gdbcmd_h) $(gdbcore_h)
1291
1292m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1293 $(gdbcore_h) gdb_string.h
1294
1295m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1296
1297m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1298 $(language_h) $(gdbcore_h) $(floatformat_h) target.h
1299
1300m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1301
1302m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1303
1304mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
1305
da59e081 1306main.o: main.c top.h $(defs_h) gdb_string.h $(event_loop_h) tui/tui-file.h
c906108c
SS
1307
1308maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1309 $(expression_h) objfiles.h symfile.h
1310
96baa820
JM
1311mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) $(symtab_h)
1312
1313mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) target.h monitor.h \
1314 gdb_string.h
1315
c906108c
SS
1316mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1317 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1318 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1319 gdb_string.h
1320
1321mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1322
1323os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1324 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1325 objfiles.h stabsread.h symfile.h $(symtab_h) \
1326 target.h gdb_string.h
1327
1328mem-break.o: mem-break.c $(defs_h)
1329
1330minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1331 $(symtab_h) gdb_string.h
1332
1333mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1334
1335mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1336 $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
1337
1338mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1339 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1340 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1341 gdb_string.h
1342
1343mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1344
1345monitor.o: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1346 $(inferior_h) target.h serial.h terminal.h gdb_string.h
1347
1348news-xdep.o: news-xdep.c
1349
1350Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
1351 nindy-share/env.h
1352 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1353
1354nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
1355 nindy-share/env.h
1356 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1357
1358nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1359 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1360 gdb_string.h
1361
1362ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1363
1364ttyflush.o: nindy-share/ttyflush.c
1365 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1366
1367nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
1368
1369ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1370
1371objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
7a292a7a 1372 $(symtab_h) gdb_string.h $(breakpoint_h)
c906108c
SS
1373
1374osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1375 objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
1376
1377somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1378 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1379
1380somsolib.o: somsolib.c $(defs_h)
1381
53a5351d
JM
1382pa64solib.o: pa64solib.c $(defs_h)
1383
1384hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
c906108c
SS
1385hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1386 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1387 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1388
1389# FIXME!!!
1390hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1391 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1392
1393hp-psymtab-read.o: hp-psymtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1394 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1395
1396hp-symtab-read.o: hp-symtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1397 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1398# END FIXME!!!
1399
1400parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1401 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1402 gdb_string.h
1403
1404ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) gdb_string.h $(frame_h) \
1405 $(inferior_h) $(bfd_h) symfile.h target.h $(wait_h) $(gdbcmd_h) \
1406 objfiles.h gdb-stabs.h serial.h ocd.h
1407
1408ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1409 $(inferior_h) target.h serial.h terminal.h
1410
1411printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1412 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1413 symfile.h $(symtab_h) target.h gdb_string.h
1414
4ce44c66
JM
1415# FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1416# match output format strings.
c906108c 1417procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
0fda6bd2 1418 target.h gdb_string.h gdbthread.h proc-utils.h
4ce44c66 1419 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
c906108c 1420
0fda6bd2 1421proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) proc-utils.h
c3f6f71d 1422
0fda6bd2 1423proc-events.o: proc-events.c $(defs_h)
c3f6f71d 1424
0fda6bd2 1425proc-flags.o: proc-flags.c $(defs_h)
c3f6f71d 1426
0fda6bd2 1427proc-why.o: proc-why.c $(defs_h) proc-utils.h
c3f6f71d 1428
d4f3574e
SS
1429sol-thread.o: sol-thread.c $(defs_h) gdbthread.h target.h $(inferior_h) \
1430 $(gdbcmd_h)
1431
1432linux-thread.o: linux-thread.c $(breakpoint_h) $(gdbcmd_h) $(wait_h) \
1433 gdbthread.h $(gdbcore_h) $(inferior_h) target.h $(defs_h)
1434
9846de1b 1435# OBSOLETE pyr-tdep.o: pyr-tdep.c $(defs_h)
c906108c 1436
9846de1b 1437# OBSOLETE pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
c906108c
SS
1438
1439gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
1440
1441remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
1442 $(inferior_h) target.h terminal.h gdb_string.h
1443
1444remote-array.o: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \
d4f3574e
SS
1445 gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h) \
1446 $(version_h)
c906108c
SS
1447
1448remote-rdi.o: remote-rdi.c $(wait_h) $(defs_h) $(gdbcore_h) \
1449 $(inferior_h) gdb_string.h
1450
1451rdi-share/libangsd.a: force
1452 @dir=rdi-share; \
1453 if [ -f ./$${dir}/Makefile ] ; then \
1454 r=`pwd`; export r; \
1455 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1456 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1457 else \
1458 true; \
1459 fi
1460
1461remote-d10v.o: remote-d10v.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1462 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1463
1464remote-rdp.o: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \
1465 $(inferior_h) gdb_string.h
1466
1467remote-bug.o: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
1468 $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
1469
d4f3574e
SS
1470# FIXME: For the SH target, remote-e7000 contains numerous -Wformat
1471# warnings. Since the fixes involve modifications to the code that
1472# handles the SH remote protocol the changes need to be tested against
1473# an SH board before they can be committed. cagney 1999-09-01.
c906108c
SS
1474remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1475 $(wait_h) serial.h gdb_string.h
d4f3574e 1476 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
c906108c
SS
1477
1478remote-eb.o: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
1479 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1480 gdb_string.h
1481
1482remote-es.o: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
1483 $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
1484
1485remote-hms.o: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
1486 $(inferior_h) serial.h target.h terminal.h gdb_string.h
1487
1488remote-mips.o: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1489 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1490
1491remote-mm.o: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
1492 minimon.h target.h terminal.h gdb_string.h
1493
1494remote-nindy.o: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
1495 $(defs_h) $(gdbcore_h) $(inferior_h) \
1496 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1497 symfile.h
1498
1499remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
1500 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1501 objfiles.h gdb-stabs.h gdb_string.h
1502
1503remote-sds.o: remote-sds.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1504 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1505
1506remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
1507 $(inferior_h) target.h terminal.h gdb_string.h \
1508 $(INCLUDE_DIR)/callback.h
1509
1510remote-st.o: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
1511 target.h gdb_string.h
1512
1513remote-udi.o: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1514 $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
1515
1516remote-vx.o: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1517 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1518 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1519 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1520 gdb_string.h
1521
1522remote-vx29k.o: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1523 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1524 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1525 vx-share/xdr_rdb.h gdb_string.h
1526
1527ocd.o: ocd.c ocd.h $(gdbcore_h) gdb_string.h $(frame_h) $(inferior_h) \
1528 $(bfd_h) symfile.h target.h $(wait_h) $(gdbcmd_h) objfiles.h \
1529 gdb-stabs.h $(dcache_h) serial.h
1530
1531remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1532 $(inferior_h) $(remote_utils_h) gdb_string.h
1533
1534remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
43ff13b4 1535 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h \
2acceee2 1536 $(event_loop_h) $(event_top_h) $(remote_h) $(inf_loop_h)
c906108c
SS
1537
1538remote-nrom.o: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1539 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1540
1541rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1542 $(inferior_h) target.h serial.h terminal.h
1543
1544rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1545 xcoffsolib.h
1546
1547rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1548 target.h xcoffsolib.h
1549
1550scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1551 scm-lang.h scm-tags.h
1552
1553scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1554 scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
1555
1556scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h \
1557 scm-lang.h valprint.h $(gdbcore_h)
1558
1559ser-go32.o: ser-go32.c $(defs_h) serial.h
1560
1561ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1562
1563ser-ocd.o: ser-ocd.c $(defs_h) serial.h signals.h gdb_string.h
1564
c2c6d25f 1565ser-pipe.o: ser-pipe.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
43e526b9 1566
c2c6d25f 1567ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
c906108c 1568
c2c6d25f 1569ser-unix.o: ser-unix.c $(defs_h) serial.h ser-unix.h
c906108c
SS
1570
1571serial.o: serial.c $(defs_h) serial.h gdb_string.h
1572
1573sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1574 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1575 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1576
1577sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1578 $(inferior_h) target.h serial.h terminal.h
1579
1580mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1581 $(inferior_h) target.h serial.h terminal.h
1582
1583solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1584 objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
1585
1586source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1587 $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
c2c6d25f 1588 gdb_string.h source.h
c906108c
SS
1589
1590sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1591 target.h
1592
1593sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1594 $(inferior_h) objfiles.h symfile.h target.h gdb_string.h
1595
1596sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1597
1598dsrec.o: dsrec.c $(defs_h) srec.h
1599
1600stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1601 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1602 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1603 gdb_string.h
1604
1605stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1606 language.h target.h gdb_string.h
1607
d9fcf2fb 1608ui-file.o: ui-file.c $(defs_h) ui-file.h
da59e081
JM
1609tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(srcdir)/tui/tui-file.h
1610 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c
1611
7a292a7a 1612ax-general.o: ax-general.c $(ax_h) $(defs_h) $(value_h)
c906108c
SS
1613ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) symfile.h $(gdbtypes_h) \
1614 $(value_h) $(expression_h) $(command_h) $(ax_h) $(gdbcmd_h) ax-gdb.h
1615
1616sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1617
1618sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1619
1620symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1621 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1622 language.h objfiles.h symfile.h $(symtab_h) target.h \
1623 gdb_string.h
1624
1625symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1626
1627symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1628
1629symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1630 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1631 $(symtab_h) gdb_string.h
1632
1633symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1634 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1635 gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1636 gdb_string.h
1637
104c1213
JM
1638# OBSOLETE tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1639# OBSOLETE $(symtab_h)
c906108c 1640
7a292a7a
SS
1641tic80-tdep.o: tic80-tdep.c $(defs_h)
1642
c906108c
SS
1643target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1644 objfiles.h symfile.h target.h gdb_string.h
1645
cd0fc7c3 1646thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h) target.h
c906108c
SS
1647
1648top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1649 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
c2c6d25f 1650 $(remote_utils_h) gdb_string.h $(event_loop_h) $(event_top_h) $(version_h)
c906108c
SS
1651
1652typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1653 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1654 $(value_h) gdb_string.h
1655
1656ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1657
1658ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1659
1660umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1661
1662utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1663 language.h signals.h target.h terminal.h $(readline_headers) \
c2c6d25f 1664 gdb_string.h $(event_loop_h) $(event_top_h)
c906108c
SS
1665
1666valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1667 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1668 gdb_string.h
1669
1670valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1671 gdb_string.h
1672
1673valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1674 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1675 $(value_h) gdb_string.h valprint.h
1676
1677values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1678 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
1679 gdb_string.h scm-lang.h
1680
1681vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1682
1683w65-tdep.o : w65-tdep.c $(gdbcore_h)
1684
1685win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1686 gdb_string.h
1687
1688xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1689 vx-share/vxWorks.h vx-share/xdr_ld.h
1690 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1691
1692xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1693 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1694 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1695
1696xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1697 vx-share/vxWorks.h vx-share/xdr_rdb.h
1698 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1699
1700xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1701 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1702 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1703 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1704 $(symtab_h) partial-stab.h gdb_string.h
1705
1706xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1707
d4f3574e
SS
1708# FIXME: z8k-tdep.c calls _initialize_gdbtypes(). Since that isn't
1709# declared -Wimplicit fails. It should be using the GDBARCH framework.
1710# cagney 1999-09-02.
c906108c 1711z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
d4f3574e
SS
1712 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h) $(value_h)
1713 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
c906108c
SS
1714
1715c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1716 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1717 $(bfd_h) objfiles.h symfile.h
1718
1719jv-exp.tab.o: jv-exp.tab.c jv-lang.h $(defs_h) $(expression_h) \
1720 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1721 $(bfd_h) objfiles.h symfile.h
1722
1723f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1724 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1725
1726m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1727 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1728 $(bfd_h) objfiles.h symfile.h
1729
104c1213
JM
1730gdb-events.o: gdb-events.c gdb-events.h $(defs_h) $(gdbcmd_h)
1731
c906108c 1732### end of the gdb Makefile.in.
This page took 0.236286 seconds and 4 git commands to generate.