1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
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 includedir = @includedir@
47 INSTALL_PROGRAM = @INSTALL_PROGRAM@
48 INSTALL_DATA = @INSTALL_DATA@
55 # Flags that describe where you can find the termcap library.
56 # This can be overridden in the host Makefile fragment file.
59 # If you are compiling with GCC, make sure that either 1) You have the
60 # fixed include files where GCC can reach them, or 2) You use the
61 # -traditional flag. Otherwise the ioctl calls in inflow.c
62 # will be incorrectly compiled. The "fixincludes" script in the gcc
63 # distribution will fix your include files up.
66 # Directory containing source files.
72 # where to find makeinfo, preferably one designed for texinfo-2
75 # Set this up with gcc if you have gnu ld and the loader will print out
76 # line numbers for undefined references.
80 # Where is our "include" directory? Typically $(srcdir)/../include.
81 # This is essentially the header file directory for the library
82 # routines in libiberty.
83 INCLUDE_DIR = $(srcdir)/../include
84 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
86 # Where is the "-liberty" library? Typically in ../libiberty.
87 LIBIBERTY = ../libiberty/libiberty.a
89 # Where is the MMALLOC library? Typically in ../mmalloc.
90 # Note that mmalloc can still be used on systems without mmap().
91 # To use your system malloc, in the host makefile fragment set MMALLOC_CFLAGS
92 # to -DNO_MMALLOC and set MMALLOC to empty.
93 # To use mmalloc but not use heap checking, in the host makefile fragment set
94 # MMALLOC_CFLAGS to the value below but add -DNO_MMCHECK.
95 # To use mmalloc and heap checking on a system where the C runtime allocates
96 # memory that is never freed, in the host makefile fragment set MMALLOC_CFLAGS
97 # to the value below and add -DFORCE_MMCHECK=1
98 MMALLOC_DIR = ../mmalloc
99 MMALLOC_SRC = $(srcdir)/$(MMALLOC_DIR)
100 MMALLOC = $(MMALLOC_DIR)/libmmalloc.a
101 MMALLOC_CFLAGS = -I$(MMALLOC_SRC)
103 # Where is the BFD library? Typically in ../bfd.
105 BFD = $(BFD_DIR)/libbfd.a
106 BFD_SRC = $(srcdir)/$(BFD_DIR)
107 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
109 # Where is the READLINE library? Typically in ../readline.
110 READLINE_DIR = ../readline
111 READLINE = $(READLINE_DIR)/libreadline.a
112 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
113 READLINE_CFLAGS = -I$(READLINE_SRC)
115 # Opcodes currently live in one of two places. Either they are in the
116 # opcode library, typically ../opcodes, or they are in a header file
118 # Where is the "-lopcodes" library, with (some of) the opcode tables and
120 OPCODES = ../opcodes/libopcodes.a
121 # Where are the other opcode tables which only have header file
123 OP_INCLUDE = $(INCLUDE_DIR)/opcode
124 OPCODES_CFLAGS = -I$(OP_INCLUDE)
126 # The simulator is usually nonexistent; targets that include one
127 # should set this to list all the .o or .a files to be linked in.
130 #start-sanitize-gdbtk
131 # Where is the TCL library? Typically in ../tcl.
132 LIB_INSTALL_DIR = $(libdir)
133 TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
134 TCL_CFLAGS = @TCLHDIR@
136 # Where is the TK library? Typically in ../tk.
137 TK = @TK_BUILD_LIB_SPEC@
140 X11_CFLAGS = @TK_XINCLUDES@
144 ENABLE_GDBTK= @ENABLE_GDBTK@
147 ENABLE_CFLAGS= @ENABLE_CFLAGS@
148 ENABLE_CLIBS= @ENABLE_CLIBS@
149 ENABLE_OBS= @ENABLE_OBS@
151 # -I. for config files.
152 # -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
153 # -I$(srcdir)/config for more generic config files.
155 # It is also possible that you will need to add -I/usr/include/sys if
156 # your system doesn't have fcntl.h in /usr/include (which is where it
157 # should be according to Posix).
159 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
161 # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
162 # from the config directory.
163 GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
164 #PROFILE_CFLAGS = -pg
166 # CFLAGS is specifically reserved for setting from the command line
167 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
170 # Need to pass this to testsuite for "make check". Probably should be
171 # consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
172 # so "make check" has the same result no matter where it is run.
175 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
176 INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
177 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
178 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) $(ENABLE_CFLAGS)
180 # LDFLAGS is specifically reserved for setting from the command line
183 # Profiling options need to go here to work.
184 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
185 # and have it work; that's why CFLAGS is here.
186 INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS) @CONFIG_LDFLAGS@ @HLDFLAGS@
189 # We are using our own version of REGEX now to be consistent across
194 # If your system is missing alloca(), or, more likely, it's there but
195 # it doesn't work, then refer to libiberty.
197 # Libraries and corresponding dependencies for compiling gdb.
198 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
199 # TERMCAP comes after readline, since readline depends on it.
200 # MMALLOC comes after anything else that might want an allocation function.
201 # LIBIBERTY appears twice on purpose.
202 # If you have the Cygnus libraries installed,
203 # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
204 INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty $(ENABLE_CLIBS) \
205 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) @LIBS@ \
207 CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(LIBIBERTY) $(ENABLE_CLIBS) \
208 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) @LIBS@ \
209 $(MMALLOC) $(LIBIBERTY)
210 CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
211 $(OPCODES) $(MMALLOC) $(LIBIBERTY)
213 ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
214 ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
220 LINTFLAGS= $(BFD_CFLAGS)
222 RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
223 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
228 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
229 # interface to the serial port. Hopefully if get ported to OS/2, VMS,
230 # etc., then there will be (as part of the C library or perhaps as
231 # part of libiberty) a POSIX interface. But at least for now the
232 # host-dependent makefile fragment might need to use something else
234 SER_HARDWIRE = ser-unix.o
236 # The `remote' debugging target is supported for most architectures,
237 # but not all (e.g. 960)
238 REMOTE_OBS = remote.o dcache.o remote-utils.o
240 # This is remote-sim.o if a simulator is to be linked in.
243 ANNOTATE_OBS = annotate.o
245 # Host and target-dependent makefile fragments come in here.
247 @target_makefile_frag@
248 # End of host and target-dependent makefile fragments
252 "exec_prefix=$(exec_prefix)" \
253 "against=$(against)" \
255 "AR_FLAGS=$(AR_FLAGS)" \
258 "CHILLFLAGS=$(CHILLFLAGS)" \
260 "CHILL_LIB=$(CHILL_LIB)" \
262 "CXXFLAGS=$(CXXFLAGS)" \
264 "MAKEINFO=$(MAKEINFO)" \
265 "INSTALL=$(INSTALL)" \
266 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
267 "INSTALL_DATA=$(INSTALL_DATA)" \
268 "RUNTEST=$(RUNTEST)" \
269 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
271 # Flags that we pass when building the testsuite.
273 # empty for native, $(target_alias)/ for cross
274 target_subdir = @target_subdir@
277 if [ -f $${rootme}/../gcc/xgcc ] ; then \
278 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
279 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/; \
281 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
284 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
287 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
293 if [ -f $${rootme}/../gcc/xgcc ] ; then \
294 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
295 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/; \
297 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
300 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
303 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
307 CHILLFLAGS = $(CFLAGS)
309 CHILL_FOR_TARGET = ` \
310 if [ -f $${rootme}/../gcc/Makefile ] ; then \
311 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
313 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
316 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
320 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
321 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
322 $${rootme}/../gcc/ch/runtime/libchill.a; \
327 # The use of $$(x_FOR_TARGET) reduces the command line length by not
328 # duplicating the lengthy definition.
329 TARGET_FLAGS_TO_PASS = \
331 "exec_prefix=$(exec_prefix)" \
332 "against=$(against)" \
333 'CC=$$(CC_FOR_TARGET)' \
334 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
336 "CHILLFLAGS=$(CHILLFLAGS)" \
337 'CHILL=$$(CHILL_FOR_TARGET)' \
338 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
339 "CHILL_LIB=$(CHILL_LIB)" \
340 'CXX=$$(CXX_FOR_TARGET)' \
341 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
342 "CXXFLAGS=$(CXXFLAGS)" \
343 "INSTALL=$(INSTALL)" \
344 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
345 "INSTALL_DATA=$(INSTALL_DATA)" \
346 "MAKEINFO=$(MAKEINFO)" \
347 "RUNTEST=$(RUNTEST)" \
348 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
350 # All source files that go into linking GDB.
351 # Links made at configuration time should not be specified here, since
352 # SFILES is used in building the distribution archive.
354 SFILES = bcache.c blockframe.c breakpoint.c buildsym.c callback.c c-exp.y \
355 c-lang.c c-typeprint.c c-valprint.c ch-exp.c ch-lang.c \
356 ch-typeprint.c ch-valprint.c coffread.c command.c complaints.c \
357 corefile.c cp-valprint.c \
358 dbxread.c demangle.c dwarfread.c dwarf2read.c \
359 elfread.c environ.c eval.c expprint.c \
360 f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c \
361 gdbtypes.c infcmd.c inflow.c infrun.c language.c \
362 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
363 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
364 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c scm-valprint.c \
365 source.c stabsread.c stack.c symfile.c symmisc.c \
366 symtab.c target.c thread.c top.c \
367 typeprint.c utils.c \
368 valarith.c valops.c valprint.c values.c \
369 serial.c ser-unix.c mdebugread.c os9kread.c
371 LINTFILES = $(SFILES) $(YYFILES) init.c
373 # "system" headers. Using these in dependencies is a rather personal
374 # choice. (-rich, summer 1993)
375 # (Why would we not want to depend on them? If one of these changes in a
376 # non-binary-compatible way, it is a real pain to remake the right stuff
377 # without these dependencies -kingdon, 13 Mar 1994)
378 getopt_h = $(INCLUDE_DIR)/getopt.h
379 floatformat_h = $(INCLUDE_DIR)/floatformat.h
380 bfd_h = $(BFD_DIR)/bfd.h
381 wait_h = $(INCLUDE_DIR)/wait.h
382 dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
385 remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h remote-sim.h
388 $(READLINE_SRC)/chardefs.h \
389 $(READLINE_SRC)/history.h \
390 $(READLINE_SRC)/keymaps.h \
391 $(READLINE_SRC)/readline.h
394 $(srcdir)/29k-share/udi/udiproc.h \
395 $(srcdir)/29k-share/udi/udiphcfg.h \
396 $(srcdir)/29k-share/udi/udiphunix.h \
397 $(srcdir)/29k-share/udi/udiptcfg.h \
398 $(srcdir)/29k-share/udi/udipt29k.h \
399 $(srcdir)/29k-share/udi/udisoc.h
401 gdbcore_h = gdbcore.h $(bfd_h)
404 symtab_h = symtab.h bcache.h
405 gdbtypes_h = gdbtypes.h
406 expression_h = expression.h
407 value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
409 breakpoint_h = breakpoint.h $(frame_h) $(value_h)
411 command_h = command.h
412 gdbcmd_h = gdbcmd.h $(command_h)
414 defs_h = defs.h xm.h tm.h nm.h config.status config.h
416 inferior_h = inferior.h $(breakpoint_h)
418 # Header files that need to have srcdir added. Note that in the cases
419 # where we use a macro like $(gdbcmd_h), things are carefully arranged
420 # so that each .h file is listed exactly once (M-x tags-search works
421 # wrong if TAGS has files twice). Because this is tricky to get
422 # right, it is probably easiest just to list .h files here directly.
424 HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
425 dst.h environ.h $(gdbcmd_h) gdbcore.h \
426 gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
427 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
428 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
429 c-lang.h ch-lang.h f-lang.h m2-lang.h \
430 complaints.h valprint.h \
431 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
432 nindy-share/block_io.h nindy-share/coff.h \
433 nindy-share/env.h nindy-share/stop.h \
434 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
435 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
436 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
437 dcache.h remote-utils.h remote-sim.h top.h somsolib.h
439 # Header files that already have srcdir in them, or which are in objdir.
441 HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
444 # GDB "info" files, which should be included in their entirety
445 INFOFILES = gdb.info*
447 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
449 POSSLIBS = gnu-regex.c gnu-regex.h
451 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
452 # default their values the way we do for SER_HARDWIRE; in the future
453 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
454 # variables analogous to SER_HARDWIRE which get defaulted in this
457 DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
458 $(REMOTE_OBS) $(SIM_OBS) $(ENABLE_OBS) @THREAD_DB_OBS@
460 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
461 # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
462 # and it's more useful to see it in the .y file.
463 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
465 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
467 COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
468 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
469 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
470 expprint.o environ.o gdbtypes.o copying.o $(DEPFILES) \
471 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
472 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
473 dbxread.o coffread.o elfread.o \
474 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
475 c-lang.o ch-exp.o ch-lang.o f-lang.o m2-lang.o \
476 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
477 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
478 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
479 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o callback.o
481 OBS = $(COMMON_OBS) $(ANNOTATE_OBS) main.o
487 NTSOBS = standalone.o
489 NTSSTART = kdb-start.o
491 SUBDIRS = doc testsuite nlm
493 # For now, shortcut the "configure GDB for fewer languages" stuff.
494 YYFILES = c-exp.tab.c f-exp.tab.c m2-exp.tab.c
495 YYOBJ = c-exp.tab.o f-exp.tab.o m2-exp.tab.o
497 # Things which need to be built when making a distribution.
499 DISTSTUFF = $(YYFILES)
501 # Prevent Sun make from putting in the machine type. Setting
502 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
504 $(CC) -c $(INTERNAL_CFLAGS) $<
507 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
511 # The check target can not use subdir_do, because subdir_do does not
512 # use TARGET_FLAGS_TO_PASS.
514 @if [ -f testsuite/Makefile ]; then \
515 rootme=`pwd`; export rootme; \
516 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
518 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
521 info dvi install-info clean-info: force
522 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
525 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
526 pack gdb.t ; rm -f gdb.t
529 # Traditionally "install" depends on "all". But it may be useful
530 # not to; for example, if the user has made some trivial change to a
531 # source file and doesn't care about rebuilding or just wants to save the
532 # time it takes for make to check that all is up to date.
533 # install-only is intended to address that need.
534 install: all install-only
536 transformed_name=`t='$(program_transform_name)'; \
537 echo gdb | sed -e $$t` ; \
538 if test "x$$transformed_name" = x; then \
539 transformed_name=gdb ; \
543 $(INSTALL_PROGRAM) gdb $(bindir)/$$transformed_name ; \
544 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
545 # start-sanitize-gdbtk
546 if [ x"$(ENABLE_GDBTK)" != x ] ; then \
547 $(INSTALL_DATA) $(srcdir)/gdbtk.tcl $(datadir)/gdbtk.tcl ; \
552 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
555 transformed_name=`t='$(program_transform_name)'; \
556 echo gdb | sed -e $$t` ; \
557 if test "x$$transformed_name" = x; then \
558 transformed_name=gdb ; \
562 rm -f $(bindir)/$$transformed_name $(man1dir)/$$transformed_name.1
563 # start-sanitize-gdbtk
564 if [ x"$(ENABLE_GDBTK)" != x ] ; then \
565 rm -f $(datadir)/gdbtk.tcl ; \
568 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
570 # We do this by grepping through sources. If that turns out to be too slow,
571 # maybe we could just require every .o file to have an initialization routine
572 # of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
574 # Formatting conventions: The name of the _initialize_* routines must start
575 # in column zero, and must not be inside #if.
577 # Note that the set of files with init functions might change, or the names
578 # of the functions might change, so this files needs to depend on all the
579 # object files that will be linked into gdb.
581 init.c: $(OBS) $(TSOBS)
584 @echo '/* Do not modify this file. */' >init.c-tmp
585 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
586 @echo '#include "ansidecl.h"' >>init.c-tmp
587 @echo 'extern void initialize_all_files PARAMS ((void));' >>init.c-tmp
588 @echo 'void initialize_all_files PARAMS ((void)) {' >>init.c-tmp
589 @echo $(OBS) $(TSOBS) | \
591 sed -e '/^Onindy.o/d' \
595 -e '/xdr_ptrace.o/d' \
601 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
602 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
604 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
605 xargs grep -s '^_initialize_[a-z_0-9A-Z]* *(' | \
606 sed -n -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp
607 @echo '}' >>init.c-tmp
608 @mv init.c-tmp init.c
612 # Removing the old gdb first works better if it is running, at least on SunOS.
613 gdb: $(OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
615 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) -o gdb \
616 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
619 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
621 libgdb: libgdb-files $(LIBGDB_OBS)
623 # libproc is not listed here because all-libproc is a dependency of all-gui,
624 # not all-gdb, and thus might be built after us.
625 LIBGDBDEPS=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
626 # libproc needs to be before libiberty for alloca.
627 LIBGDBFILES=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) ../libproc/libproc.a \
628 $(ADD_DEPS) $(CDEPS) init.o
630 libgdb-files: $(LIBGDBDEPS) Makefile.in
632 for i in $(LIBGDBFILES); do\
633 echo $$i >> libgdb-files;\
636 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
637 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
638 #load ./init.c $(SFILES)
639 #unload $(srcdir)/c-exp.y $(srcdir)/m2-exp.y
641 #unload nindy-share/[A-Z]*
642 #load c-exp.tab.c m2-exp.tab.c
643 #load copying.c version.c
644 #load ../opcodes/libopcodes.a
645 #load ../libiberty/libiberty.a
646 #load ../bfd/libbfd.a
647 #load ../readline/libreadline.a
648 #load ../mmalloc/libmmalloc.a
650 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
651 echo "Load .c corresponding to:" $(DEPFILES)
654 # A Mach 3.0 program to force gdb back to command level
657 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
658 stop-gdb.o $(CLIBS) $(LOADLIBES)
660 # This is useful when debugging GDB, because some Unix's don't let you run GDB
661 # on itself without copying the executable. So "make gdb1" will make
662 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
663 # Removing gdb1 before the copy is the right thing if gdb1 is open
664 # in another process.
669 ### fixme - this can't be right.
670 # This checks the configure.in file versus the config/ directory.
671 config-check: config-check-hosts config-check-targets
673 grep gdb_host= $(srcdir)/configure.in | \
674 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
675 (cd $(srcdir)/config; ls *.mh) >HOSTdir.o
676 diff -u HOSTconf.o HOSTdir.o
678 ### fixme - nor can this.
679 config-check-targets:
680 grep gdb_target= $(srcdir)/configure.in | \
681 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
682 (cd $(srcdir)/config; ls *.mt) >TARGdir.o
683 diff -u HOSTconf.o HOSTdir.o
685 # FIXME. These are not generated by "make depend" because they only are there
687 # But these rules don't do what we want; we want to hack the foo.o: tm.h
688 # dependency to do the right thing.
689 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
690 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
691 xm-news1000.h: xm-news.h
692 xm-i386-sv32.h: xm-i386.h
693 tm-i386gas.h: tm-i386.h
694 xm-sun4os4.h: xm-sparc.h
695 tm-sun4os4.h: tm-sparc.h
696 xm-vaxult.h: xm-vax.h
697 xm-vaxbsd.h: xm-vax.h
699 kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
700 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
703 # Put the proper machine-specific files first, so M-. on a machine
704 # specific routine gets the one for the correct machine. (FIXME: those
705 # files go in twice; we should be removing them from the main list).
707 # TAGS depends on all the files that go into it so you can rebuild TAGS
708 # with `make TAGS' and not have to say `rm TAGS' first.
710 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
712 @etags $(srcdir)/$(TM_FILE) \
713 $(srcdir)/$(XM_FILE) \
714 $(srcdir)/$(NAT_FILE) \
715 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
716 echo $(srcdir)/$$i ; \
717 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
719 done) | sed -e 's/\.o$$/\.c/'` \
720 `find $(srcdir)/config -name '*.h' -print`
725 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
726 rm -f *.o $(ADD_FILES) *~ init.c-tmp
727 rm -f init.c version.c
728 rm -f gdb core make.log libgdb-files
731 # This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
732 # I believe this is wrong; the makefile standards for distclean just
733 # describe removing files; the only sort of "re-create a distribution"
734 # functionality described is if the distributed files are unmodified.
736 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
737 rm -f nm.h tm.h xm.h config.status config.h stamp-h
738 rm -f y.output yacc.acts yacc.tmp y.tab.h
739 rm -f config.log config.cache
742 maintainer-clean realclean: clean
743 @echo "This command is intended for maintainers to use;"
744 @echo "it deletes files that may require special tools to rebuild."
745 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" subdir_do
746 rm -f c-exp.tab.c f-exp.tab.c m2-exp.tab.c
747 rm -f TAGS $(INFOFILES)
748 rm -f nm.h tm.h xm.h config.status
749 rm -f y.output yacc.acts yacc.tmp
750 rm -f config.log config.cache
753 diststuff: $(DISTSTUFF)
754 cd doc; $(MAKE) $(MFLAGS) all-doc
757 @for i in $(DODIRS); do \
758 if [ -f ./$$i/Makefile ] ; then \
760 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
765 Makefile: Makefile.in config.status @frags@
766 $(SHELL) config.status
768 config.h: stamp-h ; @true
769 stamp-h: config.in config.status
770 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
772 config.status: configure
773 $(SHELL) config.status --recheck
778 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
780 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
782 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
784 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
786 # GDB MANUAL: TeX dvi file
788 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
790 # GDB MANUAL: info file
792 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
794 # Make copying.c from COPYING
795 copying.c: COPYING copying.awk
796 awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
799 echo 'char *version = "$(VERSION)";' >version.c
800 echo 'char *host_name = "$(host_alias)";' >> version.c
801 echo 'char *target_name = "$(target_alias)";' >> version.c
803 # c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
804 # in srcdir, then compiled in objdir to c-exp.tab.o.
806 # If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
807 # would sometimes re-write it into $(srcdir)/c-exp.tab.c.
809 # Remove bogus decls for malloc/realloc/free which conflict with everything
810 # else. Strictly speaking c-exp.tab.c should therefore depend on
811 # Makefile.in, but that was a pretty big annoyance.
812 c-exp.tab.o: c-exp.tab.c
814 $(YACC) $(YFLAGS) $(srcdir)/c-exp.y
815 -sed -e '/extern.*malloc/d' \
816 -e '/extern.*realloc/d' \
817 -e '/extern.*free/d' \
818 -e '/include.*malloc.h/d' \
819 -e 's/malloc/xmalloc/g' \
820 -e 's/realloc/xrealloc/g' \
821 < y.tab.c > c-exp.new
823 mv c-exp.new ./c-exp.tab.c
825 f-exp.tab.o: f-exp.tab.c
826 f-exp.tab.c: f-exp.y c-exp.tab.c
827 $(YACC) $(YFLAGS) $(srcdir)/f-exp.y
828 -sed -e '/extern.*malloc/d' \
829 -e '/extern.*realloc/d' \
830 -e '/extern.*free/d' \
831 -e '/include.*malloc.h/d' \
832 -e 's/malloc/xmalloc/g' \
833 -e 's/realloc/xrealloc/g' \
834 < y.tab.c > f-exp.new
836 mv f-exp.new ./f-exp.tab.c
838 # m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
839 # in srcdir, then compiled in objdir to m2-exp.tab.o.
840 # Remove bogus decls for malloc/realloc/free which conflict with everything
842 m2-exp.tab.o: m2-exp.tab.c
843 m2-exp.tab.c: m2-exp.y
844 $(YACC) $(YFLAGS) $(srcdir)/m2-exp.y
845 -sed -e '/extern.*malloc/d' \
846 -e '/extern.*realloc/d' \
847 -e '/extern.*free/d' \
848 -e '/include.*malloc.h/d' \
849 -e 's/malloc/xmalloc/g' \
850 -e 's/realloc/xrealloc/g' \
851 < y.tab.c > m2-exp.new
853 mv m2-exp.new ./m2-exp.tab.c
855 # These files are updated atomically, so make never has to remove them
856 .PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
859 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
860 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
863 cxref -I. $(SFILES) >gdb.cxref
867 # GNU Make has an annoying habit of putting *all* the Makefile variables
868 # into the environment, unless you include this target as a circumvention.
869 # Rumor is that this will be fixed (and this target can be removed)
873 # GNU Make 3.63 has a different problem: it keeps tacking command line
874 # overrides onto the definition of $(MAKE). This variable setting
878 ## This is ugly, but I don't want GNU make to put these variables in
879 ## the environment. Older makes will see this as a set of targets
880 ## with no dependencies and no actions.
881 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
883 ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
884 29k-share/udi/udi2go32.c \
885 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
886 altos-xdep.c arm-convert.s \
887 arm-tdep.c arm-xdep.c coff-solib.c \
888 convex-tdep.c convex-xdep.c \
889 core-sol2.c core-regset.c core-aout.c corelow.c \
890 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
891 go32-xdep.c gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
892 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
894 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c \
895 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
898 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
899 lynx-nat.c m3-nat.c \
901 m88k-nat.c m88k-tdep.c mac-nat.c mips-nat.c \
902 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
903 nindy-share/Onindy.c nindy-share/nindy.c \
904 nindy-share/ttyflush.c nindy-tdep.c \
905 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
906 somread.c somsolib.c $(HPREAD_SOURCE) \
907 procfs.c pyr-tdep.c pyr-xdep.c \
908 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
909 remote-es.c remote-hms.c remote-mips.c \
910 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
911 remote-st.c remote-utils.c dcache.c \
912 remote-udi.c remote-vx.c remote-vx29k.c \
913 rs6000-nat.c rs6000-tdep.c \
914 ser-go32.c ser-tcp.c sh-tdep.c solib.c sparc-nat.c \
915 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
916 symm-tdep.c symm-nat.c \
917 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
919 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
921 xcoffread.c xcoffsolib.c z8k-tdep.c
923 ALLCONFIG = config/a29k/a29k-kern.mt config/a29k/a29k-udi.mt config/a29k/vx29k.mt\
924 config/a29k/a29k.mt config/a29k/ultra3.mh config/a29k/ultra3.mt \
925 config/alpha/alpha-osf1.mh config/alpha/alpha-osf2.mh \
926 config/alpha/alpha-osf1.mt config/alpha/alpha-nw.mt \
927 config/arm/arm.mh config/arm/arm.mt config/convex/convex.mh \
928 config/convex/convex.mt config/gould/np1.mh config/gould/np1.mt \
929 config/gould/pn.mh config/gould/pn.mt config/h8300/h8300hms.mt \
930 config/h8500/h8500hms.mt config/i386/go32.mh config/i386/i386aix.mh \
931 config/i386/i386aix.mt config/i386/i386aout.mt config/i386/i386bsd.mh \
932 config/i386/i386bsd.mt config/i386/i386lynx.mh \
933 config/i386/i386lynx.mt config/i386/i386m3.mh config/i386/i386m3.mt \
934 config/i386/i386mach.mh config/i386/i386mk.mh config/i386/i386mk.mt \
935 config/i386/i386nw.mt config/i386/i386sco.mh \
936 config/i386/i386sco4.mh \
937 config/i386/i386sol2.mh config/i386/i386sol2.mt config/i386/i386v.mh \
938 config/i386/i386v.mt config/i386/i386v32.mh config/i386/i386v4.mh \
939 config/i386/i386v4.mt config/i386/linux.mh config/i386/linux.mt \
940 config/i386/ncr3000.mh config/i386/ncr3000.mt config/i386/ptx.mh \
941 config/i386/sun386.mh \
942 config/i386/sun386.mt config/i386/symmetry.mh config/i386/symmetry.mt \
943 config/i386/win32.mh config/i386/win32.mt \
944 config/i960/mon960.mt \
945 config/i960/nindy960.mt config/i960/vxworks960.mt config/m68k/3b1.mh \
946 config/m68k/3b1.mt config/m68k/altos.mh config/m68k/altos.mt \
947 config/m68k/amix.mh config/m68k/amix.mt config/m68k/apollo68b.mh \
948 config/m68k/apollo68b.mt \
949 config/m68k/apollo68v.mh \
950 config/m68k/cisco.mt config/m68k/delta68.mh \
951 config/m68k/delta68.mt config/m68k/dpx2.mh config/m68k/dpx2.mt \
952 config/m68k/es1800.mt config/m68k/hp300bsd.mh \
953 config/m68k/hp300bsd.mt config/m68k/hp300hpux.mh \
954 config/m68k/hp300hpux.mt config/m68k/isi.mh config/m68k/isi.mt \
955 config/m68k/m68klynx.mh config/m68k/m68klynx.mt \
956 config/m68k/monitor.mt \
957 config/m68k/news.mh config/m68k/news.mt config/m68k/news1000.mh \
958 config/m68k/os68k.mt config/m68k/st2000.mt config/m68k/sun2os3.mh \
959 config/m68k/sun2os3.mt config/m68k/sun2os4.mh config/m68k/sun2os4.mt \
960 config/m68k/sun3os3.mh config/m68k/sun3os3.mt config/m68k/sun3os4.mh \
961 config/m68k/sun3os4.mt config/m68k/vxworks68.mt config/m88k/delta88.mh \
962 config/m88k/delta88.mt config/m88k/delta88v4.mh \
963 config/m88k/delta88v4.mt config/m88k/m88k.mh config/m88k/m88k.mt \
964 config/mips/bigmips.mt config/mips/bigmips64.mt \
965 config/mips/decstation.mh \
966 config/mips/decstation.mt config/mips/idt.mt config/mips/idtl.mt \
967 config/mips/idt64.mt config/mips/idtl64.mt \
968 config/mips/irix3.mh config/mips/irix3.mt config/mips/irix4.mh \
969 config/mips/irix5.mh config/mips/irix5.mt \
970 config/mips/littlemips.mh config/mips/littlemips.mt \
971 config/mips/mipsel64.mt \
972 config/mips/mipsm3.mh config/mips/mipsm3.mt \
973 config/mips/mipsv4.mh config/mips/mipsv4.mt \
974 config/mips/news-mips.mh config/mips/riscos.mh \
975 config/none/none.mh config/none/none.mt config/ns32k/merlin.mh \
976 config/ns32k/merlin.mt config/ns32k/ns32km3.mh config/ns32k/ns32km3.mt \
977 config/ns32k/umax.mh config/ns32k/umax.mt \
978 config/pa/hppabsd.mh config/pa/hppabsd.mt config/pa/hppahpux.mh \
979 config/pa/hppahpux.mt config/pyr/pyramid.mh config/pyr/pyramid.mt \
980 config/romp/rtbsd.mh config/rs6000/rs6000.mh config/rs6000/rs6000.mt \
981 config/sh/sh.mt config/sparc/sparc-em.mt config/sparc/sparclite.mt \
982 config/sparc/sparclynx.mh config/sparc/sparclynx.mt \
983 config/sparc/sun4os4.mh config/sparc/sun4os4.mt \
984 config/sparc/sun4sol2.mh config/sparc/sun4sol2.mt \
985 config/sparc/vxsparc.mt config/tahoe/tahoe.mh config/tahoe/tahoe.mt \
986 config/vax/vax.mt config/vax/vaxbsd.mh config/vax/vaxult.mh \
987 config/vax/vaxult2.mh config/z8k/z8ksim.mt
990 udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
991 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
993 udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
994 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
996 udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
997 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
999 a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1001 a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1003 alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1005 alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1006 $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
1008 altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1010 annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1012 arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1015 bcache.o: bcache.c bcache.h $(defs_h)
1017 blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1018 objfiles.h symfile.h target.h
1020 breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1021 $(inferior_h) language.h target.h gdbthread.h gdb_string.h
1023 buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1024 objfiles.h symfile.h $(symtab_h) gdb_string.h
1026 callback.o: callback.c $(defs_h) callback.h
1028 c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1029 language.h parser-defs.h $(symtab_h)
1031 c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1032 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1033 target.h typeprint.h $(value_h) gdb_string.h
1035 c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1036 language.h $(symtab_h) valprint.h $(value_h)
1038 f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1039 language.h parser-defs.h $(symtab_h) gdb_string.h
1041 f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1042 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1043 target.h typeprint.h $(value_h) gdb_string.h
1045 f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1046 language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1048 ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
1050 ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1051 language.h parser-defs.h $(symtab_h)
1053 ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1054 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1055 target.h $(value_h) typeprint.h gdb_string.h
1057 ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1058 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1060 coff-solib.o: coff-solib.c $(defs_h)
1062 coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1063 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1064 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1067 command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1068 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h $(wait_h)
1070 complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1072 convex-tdep.o: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1073 $(gdbcore_h) $(inferior_h)
1075 convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1078 copying.o: copying.c $(defs_h) $(gdbcmd_h)
1080 core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1082 core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1083 $(inferior_h) target.h gdb_string.h
1085 core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1086 $(inferior_h) target.h gdb_string.h
1088 corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1089 $(inferior_h) target.h language.h gdb_string.h
1091 corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1092 target.h gdbthread.h gdb_string.h
1094 cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1095 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
1097 dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
1099 dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1100 complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1101 $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
1102 symfile.h $(symtab_h) target.h gdb_string.h
1104 delta68-nat.o: delta68-nat.c $(defs_h)
1106 demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1108 dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
1110 dstread.o: dstread.c gdb_string.h
1112 dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1113 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1114 $(symtab_h) gdb_string.h
1116 dwarf2read.o: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
1117 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1118 $(symtab_h) gdb_string.h
1120 elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1121 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1123 environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
1125 eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1126 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1129 exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1130 target.h language.h gdb_string.h
1132 expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1133 language.h parser-defs.h $(symtab_h) $(value_h)
1135 findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1138 fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
1139 $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
1141 # start-sanitize-gdbtk
1142 gdbtk.o: gdbtk.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
1143 $(bfd_h) symfile.h objfiles.h target.h gdb_string.h
1144 $(CC) -c $(INTERNAL_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1145 $(srcdir)/gdbtk.c -DGDBTK_FILENAME=\"$(datadir)/gdbtk.tcl\"
1146 # end-sanitize-gdbtk
1148 gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1149 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1150 $(value_h) gdb_string.h
1152 go32-xdep.o: go32-xdep.c
1154 gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
1155 $(gdbcore_h) $(symtab_h)
1157 gould-xdep.o: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1159 h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1161 h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1162 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1165 hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1167 hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1168 $(inferior_h) objfiles.h symfile.h target.h
1170 hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1171 hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1173 i386-tdep.o: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1176 i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1177 language.h $(gdbcore_h) $(floatformat_h) target.h
1179 i386b-nat.o: i386b-nat.c $(defs_h)
1181 i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1183 i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
1185 i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1187 i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1189 i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1190 $(inferior_h) language.h target.h
1192 i386v4-nat.o: i386v4-nat.c $(defs_h)
1194 i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1195 $(inferior_h) language.h
1197 i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1198 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
1200 infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1201 $(inferior_h) target.h language.h gdb_string.h
1203 inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1204 signals.h target.h terminal.h gdbthread.h gdb_string.h
1206 infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1207 gdb_string.h $(wait_h) $(command_h)
1209 infrun.o: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1210 $(inferior_h) target.h gdbthread.h gdb_string.h
1212 inftarg.o: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1213 target.h terminal.h $(command_h)
1215 irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1216 irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1217 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
1218 language.h gdb_string.h
1220 isi-xdep.o: isi-xdep.c
1222 language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1223 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1224 target.h $(value_h) gdb_string.h
1226 lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1229 m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1230 language.h m2-lang.h parser-defs.h $(symtab_h)
1232 m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1233 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1234 $(value_h) gdb_string.h
1236 m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1237 valprint.h m2-lang.h
1239 m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1240 $(wait_h) $(gdbcmd_h) $(gdbcore_h)
1242 m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1243 $(gdbcore_h) gdb_string.h
1245 m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1247 m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1249 m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1251 mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
1253 main.o: main.c top.h $(defs_h) gdb_string.h
1255 maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1256 $(expression_h) objfiles.h symfile.h
1258 mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1259 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1260 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1263 mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1265 os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1266 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1267 objfiles.h stabsread.h symfile.h $(symtab_h) \
1268 target.h gdb_string.h
1270 mem-break.o: mem-break.c $(defs_h)
1272 minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1273 $(symtab_h) gdb_string.h
1275 mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1277 mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1278 $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
1280 mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1281 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1282 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1285 mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1287 monitor.o: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1288 $(inferior_h) target.h serial.h terminal.h gdb_string.h
1290 news-xdep.o: news-xdep.c
1292 Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
1294 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1296 nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
1298 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1300 nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1301 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1304 ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1306 ttyflush.o: nindy-share/ttyflush.c
1307 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1309 nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
1311 ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1313 objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1314 $(symtab_h) gdb_string.h
1316 osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1317 objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
1319 somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1320 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1322 somsolib.o: somsolib.c $(defs_h)
1324 hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1325 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1326 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1328 hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1329 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1331 parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1332 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1335 ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1336 $(inferior_h) target.h serial.h terminal.h
1338 printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1339 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1340 symfile.h $(symtab_h) target.h gdb_string.h
1342 procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1343 target.h gdb_string.h
1345 pyr-tdep.o: pyr-tdep.c $(defs_h)
1347 pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1349 gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
1351 remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
1352 $(inferior_h) target.h terminal.h gdb_string.h
1354 remote-arc.o: remote-arc.c gdb_string.h
1356 remote-array.o: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \
1357 gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h)
1359 remote-rdp.o: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \
1360 $(inferior_h) gdb_string.h
1362 remote-bug.o: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
1363 $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
1365 remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1366 $(wait_h) serial.h gdb_string.h
1368 remote-eb.o: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
1369 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1372 remote-es.o: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
1373 $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
1375 remote-hms.o: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
1376 $(inferior_h) serial.h target.h terminal.h gdb_string.h
1378 remote-mips.o: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1379 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1381 remote-mm.o: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
1382 minimon.h target.h terminal.h gdb_string.h
1384 remote-nindy.o: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
1385 $(defs_h) $(gdbcore_h) $(inferior_h) \
1386 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1389 remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
1390 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1391 objfiles.h gdb-stabs.h gdb_string.h
1393 remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
1394 $(inferior_h) target.h terminal.h gdb_string.h
1396 remote-st.o: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
1397 target.h gdb_string.h
1399 remote-udi.o: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1400 $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
1402 remote-vx.o: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1403 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1404 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1405 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1408 remote-vx29k.o: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1409 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1410 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1411 vx-share/xdr_rdb.h gdb_string.h
1413 remote-wiggler.o: remote-wiggler.c $(wait_h) complaints.h $(defs_h) \
1414 $(gdbcmd_h) $(gdbcore_h) $(inferior_h) target.h
1416 remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1417 $(inferior_h) $(remote_utils_h) gdb_string.h
1419 remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1420 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1422 remote-nrom.o: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1423 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1425 rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1426 $(inferior_h) target.h serial.h terminal.h
1428 rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1431 rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1432 target.h xcoffsolib.h
1434 scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1435 scm-lang.h scm-tags.h
1437 scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1438 scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
1440 scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h \
1441 scm-lang.h valprint.h $(gdbcore_h)
1443 ser-go32.o: ser-go32.c $(defs_h) serial.h
1445 ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1447 ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h
1449 ser-unix.o: ser-unix.c $(defs_h) serial.h
1451 serial.o: serial.c $(defs_h) serial.h gdb_string.h
1453 sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1454 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1455 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1457 sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1458 $(inferior_h) target.h serial.h terminal.h
1460 mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1461 $(inferior_h) target.h serial.h terminal.h
1463 solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1464 objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
1466 source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1467 $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
1470 sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1473 sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1474 $(inferior_h) objfiles.h symfile.h target.h gdb_string.h
1476 sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1478 dsrec.o: dsrec.c $(defs_h) srec.h
1480 stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1481 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1482 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1485 stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1486 language.h target.h gdb_string.h
1488 sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1489 sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1491 symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1492 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1493 language.h objfiles.h symfile.h $(symtab_h) target.h \
1496 symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1497 symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1499 symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1500 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1501 $(symtab_h) gdb_string.h
1503 symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1504 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1505 gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1508 tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1511 target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1512 objfiles.h symfile.h target.h gdb_string.h
1514 thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h)
1516 top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1517 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
1518 $(remote_utils_h) gdb_string.h
1520 typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1521 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1522 $(value_h) gdb_string.h
1524 ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1525 ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1526 umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1528 utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1529 language.h signals.h target.h terminal.h $(readline_headers) \
1532 valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1533 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1536 valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1539 valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1540 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1541 $(value_h) gdb_string.h valprint.h
1543 values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1544 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
1545 gdb_string.h scm-lang.h
1547 vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1549 w65-tdep.o : w65-tdep.c $(gdbcore_h)
1551 win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1554 xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1555 vx-share/vxWorks.h vx-share/xdr_ld.h
1556 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1558 xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1559 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1560 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1562 xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1563 vx-share/vxWorks.h vx-share/xdr_rdb.h
1564 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1566 xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1567 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1568 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1569 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1570 $(symtab_h) partial-stab.h gdb_string.h
1572 xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1574 z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
1575 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h)
1577 c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1578 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1579 $(bfd_h) objfiles.h symfile.h
1581 f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1582 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1584 m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1585 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1586 $(bfd_h) objfiles.h symfile.h
1588 ### end of the gdb Makefile.in.