1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
2 # Free Software Foundation, Inc.
4 # This file is part of GDB.
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.
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.
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.
21 exec_prefix = @exec_prefix@
23 host_alias = @host_alias@
24 target_alias = @target_alias@
25 program_transform_name = @program_transform_name@
28 tooldir = $(libdir)/$(target_alias)
32 man1dir = $(mandir)/man1
33 man2dir = $(mandir)/man2
34 man3dir = $(mandir)/man3
35 man4dir = $(mandir)/man4
36 man5dir = $(mandir)/man5
37 man6dir = $(mandir)/man6
38 man7dir = $(mandir)/man7
39 man8dir = $(mandir)/man8
40 man9dir = $(mandir)/man9
42 htmldir = $(prefix)/html
43 includedir = @includedir@
45 # This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
54 INSTALL_PROGRAM = @INSTALL_PROGRAM@
55 INSTALL_DATA = @INSTALL_DATA@
63 # If the user configured GDB to include the TUI, the name of the tui
65 TUI_LIBRARY = @TUI_LIBRARY@
67 # If the user configured GDB to include the TUI, the all-tui
69 BUILD_TUI = @BUILD_TUI@
71 # Flags that describe where you can find the termcap library.
72 # This can be overridden in the host Makefile fragment file.
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.
82 # Directory containing source files.
88 YLWRAP = $(srcdir)/../ylwrap
90 # where to find makeinfo, preferably one designed for texinfo-2
95 MAKEHTMLFLAGS = -glossary -menu -split_chapter
97 # Set this up with gcc if you have gnu ld and the loader will print out
98 # line numbers for undefined references.
102 # Where is our "include" directory? Typically $(srcdir)/../include.
103 # This is essentially the header file directory for the library
104 # routines in libiberty.
105 INCLUDE_DIR = $(srcdir)/../include
106 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
108 # Where is the "-liberty" library? Typically in ../libiberty.
109 LIBIBERTY = ../libiberty/libiberty.a
111 # Configured by the --with-mmalloc option to configure.
113 MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
115 # Where is the BFD library? Typically in ../bfd.
117 BFD = $(BFD_DIR)/libbfd.a
118 BFD_SRC = $(srcdir)/$(BFD_DIR)
119 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
121 # Where is the READLINE library? Typically in ../readline.
122 READLINE_DIR = ../readline
123 READLINE = $(READLINE_DIR)/libreadline.a
124 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
125 READLINE_CFLAGS = -I$(READLINE_SRC)/..
127 WARN_CFLAGS = @WARN_CFLAGS@
128 WERROR_CFLAGS = @WERROR_CFLAGS@
129 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
130 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
132 # Where is the INTL library? Typically in ../intl.
135 INTL_DEPS = @INTLDEPS@
136 INTL_SRC = $(srcdir)/$(INTL_DIR)
137 INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
139 # Where is the TUI library? Typically in tui/.
141 TUI_SRC = $(srcdir)/$(TUI_DIR)
142 TUI_CFLAGS= -I$(TUI_SRC)
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
147 # Where is the "-lopcodes" library, with (some of) the opcode tables and
149 OPCODES = ../opcodes/libopcodes.a
150 # Where are the other opcode tables which only have header file
152 OP_INCLUDE = $(INCLUDE_DIR)/opcode
153 OPCODES_CFLAGS = -I$(OP_INCLUDE)
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.
159 WIN32LIBS = @WIN32LIBS@
162 ENABLE_CFLAGS= @ENABLE_CFLAGS@
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.
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).
172 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
174 # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
175 # from the config directory.
176 GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
177 #PROFILE_CFLAGS = -pg
179 # CFLAGS is specifically reserved for setting from the command line
180 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
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.
188 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
189 INTERNAL_WARN_CFLAGS = \
190 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
191 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
192 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
193 $(INTL_CFLAGS) $(TUI_CFLAGS) $(ENABLE_CFLAGS) $(GDB_WARN_CFLAGS)
194 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
196 # LDFLAGS is specifically reserved for setting from the command line
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.
202 INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS) @CONFIG_LDFLAGS@ @HLDFLAGS@
205 # We are using our own version of REGEX now to be consistent across
210 # If your system is missing alloca(), or, more likely, it's there but
211 # it doesn't work, then refer to libiberty.
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='
220 INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
221 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
222 -lmmalloc -lintl -liberty
223 CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
224 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
225 $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS)
226 CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
227 $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) @CONFIG_DEPS@
229 ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
230 ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
236 LINTFLAGS= $(BFD_CFLAGS)
238 RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
239 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
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
250 SER_HARDWIRE = ser-unix.o ser-pipe.o
252 # The `remote' debugging target is supported for most architectures,
253 # but not all (e.g. 960)
254 REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o
256 # This is remote-sim.o if a simulator is to be linked in.
259 ANNOTATE_OBS = annotate.o
261 # Host and target-dependent makefile fragments come in here.
263 @target_makefile_frag@
264 # End of host and target-dependent makefile fragments
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
275 "exec_prefix=$(exec_prefix)" \
276 "against=$(against)" \
278 "AR_FLAGS=$(AR_FLAGS)" \
281 "CHILLFLAGS=$(CHILLFLAGS)" \
283 "CHILL_LIB=$(CHILL_LIB)" \
285 "CXXFLAGS=$(CXXFLAGS)" \
286 "DLLTOOL=$(DLLTOOL)" \
288 "MAKEINFO=$(MAKEINFO)" \
289 "MAKEHTML=$(MAKEHTML)" \
290 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
291 "INSTALL=$(INSTALL)" \
292 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
293 "INSTALL_DATA=$(INSTALL_DATA)" \
294 "RUNTEST=$(RUNTEST)" \
295 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
297 # Flags that we pass when building the testsuite.
299 # empty for native, $(target_alias)/ for cross
300 target_subdir = @target_subdir@
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/; \
307 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
310 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
313 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
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/; \
323 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
326 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
329 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
333 CHILLFLAGS = $(CFLAGS)
335 CHILL_FOR_TARGET = ` \
336 if [ -f $${rootme}/../gcc/Makefile ] ; then \
337 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
339 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
342 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
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; \
353 # The use of $$(x_FOR_TARGET) reduces the command line length by not
354 # duplicating the lengthy definition.
355 TARGET_FLAGS_TO_PASS = \
357 "exec_prefix=$(exec_prefix)" \
358 "against=$(against)" \
359 'CC=$$(CC_FOR_TARGET)' \
360 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
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)" \
373 "MAKEHTML=$(MAKEHTML)" \
374 "RUNTEST=$(RUNTEST)" \
375 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
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.
381 SFILES = 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 \
386 event-loop.c event-top.c \
387 expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \
388 findvar.c gdbarch.c gdbtypes.c infcmd.c inflow.c infrun.c language.c \
390 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
391 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
392 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
393 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c \
394 scm-valprint.c source.c stabsread.c stack.c symfile.c \
395 symmisc.c symtab.c target.c thread.c top.c tracepoint.c \
396 typeprint.c utils.c valarith.c valops.c valprint.c values.c \
397 serial.c ser-unix.c mdebugread.c os9kread.c \
398 tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \
399 tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \
400 tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \
401 tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \
402 tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \
403 tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \
404 tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h
406 LINTFILES = $(SFILES) $(YYFILES) @CONFIG_SRCS@ init.c
408 # "system" headers. Using these in dependencies is a rather personal
409 # choice. (-rich, summer 1993)
410 # (Why would we not want to depend on them? If one of these changes in a
411 # non-binary-compatible way, it is a real pain to remake the right stuff
412 # without these dependencies -kingdon, 13 Mar 1994)
413 getopt_h = $(INCLUDE_DIR)/getopt.h
414 floatformat_h = $(INCLUDE_DIR)/floatformat.h
415 bfd_h = $(BFD_DIR)/bfd.h
416 wait_h = $(INCLUDE_DIR)/wait.h
417 dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
418 remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
421 remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
425 $(READLINE_SRC)/chardefs.h \
426 $(READLINE_SRC)/history.h \
427 $(READLINE_SRC)/keymaps.h \
428 $(READLINE_SRC)/readline.h
431 $(srcdir)/29k-share/udi/udiproc.h \
432 $(srcdir)/29k-share/udi/udiphcfg.h \
433 $(srcdir)/29k-share/udi/udiphunix.h \
434 $(srcdir)/29k-share/udi/udiptcfg.h \
435 $(srcdir)/29k-share/udi/udipt29k.h \
436 $(srcdir)/29k-share/udi/udisoc.h
438 gdbcore_h = gdbcore.h $(bfd_h)
441 symtab_h = symtab.h bcache.h
442 gdbtypes_h = gdbtypes.h
443 expression_h = expression.h
444 value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
446 breakpoint_h = breakpoint.h $(frame_h) $(value_h)
448 command_h = command.h
449 gdbcmd_h = gdbcmd.h $(command_h)
451 defs_h = defs.h xm.h tm.h nm.h config.status config.h gdbarch.h
454 inferior_h = inferior.h $(breakpoint_h)
455 tracepoint_h = tracepoint.h
457 event_loop_h = event-loop.h
458 version_h = version.h
460 # Header files that need to have srcdir added. Note that in the cases
461 # where we use a macro like $(gdbcmd_h), things are carefully arranged
462 # so that each .h file is listed exactly once (M-x tags-search works
463 # wrong if TAGS has files twice). Because this is tricky to get
464 # right, it is probably easiest just to list .h files here directly.
466 HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
467 dst.h environ.h $(gdbcmd_h) gdbcore.h \
468 gdb-stabs.h hpread.h $(inferior_h) language.h minimon.h monitor.h \
469 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
470 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
471 c-lang.h ch-lang.h f-lang.h \
474 complaints.h valprint.h \
475 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
476 nindy-share/block_io.h nindy-share/coff.h \
477 nindy-share/env.h nindy-share/stop.h \
478 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
479 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
480 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
481 dcache.h remote-utils.h top.h somsolib.h
483 # Header files that already have srcdir in them, or which are in objdir.
485 HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
488 # GDB "info" files, which should be included in their entirety
489 INFOFILES = gdb.info*
491 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
493 POSSLIBS = gnu-regex.c gnu-regex.h
495 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
496 # default their values the way we do for SER_HARDWIRE; in the future
497 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
498 # variables analogous to SER_HARDWIRE which get defaulted in this
501 DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
502 $(REMOTE_OBS) $(SIM_OBS) @CONFIG_OBS@
504 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) @CONFIG_SRCS@
505 # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
506 # and it's more useful to see it in the .y file.
507 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
509 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
511 COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
512 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
513 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
514 expprint.o environ.o \
515 event-loop.o event-top.o \
516 gdbarch.o gdbtypes.o copying.o $(DEPFILES) \
517 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
520 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
521 dbxread.o coffread.o elfread.o \
522 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
523 c-lang.o ch-exp.o ch-lang.o f-lang.o \
524 jv-lang.o jv-valprint.o jv-typeprint.o \
526 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
527 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
528 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
529 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o
531 OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
535 NTSOBS = standalone.o
537 NTSSTART = kdb-start.o
541 # For now, shortcut the "configure GDB for fewer languages" stuff.
542 YYFILES = c-exp.tab.c \
544 f-exp.tab.c m2-exp.tab.c
545 YYOBJ = c-exp.tab.o \
547 f-exp.tab.o m2-exp.tab.o
549 # Things which need to be built when making a distribution.
551 DISTSTUFF = $(YYFILES)
553 # Prevent Sun make from putting in the machine type. Setting
554 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
556 $(CC) -c $(INTERNAL_CFLAGS) $<
559 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
563 # The check target can not use subdir_do, because subdir_do does not
564 # use TARGET_FLAGS_TO_PASS.
566 @if [ -f testsuite/Makefile ]; then \
567 rootme=`pwd`; export rootme; \
568 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
570 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
573 info dvi install-info clean-info html install-html: force
574 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
577 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
578 pack gdb.t ; rm -f gdb.t
581 # Traditionally "install" depends on "all". But it may be useful
582 # not to; for example, if the user has made some trivial change to a
583 # source file and doesn't care about rebuilding or just wants to save the
584 # time it takes for make to check that all is up to date.
585 # install-only is intended to address that need.
586 install: all install-only
588 transformed_name=`t='$(program_transform_name)'; \
589 echo gdb | sed -e $$t` ; \
590 if test "x$$transformed_name" = x; then \
591 transformed_name=gdb ; \
595 $(INSTALL_PROGRAM) gdb$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \
596 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
597 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
600 transformed_name=`t='$(program_transform_name)'; \
601 echo gdb | sed -e $$t` ; \
602 if test "x$$transformed_name" = x; then \
603 transformed_name=gdb ; \
607 rm -f $(bindir)/$$transformed_name$(EXEEXT) $(man1dir)/$$transformed_name.1
608 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
610 # We do this by grepping through sources. If that turns out to be too slow,
611 # maybe we could just require every .o file to have an initialization routine
612 # of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
614 # Formatting conventions: The name of the _initialize_* routines must start
615 # in column zero, and must not be inside #if.
617 # Note that the set of files with init functions might change, or the names
618 # of the functions might change, so this files needs to depend on all the
619 # object files that will be linked into gdb.
621 init.c: $(OBS) $(TSOBS)
624 @echo '/* Do not modify this file. */' >init.c-tmp
625 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
626 @echo '#include "ansidecl.h"' >>init.c-tmp
627 @echo 'extern void initialize_all_files PARAMS ((void));' >>init.c-tmp
628 @echo 'void initialize_all_files PARAMS ((void)) {' >>init.c-tmp
629 @-echo $(OBS) $(TSOBS) | \
631 sed -e '/^Onindy.o/d' \
635 -e '/xdr_ptrace.o/d' \
641 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
642 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
644 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
645 while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \
646 sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp
647 @echo '}' >>init.c-tmp
648 @mv init.c-tmp init.c
652 # Removing the old gdb first works better if it is running, at least on SunOS.
653 gdb$(EXEEXT): main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
655 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) -o gdb$(EXEEXT) main.o libgdb.a $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
658 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
660 # Create a library of the gdb object files and build GDB by linking
663 # init.o is very important. It pulls in the rest of GDB.
664 LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o
665 libgdb.a: $(LIBGDB_OBS)
667 $(AR) q libgdb.a $(LIBGDB_OBS)
670 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
671 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
672 #load ./init.c $(SFILES)
673 #unload $(srcdir)/c-exp.y
674 #unload $(srcdir)/jv-exp.y
675 #unload $(srcdir)/m2-exp.y
677 #unload nindy-share/[A-Z]*
681 #load copying.c version.c
682 #load ../opcodes/libopcodes.a
683 #load ../libiberty/libiberty.a
684 #load ../bfd/libbfd.a
685 #load ../readline/libreadline.a
686 #load ../mmalloc/libmmalloc.a
687 #load ../intl/libintl.a
689 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
690 echo "Load .c corresponding to:" $(DEPFILES)
693 # A Mach 3.0 program to force gdb back to command level
696 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
697 stop-gdb.o $(CLIBS) $(LOADLIBES)
699 # This is useful when debugging GDB, because some Unix's don't let you run GDB
700 # on itself without copying the executable. So "make gdb1" will make
701 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
702 # Removing gdb1 before the copy is the right thing if gdb1 is open
703 # in another process.
704 gdb1$(EXEEXT): gdb$(EXEEXT)
706 cp gdb$(EXEEXT) gdb1$(EXEEXT)
708 # FIXME. These are not generated by "make depend" because they only are there
710 # But these rules don't do what we want; we want to hack the foo.o: tm.h
711 # dependency to do the right thing.
712 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
713 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
714 xm-news1000.h: xm-news.h
715 xm-i386-sv32.h: xm-i386.h
716 tm-i386gas.h: tm-i386.h
717 xm-sun4os4.h: xm-sparc.h
718 tm-sun4os4.h: tm-sparc.h
719 xm-vaxult.h: xm-vax.h
720 xm-vaxbsd.h: xm-vax.h
722 kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
723 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
726 # Have the TUI library depend on a phony target, so we'll always
727 # recurse and make sure it's up to date. If it is, then the file will
728 # be unchanged, and we won't rebuild it.
731 @(cd tui; ${MAKE} ${FLAGS_TO_PASS} all)
733 # Put the proper machine-specific files first, so M-. on a machine
734 # specific routine gets the one for the correct machine. (FIXME: those
735 # files go in twice; we should be removing them from the main list).
737 # TAGS depends on all the files that go into it so you can rebuild TAGS
738 # with `make TAGS' and not have to say `rm TAGS' first.
740 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
742 @etags $(srcdir)/$(TM_FILE) \
743 $(srcdir)/$(XM_FILE) \
744 $(srcdir)/$(NAT_FILE) \
745 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
746 echo $(srcdir)/$$i ; \
747 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
749 done) | sed -e 's/\.o$$/\.c/'` \
750 `find $(srcdir)/config -name '*.h' -print`
755 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
756 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp
757 rm -f init.c version.c
758 rm -f gdb$(EXEEXT) core make.log
759 rm -f gdb[0-9]$(EXEEXT)
761 # This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
762 # I believe this is wrong; the makefile standards for distclean just
763 # describe removing files; the only sort of "re-create a distribution"
764 # functionality described is if the distributed files are unmodified.
766 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
767 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
768 rm -f y.output yacc.acts yacc.tmp y.tab.h
769 rm -f config.log config.cache
772 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
773 realclean: maintainer-clean
775 local-maintainer-clean:
776 @echo "This command is intended for maintainers to use;"
777 @echo "it deletes files that may require special tools to rebuild."
780 f-exp.tab.c m2-exp.tab.c
781 rm -f TAGS $(INFOFILES)
783 rm -f nm.h tm.h xm.h config.status
786 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
789 diststuff: $(DISTSTUFF)
790 cd doc; $(MAKE) $(MFLAGS) all-doc
793 @for i in $(DODIRS); do \
794 if [ -f ./$$i/Makefile ] ; then \
796 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
801 Makefile: Makefile.in config.status @frags@
802 $(SHELL) config.status
804 config.h: stamp-h ; @true
805 stamp-h: config.in config.status
806 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
808 config.status: configure
809 $(SHELL) config.status --recheck
814 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
816 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
818 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
820 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
822 # GDB MANUAL: TeX dvi file
824 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
826 # GDB MANUAL: info file
828 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
830 # Make copying.c from COPYING
831 copying.c: COPYING copying.awk
832 awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
836 echo '#include "version.h"' >> version.c
837 echo 'const char version[] = "$(VERSION)";' >> version.c
838 echo 'const char host_name[] = "$(host_alias)";' >> version.c
839 echo 'const char target_name[] = "$(target_alias)";' >> version.c
840 version.o: version.c $(version_h)
842 # c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
843 # in srcdir, then compiled in objdir to c-exp.tab.o.
845 # If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
846 # would sometimes re-write it into $(srcdir)/c-exp.tab.c.
848 # Remove bogus decls for malloc/realloc/free which conflict with everything
849 # else. Strictly speaking c-exp.tab.c should therefore depend on
850 # Makefile.in, but that was a pretty big annoyance.
851 c-exp.tab.o: c-exp.tab.c
853 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS)
854 -sed -e '/extern.*malloc/d' \
855 -e '/extern.*realloc/d' \
856 -e '/extern.*free/d' \
857 -e '/include.*malloc.h/d' \
858 -e 's/malloc/xmalloc/g' \
859 -e 's/realloc/xrealloc/g' \
860 -e '/^#line.*y.tab.c/d' \
861 < c-exp.tmp > c-exp.new
863 mv c-exp.new ./c-exp.tab.c
865 jv-exp.tab.o: jv-exp.tab.c
866 jv-exp.tab.c: jv-exp.y
867 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/jv-exp.y y.tab.c jv-exp.tmp -- $(YFLAGS)
868 -sed -e '/extern.*malloc/d' \
869 -e '/extern.*realloc/d' \
870 -e '/extern.*free/d' \
871 -e '/include.*malloc.h/d' \
872 -e 's/malloc/xmalloc/g' \
873 -e 's/realloc/xrealloc/g' \
874 -e '/^#line.*y.tab.c/d' \
875 < jv-exp.tmp > jv-exp.new
877 mv jv-exp.new ./jv-exp.tab.c
879 f-exp.tab.o: f-exp.tab.c
880 f-exp.tab.c: f-exp.y c-exp.tab.c
881 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS)
882 -sed -e '/extern.*malloc/d' \
883 -e '/extern.*realloc/d' \
884 -e '/extern.*free/d' \
885 -e '/include.*malloc.h/d' \
886 -e 's/malloc/xmalloc/g' \
887 -e 's/realloc/xrealloc/g' \
888 -e '/^#line.*y.tab.c/d' \
889 < f-exp.tmp > f-exp.new
891 mv f-exp.new ./f-exp.tab.c
893 # m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
894 # in srcdir, then compiled in objdir to m2-exp.tab.o.
895 # Remove bogus decls for malloc/realloc/free which conflict with everything
897 m2-exp.tab.o: m2-exp.tab.c
898 m2-exp.tab.c: m2-exp.y
899 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/m2-exp.y y.tab.c m2-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 < m2-exp.tmp > m2-exp.new
909 mv m2-exp.new ./m2-exp.tab.c
911 # These files are updated atomically, so make never has to remove them
912 .PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
913 .PRECIOUS: jv-exp.tab.c
916 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
917 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
920 cxref -I. $(SFILES) >gdb.cxref
924 # GNU Make has an annoying habit of putting *all* the Makefile variables
925 # into the environment, unless you include this target as a circumvention.
926 # Rumor is that this will be fixed (and this target can be removed)
930 # GNU Make 3.63 has a different problem: it keeps tacking command line
931 # overrides onto the definition of $(MAKE). This variable setting
935 ## This is ugly, but I don't want GNU make to put these variables in
936 ## the environment. Older makes will see this as a set of targets
937 ## with no dependencies and no actions.
938 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
940 ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
941 29k-share/udi/udi2go32.c \
942 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
943 altos-xdep.c arm-convert.s \
944 arm-tdep.c arm-xdep.c coff-solib.c \
945 convex-tdep.c convex-xdep.c \
946 core-sol2.c core-regset.c core-aout.c corelow.c \
947 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
948 gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
949 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
950 hp-psymtab-read.c hp-symtab-read.c \
951 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \
952 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
955 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
956 lynx-nat.c m3-nat.c \
958 m88k-nat.c m88k-tdep.c mac-nat.c \
961 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
962 nindy-share/Onindy.c nindy-share/nindy.c \
963 nindy-share/ttyflush.c nindy-tdep.c \
964 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
965 somread.c somsolib.c $(HPREAD_SOURCE) \
966 procfs.c pyr-tdep.c pyr-xdep.c \
967 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
968 remote-es.c remote-hms.c remote-mips.c \
969 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
970 remote-st.c remote-utils.c dcache.c \
971 remote-udi.c remote-vx.c remote-vx29k.c \
972 rs6000-nat.c rs6000-tdep.c \
973 ser-go32.c ser-pipe.c ser-ocd.c ser-tcp.c \
974 sh-tdep.c solib.c sparc-nat.c \
975 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
976 symm-tdep.c symm-nat.c \
977 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
979 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
981 xcoffread.c xcoffsolib.c z8k-tdep.c
983 udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
984 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
986 udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
987 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
989 udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
990 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
992 a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
994 a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
996 alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
998 alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
999 $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
1001 # OBSOLETE altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1003 annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1005 arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1008 bcache.o: bcache.c bcache.h $(defs_h)
1010 blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1011 objfiles.h symfile.h target.h
1013 breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1014 $(inferior_h) language.h target.h gdbthread.h gdb_string.h \
1017 buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1018 objfiles.h symfile.h $(symtab_h) gdb_string.h
1020 c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1021 language.h parser-defs.h $(symtab_h)
1023 c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1024 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1025 target.h typeprint.h $(value_h) gdb_string.h
1027 c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1028 language.h $(symtab_h) valprint.h $(value_h)
1030 f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1031 language.h parser-defs.h $(symtab_h) gdb_string.h
1033 f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1034 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1035 target.h typeprint.h $(value_h) gdb_string.h
1037 f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1038 language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1040 ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
1042 ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1043 language.h parser-defs.h $(symtab_h)
1045 ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1046 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1047 target.h $(value_h) typeprint.h gdb_string.h
1049 ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1050 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1052 coff-solib.o: coff-solib.c $(defs_h)
1054 coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1055 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1056 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1059 command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1060 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h $(wait_h)
1062 complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1064 # OBSOLETE convex-tdep.o: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1065 # OBSOLETE $(gdbcore_h) $(inferior_h)
1067 # OBSOLETE convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1068 # OBSOLETE $(inferior_h)
1070 copying.o: copying.c $(defs_h) $(gdbcmd_h)
1072 core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1074 core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1075 $(inferior_h) target.h gdb_string.h
1077 core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1078 $(inferior_h) target.h gdb_string.h
1080 corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1081 $(inferior_h) target.h language.h gdb_string.h
1083 corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1084 target.h gdbthread.h gdb_string.h
1086 cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1087 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
1089 dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
1091 dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1092 complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1093 $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
1094 symfile.h $(symtab_h) target.h gdb_string.h
1096 delta68-nat.o: delta68-nat.c $(defs_h)
1098 demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1100 dink32-rom.o: dink32-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1101 $(inferior_h) target.h serial.h terminal.h symfile.h
1103 dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
1105 dstread.o: dstread.c gdb_string.h
1107 dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1108 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1109 $(symtab_h) gdb_string.h
1111 dwarf2read.o: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
1112 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1113 $(symtab_h) gdb_string.h
1115 elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1116 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h \
1117 $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
1119 environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
1121 eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1122 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1125 event-loop.o: event-loop.c $(defs_h) $(top_h) $(event_loop_h)
1127 event-top.o: event-top.c top.h $(readline_headers) \
1128 $(defs_h) $(inferior_h) $(event_loop_h) terminal.h $(gdbcmd_h)
1130 exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1131 target.h language.h gdb_string.h
1133 expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1134 language.h parser-defs.h $(symtab_h) $(value_h)
1136 findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1139 fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
1140 $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
1142 # Due to several ``enum enabled'' declaration clashes it is difficult
1143 # to fix breakpoint.c's compiler warnings.
1144 tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \
1145 $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) target.h \
1146 language.h gdb_string.h $(readline_headers)
1147 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1149 gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h)
1151 gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1152 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1153 $(value_h) gdb_string.h
1155 gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
1156 exc_request_U.h msg_U.h gnu-nat.h
1158 # OBSOLETE gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
1159 # OBSOLETE $(gdbcore_h) $(symtab_h)
1161 # OBSOLETE gould-xdep.o: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1163 h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1165 h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1166 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1169 hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1171 hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1172 $(inferior_h) objfiles.h symfile.h target.h
1174 hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1176 hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1178 i386gnu-nat.o: gnu-nat.h
1180 i386-tdep.o: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1183 i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1184 language.h $(gdbcore_h) $(floatformat_h) target.h
1186 i386b-nat.o: i386b-nat.c $(defs_h)
1188 i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1190 i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
1192 i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1194 i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1196 i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1197 $(inferior_h) language.h target.h
1199 i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1200 $(symtab_h) $(frame_h) $(symfile_h) $(objfiles_h)
1202 i386v4-nat.o: i386v4-nat.c $(defs_h)
1204 i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1205 $(inferior_h) language.h
1207 i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1208 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
1210 infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1211 $(inferior_h) target.h language.h gdb_string.h
1213 inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1214 signals.h target.h terminal.h gdbthread.h gdb_string.h
1216 infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1217 gdb_string.h $(wait_h) $(command_h)
1219 infrun.o: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1220 $(inferior_h) target.h gdbthread.h gdb_string.h $(event_loop_h)
1222 inftarg.o: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1223 target.h terminal.h $(command_h)
1225 irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1226 irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1227 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
1228 language.h gdb_string.h
1230 isi-xdep.o: isi-xdep.c
1232 jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1233 $(expression_h) parser-defs.h language.h symfile.h objfiles.h \
1234 gdb_string.h $(value_h) c-lang.h jv-lang.h $(gdbcore_h)
1236 jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1237 $(value_h) $(INCLUDE_DIR)/demangle.h jv-lang.h gdb_string.h \
1238 typeprint.h c-lang.h
1240 jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1241 $(expression_h) $(value_h) $(INCLUDE_DIR)/demangle.h valprint.h \
1242 language.h jv-lang.h c-lang.h gdbcore.h annotate.h
1244 kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) target.h gdb_string.h
1246 kod-cisco.o: kod-cisco.c $(defs_h) gdb_string.h
1248 language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1249 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1250 target.h $(value_h) gdb_string.h
1252 lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1255 m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1256 language.h m2-lang.h parser-defs.h $(symtab_h)
1258 m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1259 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1260 $(value_h) gdb_string.h
1262 m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1263 valprint.h m2-lang.h
1265 m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1266 $(wait_h) $(gdbcmd_h) $(gdbcore_h)
1268 m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1269 $(gdbcore_h) gdb_string.h
1271 m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1273 m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1274 $(language_h) $(gdbcore_h) $(floatformat_h) target.h
1276 m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1278 m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1280 mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
1282 main.o: main.c top.h $(defs_h) gdb_string.h $(event_loop_h)
1284 maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1285 $(expression_h) objfiles.h symfile.h
1287 mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) $(symtab_h)
1289 mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) target.h monitor.h \
1292 mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1293 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1294 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1297 mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1299 os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1300 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1301 objfiles.h stabsread.h symfile.h $(symtab_h) \
1302 target.h gdb_string.h
1304 mem-break.o: mem-break.c $(defs_h)
1306 minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1307 $(symtab_h) gdb_string.h
1309 mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1311 mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1312 $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
1314 mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1315 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1316 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1319 mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1321 # FIXME: Monitor.c has -Wformat problems. The code using the macros
1322 # RDEBUG and EXTRA_RDEBUG needs be replaced with something that:
1323 # doesn't cause -Wformat errors; sends all output to gdb_stdlog
1324 # instead of stdout; and controls the output throug a ``set
1325 # monitordebug'' command/variable. cagney, 1999-09-01.
1326 monitor.o: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1327 $(inferior_h) target.h serial.h terminal.h gdb_string.h
1328 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1330 news-xdep.o: news-xdep.c
1332 Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
1334 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1336 nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
1338 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1340 nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1341 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1344 ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1346 ttyflush.o: nindy-share/ttyflush.c
1347 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1349 nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
1351 ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1353 objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1354 $(symtab_h) gdb_string.h $(breakpoint_h)
1356 osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1357 objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
1359 somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1360 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1362 somsolib.o: somsolib.c $(defs_h)
1364 pa64solib.o: pa64solib.c $(defs_h)
1366 hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1367 hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1368 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1369 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1372 hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1373 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1375 hp-psymtab-read.o: hp-psymtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1376 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1378 hp-symtab-read.o: hp-symtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1379 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1382 parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1383 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1386 ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) gdb_string.h $(frame_h) \
1387 $(inferior_h) $(bfd_h) symfile.h target.h $(wait_h) $(gdbcmd_h) \
1388 objfiles.h gdb-stabs.h serial.h ocd.h
1390 ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1391 $(inferior_h) target.h serial.h terminal.h
1393 printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1394 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1395 symfile.h $(symtab_h) target.h gdb_string.h
1397 procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1398 target.h gdb_string.h
1400 sol-thread.o: sol-thread.c $(defs_h) gdbthread.h target.h $(inferior_h) \
1403 linux-thread.o: linux-thread.c $(breakpoint_h) $(gdbcmd_h) $(wait_h) \
1404 gdbthread.h $(gdbcore_h) $(inferior_h) target.h $(defs_h)
1406 # OBSOLETE pyr-tdep.o: pyr-tdep.c $(defs_h)
1408 # OBSOLETE pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1410 gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
1412 remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
1413 $(inferior_h) target.h terminal.h gdb_string.h
1415 remote-array.o: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \
1416 gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h) \
1419 remote-rdi.o: remote-rdi.c $(wait_h) $(defs_h) $(gdbcore_h) \
1420 $(inferior_h) gdb_string.h
1422 rdi-share/libangsd.a: force
1424 if [ -f ./$${dir}/Makefile ] ; then \
1425 r=`pwd`; export r; \
1426 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1427 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1432 remote-d10v.o: remote-d10v.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1433 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1435 remote-rdp.o: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \
1436 $(inferior_h) gdb_string.h
1438 remote-bug.o: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
1439 $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
1441 # FIXME: For the SH target, remote-e7000 contains numerous -Wformat
1442 # warnings. Since the fixes involve modifications to the code that
1443 # handles the SH remote protocol the changes need to be tested against
1444 # an SH board before they can be committed. cagney 1999-09-01.
1445 remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1446 $(wait_h) serial.h gdb_string.h
1447 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1449 remote-eb.o: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
1450 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1453 remote-es.o: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
1454 $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
1456 remote-hms.o: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
1457 $(inferior_h) serial.h target.h terminal.h gdb_string.h
1459 remote-mips.o: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1460 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1462 remote-mm.o: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
1463 minimon.h target.h terminal.h gdb_string.h
1465 remote-nindy.o: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
1466 $(defs_h) $(gdbcore_h) $(inferior_h) \
1467 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1470 remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
1471 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1472 objfiles.h gdb-stabs.h gdb_string.h
1474 remote-sds.o: remote-sds.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1475 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1477 remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
1478 $(inferior_h) target.h terminal.h gdb_string.h \
1479 $(INCLUDE_DIR)/callback.h
1481 remote-st.o: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
1482 target.h gdb_string.h
1484 remote-udi.o: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1485 $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
1487 remote-vx.o: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1488 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1489 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1490 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1493 remote-vx29k.o: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1494 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1495 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1496 vx-share/xdr_rdb.h gdb_string.h
1498 ocd.o: ocd.c ocd.h $(gdbcore_h) gdb_string.h $(frame_h) $(inferior_h) \
1499 $(bfd_h) symfile.h target.h $(wait_h) $(gdbcmd_h) objfiles.h \
1500 gdb-stabs.h $(dcache_h) serial.h
1502 remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1503 $(inferior_h) $(remote_utils_h) gdb_string.h
1505 remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1506 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h \
1509 remote-nrom.o: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1510 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1512 rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1513 $(inferior_h) target.h serial.h terminal.h
1515 rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1518 rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1519 target.h xcoffsolib.h
1521 scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1522 scm-lang.h scm-tags.h
1524 scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1525 scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
1527 scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h \
1528 scm-lang.h valprint.h $(gdbcore_h)
1530 ser-go32.o: ser-go32.c $(defs_h) serial.h
1532 ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1534 ser-ocd.o: ser-ocd.c $(defs_h) serial.h signals.h gdb_string.h
1536 ser-pipe.o: ser-pipe.c $(defs_h) serial.h signals.h gdb_string.h
1538 ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h
1540 ser-unix.o: ser-unix.c $(defs_h) serial.h
1542 serial.o: serial.c $(defs_h) serial.h gdb_string.h
1544 sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1545 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1546 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1548 sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1549 $(inferior_h) target.h serial.h terminal.h
1551 mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1552 $(inferior_h) target.h serial.h terminal.h
1554 solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1555 objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
1557 source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1558 $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
1561 sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1564 sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1565 $(inferior_h) objfiles.h symfile.h target.h gdb_string.h
1567 sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1569 dsrec.o: dsrec.c $(defs_h) srec.h
1571 stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1572 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1573 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1576 stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1577 language.h target.h gdb_string.h
1579 ax-general.o: ax-general.c $(ax_h) $(defs_h) $(value_h)
1580 ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) symfile.h $(gdbtypes_h) \
1581 $(value_h) $(expression_h) $(command_h) $(ax_h) $(gdbcmd_h) ax-gdb.h
1583 sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1585 sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1587 symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1588 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1589 language.h objfiles.h symfile.h $(symtab_h) target.h \
1592 symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1594 symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1596 symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1597 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1598 $(symtab_h) gdb_string.h
1600 symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1601 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1602 gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1605 # OBSOLETE tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1606 # OBSOLETE $(symtab_h)
1608 tic80-tdep.o: tic80-tdep.c $(defs_h)
1610 target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1611 objfiles.h symfile.h target.h gdb_string.h
1613 thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h) target.h
1615 top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1616 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
1617 $(remote_utils_h) gdb_string.h $(event_loop_h) $(version_h)
1619 typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1620 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1621 $(value_h) gdb_string.h
1623 ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1625 ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1627 umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1629 utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1630 language.h signals.h target.h terminal.h $(readline_headers) \
1631 gdb_string.h $(event_loop_h)
1633 valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1634 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1637 valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1640 valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1641 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1642 $(value_h) gdb_string.h valprint.h
1644 values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1645 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
1646 gdb_string.h scm-lang.h
1648 vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1650 w65-tdep.o : w65-tdep.c $(gdbcore_h)
1652 win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1655 xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1656 vx-share/vxWorks.h vx-share/xdr_ld.h
1657 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1659 xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1660 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1661 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1663 xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1664 vx-share/vxWorks.h vx-share/xdr_rdb.h
1665 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1667 xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1668 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1669 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1670 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1671 $(symtab_h) partial-stab.h gdb_string.h
1673 xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1675 # FIXME: z8k-tdep.c calls _initialize_gdbtypes(). Since that isn't
1676 # declared -Wimplicit fails. It should be using the GDBARCH framework.
1677 # cagney 1999-09-02.
1678 z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
1679 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h) $(value_h)
1680 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1682 c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1683 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1684 $(bfd_h) objfiles.h symfile.h
1686 jv-exp.tab.o: jv-exp.tab.c jv-lang.h $(defs_h) $(expression_h) \
1687 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1688 $(bfd_h) objfiles.h symfile.h
1690 f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1691 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1693 m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1694 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1695 $(bfd_h) objfiles.h symfile.h
1697 gdb-events.o: gdb-events.c gdb-events.h $(defs_h) $(gdbcmd_h)
1700 ### end of the gdb Makefile.in.