* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / Makefile.in
1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995
2 # Free Software Foundation, Inc.
3
4 # This file is part of GDB.
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 prefix = @prefix@
21 exec_prefix = @exec_prefix@
22
23 host_alias = @host_alias@
24 target_alias = @target_alias@
25 program_transform_name = @program_transform_name@
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28 tooldir = $(libdir)/$(target_alias)
29
30 datadir = $(prefix)/lib
31 mandir = $(prefix)/man
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
41 infodir = $(prefix)/info
42 includedir = $(prefix)/include
43 docdir = $(datadir)/doc
44
45 SHELL = /bin/sh
46
47 INSTALL = @INSTALL@
48 INSTALL_PROGRAM = @INSTALL_PROGRAM@
49 INSTALL_DATA = @INSTALL_DATA@
50
51 AR = ar
52 AR_FLAGS = qv
53 RANLIB = @RANLIB@
54
55 # Flags that describe where you can find the termcap library.
56 # This can be overridden in the host Makefile fragment file.
57 TERMCAP = -ltermcap
58
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.
64 CC=@CC@
65
66 # Directory containing source files.
67 srcdir = @srcdir@
68 VPATH = @srcdir@
69
70 # If you use bison instead of yacc, it needs to include the "-y" argument.
71 #BISON=bison -y
72 BISON=yacc
73 YACC=$(BISON)
74
75 # where to find makeinfo, preferably one designed for texinfo-2
76 MAKEINFO=makeinfo
77
78 # Set this up with gcc if you have gnu ld and the loader will print out
79 # line numbers for undefined references.
80 #CC-LD=gcc -static
81 CC-LD=$(CC)
82
83 # Where is our "include" directory? Typically $(srcdir)/../include.
84 # This is essentially the header file directory for the library
85 # routines in libiberty.
86 INCLUDE_DIR = $(srcdir)/../include
87 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
88
89 # Where is the "-liberty" library? Typically in ../libiberty.
90 LIBIBERTY = ../libiberty/libiberty.a
91
92 # Where is the MMALLOC library? Typically in ../mmalloc.
93 # Note that mmalloc can still be used on systems without mmap().
94 # To use your system malloc, comment out the following defines.
95 MMALLOC_DIR = ../mmalloc
96 MMALLOC = $(MMALLOC_DIR)/libmmalloc.a
97 # To use your system malloc, uncomment MMALLOC_DISABLE.
98 #MMALLOC_DISABLE = -DNO_MMALLOC
99 # To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK
100 #MMALLOC_CHECK = -DNO_MMALLOC_CHECK
101 MMALLOC_CFLAGS = -I$(srcdir)/$(MMALLOC_DIR) $(MMALLOC_CHECK) $(MMALLOC_DISABLE)
102
103 # Where is the BFD library? Typically in ../bfd.
104 BFD_DIR = ../bfd
105 BFD = $(BFD_DIR)/libbfd.a
106 BFD_SRC = $(srcdir)/$(BFD_DIR)
107 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
108
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)
114
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
117 # in INCLUDE_DIR.
118 # Where is the "-lopcodes" library, with (some of) the opcode tables and
119 # disassemblers?
120 OPCODES = ../opcodes/libopcodes.a
121 # Where are the other opcode tables which only have header file
122 # versions?
123 OP_INCLUDE = $(INCLUDE_DIR)/opcode
124 OPCODES_CFLAGS = -I$(OP_INCLUDE)
125
126 #start-sanitize-gdbtk
127 # Where is the TCL library? Typically in ../tcl.
128 TCL = @TCLLIB@
129 TCL_CFLAGS = @TCLHDIR@
130
131 # Where is the TK library? Typically in ../tk.
132 TK = @TKLIB@
133 TK_CFLAGS = @TKHDIR@
134
135 X11 = @X_LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@
136 X11_CFLAGS = @X_CFLAGS@
137
138 ENABLE_GDBTK= @ENABLE_GDBTK@
139 #end-sanitize-gdbtk
140
141 ENABLE_CFLAGS= @ENABLE_CFLAGS@
142 ENABLE_CLIBS= @ENABLE_CLIBS@
143 ENABLE_OBS= @ENABLE_OBS@
144
145
146 # All the includes used for CFLAGS and for lint.
147 # -I. for config files.
148 # -I$(srcdir) for gdb internal headers and possibly for regex.h also.
149 # -I$(srcdir)/config for more generic config files.
150
151 # It is also possible that you will need to add -I/usr/include/sys if
152 # your system doesn't have fcntl.h in /usr/include (which is where it
153 # should be according to Posix).
154 DEFS = @DEFS@
155 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
156
157 # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
158 # from the config directory.
159 GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
160 #PROFILE_CFLAGS = -pg
161
162 # CFLAGS is specifically reserved for setting from the command line
163 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
164 CFLAGS = -g
165
166 # Need to pass this to testsuite for "make check". Probably should be
167 # consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
168 # so "make check" has the same result no matter where it is run.
169 CXXFLAGS = -g -O
170
171 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
172 INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
173 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
174 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS)
175
176 # LDFLAGS is specifically reserved for setting from the command line
177 # when running make.
178
179 # Profiling options need to go here to work.
180 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
181 # and have it work; that's why CFLAGS is here.
182 INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS)
183
184 # We are using our own version of REGEX now to be consistent across
185 # machines.
186 REGEX = regex.o
187 REGEX1 = regex.o
188
189 # If your system is missing alloca(), or, more likely, it's there but
190 # it doesn't work, then refer to libiberty.
191
192 # Libraries and corresponding dependencies for compiling gdb.
193 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
194 # TERMCAP comes after readline, since readline depends on it.
195 # If you have the Cygnus libraries installed,
196 # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
197 INSTALLED_LIBS=-lbfd -lreadline $(TERMCAP) -lopcodes -lmmalloc \
198 -liberty $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(ENABLE_CLIBS)
199 CLIBS = $(BFD) $(READLINE) $(OPCODES) $(MMALLOC) $(LIBIBERTY) \
200 $(ENABLE_CLIBS) $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) \
201 $(LIBIBERTY)
202 CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(BFD) $(READLINE) $(OPCODES) \
203 $(MMALLOC) $(LIBIBERTY)
204
205 ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
206 ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
207
208 VERSION = 4.14.1
209 DIST=gdb
210
211 LINT=/usr/5bin/lint
212 LINTFLAGS= $(BFD_CFLAGS)
213
214 RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
215 echo ${srcdir}/../dejagnu/runtest ; else echo runtest; \
216 fi`
217
218 RUNTESTFLAGS=
219
220 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
221 # interface to the serial port. Hopefully if get ported to OS/2, VMS,
222 # etc., then there will be (as part of the C library or perhaps as
223 # part of libiberty) a POSIX interface. But at least for now the
224 # host-dependent makefile fragment might need to use something else
225 # besides ser-unix.o
226 SER_HARDWIRE=ser-unix.o
227
228 # The `remote' debugging target is supported for most architectures,
229 # but not all (e.g. 960)
230 REMOTE_OBS = remote.o dcache.o remote-utils.o
231
232 ANNOTATE_OBS = annotate.o
233
234 # Host and target-dependent makefile fragments come in here.
235 @host_makefile_frag@
236 @target_makefile_frag@
237 # End of host and target-dependent makefile fragments
238
239 FLAGS_TO_PASS = \
240 "prefix=$(prefix)" \
241 "exec_prefix=$(exec_prefix)" \
242 "against=$(against)" \
243 "AR=$(AR)" \
244 "AR_FLAGS=$(AR_FLAGS)" \
245 "CC=$(CC)" \
246 "CFLAGS=$(CFLAGS)" \
247 "CHILLFLAGS=$(CHILLFLAGS)" \
248 "CHILL=$(CHILL)" \
249 "CHILL_LIB=$(CHILL_LIB)" \
250 "CXX=$(CXX)" \
251 "CXXFLAGS=$(CXXFLAGS)" \
252 "RANLIB=$(RANLIB)" \
253 "MAKEINFO=$(MAKEINFO)" \
254 "INSTALL=$(INSTALL)" \
255 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
256 "INSTALL_DATA=$(INSTALL_DATA)" \
257 "RUNTEST=$(RUNTEST)" \
258 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
259 "BISON=$(BISON)"
260
261 # Flags that we pass when building the testsuite.
262
263 CC_FOR_TARGET = ` \
264 if [ -f $${rootme}/../gcc/xgcc ] ; then \
265 if [ -f $${rootme}/../newlib/Makefile ] ; then \
266 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc -L$${rootme}/../newlib -B$${rootme}/../newlib/; \
267 else \
268 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
269 fi; \
270 else \
271 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
272 echo $(CC); \
273 else \
274 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
275 fi; \
276 fi`
277
278 CXX = gcc
279 CXX_FOR_TARGET = ` \
280 if [ -f $${rootme}/../gcc/Makefile ] ; then \
281 if [ -f $${rootme}/../newlib/Makefile ] ; then \
282 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc -L$${rootme}/../newlib -B$${rootme}/../newlib/; \
283 else \
284 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
285 fi; \
286 else \
287 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
288 echo $(CXX); \
289 else \
290 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
291 fi; \
292 fi`
293
294 CHILLFLAGS = $(CFLAGS)
295 CHILL = gcc
296 CHILL_FOR_TARGET = ` \
297 if [ -f $${rootme}/../gcc/Makefile ] ; then \
298 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
299 else \
300 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
301 echo $(CC); \
302 else \
303 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
304 fi; \
305 fi`
306 CHILL_LIB = ` \
307 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
308 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
309 $${rootme}/../gcc/ch/runtime/libchill.a; \
310 else \
311 echo -lchill; \
312 fi`
313
314 # The use of $$(x_FOR_TARGET) reduces the command line length by not
315 # duplicating the lengthy definition.
316 TARGET_FLAGS_TO_PASS = \
317 "prefix=$(prefix)" \
318 "exec_prefix=$(exec_prefix)" \
319 "against=$(against)" \
320 "BISON=$(BISON)" \
321 'CC=$$(CC_FOR_TARGET)' \
322 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
323 "CFLAGS=$(CFLAGS)" \
324 "CHILLFLAGS=$(CHILLFLAGS)" \
325 'CHILL=$$(CHILL_FOR_TARGET)' \
326 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
327 "CHILL_LIB=$(CHILL_LIB)" \
328 'CXX=$$(CXX_FOR_TARGET)' \
329 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
330 "CXXFLAGS=$(CXXFLAGS)" \
331 "INSTALL=$(INSTALL)" \
332 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
333 "INSTALL_DATA=$(INSTALL_DATA)" \
334 "MAKEINFO=$(MAKEINFO)" \
335 "RUNTEST=$(RUNTEST)" \
336 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
337
338 # All source files that go into linking GDB.
339 # Links made at configuration time should not be specified here, since
340 # SFILES is used in building the distribution archive.
341
342 SFILES = blockframe.c breakpoint.c buildsym.c c-exp.y c-lang.c \
343 c-typeprint.c c-valprint.c ch-exp.y ch-lang.c ch-typeprint.c \
344 ch-valprint.c coffread.c command.c complaints.c core.c cp-valprint.c \
345 dbxread.c demangle.c dwarfread.c \
346 elfread.c environ.c eval.c expprint.c \
347 f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c \
348 gdbtypes.c infcmd.c inflow.c infrun.c language.c \
349 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
350 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
351 printcmd.c remote.c remote-nrom.c source.c stabsread.c stack.c symfile.c symmisc.c \
352 symtab.c target.c thread.c top.c \
353 typeprint.c utils.c valarith.c valops.c \
354 valprint.c values.c serial.c ser-unix.c mdebugread.c os9kread.c
355
356 # All source files that lint should look at
357 LINTFILES = $(SFILES) $(YYFILES) init.c
358
359 # "system" headers. Using these in dependencies is a rather personal
360 # choice. (-rich, summer 1993)
361 # (Why would we not want to depend on them? If one of these changes in a
362 # non-binary-compatible way, it is a real pain to remake the right stuff
363 # without these dependencies -kingdon, 13 Mar 1994)
364 getopt_h = $(INCLUDE_DIR)/getopt.h
365 floatformat_h = $(INCLUDE_DIR)/floatformat.h
366 bfd_h = $(BFD_DIR)/bfd.h
367 wait_h = $(INCLUDE_DIR)/wait.h
368 dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
369
370 dcache_h = dcache.h
371 remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h remote-sim.h
372
373 readline_headers = \
374 $(READLINE_SRC)/chardefs.h \
375 $(READLINE_SRC)/history.h \
376 $(READLINE_SRC)/keymaps.h \
377 $(READLINE_SRC)/readline.h
378
379 udiheaders = \
380 $(srcdir)/29k-share/udi/udiproc.h \
381 $(srcdir)/29k-share/udi/udiphcfg.h \
382 $(srcdir)/29k-share/udi/udiphunix.h \
383 $(srcdir)/29k-share/udi/udiptcfg.h \
384 $(srcdir)/29k-share/udi/udipt29k.h \
385 $(srcdir)/29k-share/udi/udisoc.h
386
387 gdbcore_h = gdbcore.h $(bfd_h)
388
389 frame_h = frame.h
390 symtab_h = symtab.h
391 gdbtypes_h = gdbtypes.h
392 expression_h = expression.h
393 value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
394
395 breakpoint_h = breakpoint.h $(frame_h) $(value_h)
396
397 command_h = command.h
398 gdbcmd_h = gdbcmd.h $(command_h)
399
400 defs_h = defs.h xm.h tm.h nm.h config.status
401
402 inferior_h = inferior.h $(breakpoint_h)
403
404 # Header files that need to have srcdir added. Note that in the cases
405 # where we use a macro like $(gdbcmd_h), things are carefully arranged
406 # so that each .h file is listed exactly once (M-x tags-search works
407 # wrong if TAGS has files twice). Because this is tricky to get
408 # right, it is probably easiest just to list .h files here directly.
409
410 HFILES_NO_SRCDIR = buildsym.h call-cmds.h coff-solib.h defs.h dst.h environ.h \
411 $(gdbcmd_h) gdbcore.h \
412 gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
413 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
414 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
415 c-lang.h ch-lang.h f-lang.h m2-lang.h \
416 complaints.h valprint.h \
417 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
418 nindy-share/block_io.h nindy-share/coff.h \
419 nindy-share/env.h nindy-share/stop.h \
420 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
421 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
422 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h thread.h \
423 dcache.h remote-utils.h remote-sim.h top.h somsolib.h
424
425 # Header files that already have srcdir in them, or which are in objdir.
426
427 HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
428
429
430 # GDB "info" files, which should be included in their entirety
431 INFOFILES = gdb.info*
432
433 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
434
435 POSSLIBS = regex.c regex.h
436
437 # Subdirectories of gdb, which should be included in their entirety in
438 # gdb-xxx.tar.Z:
439 TARDIRS = doc gdbserver sparclite
440
441 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
442 # default their values the way we do for SER_HARDWIRE; in the future
443 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
444 # variables analogous to SER_HARDWIRE which get defaulted in this
445 # Makefile.in
446
447 DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) $(REMOTE_OBS) \
448 $(ENABLE_OBS)
449
450 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
451 # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
452 # and it's more useful to see it in the .y file.
453 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
454 $(POSSLIBS)
455 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
456
457 COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
458 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
459 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
460 expprint.o environ.o gdbtypes.o copying.o $(DEPFILES) \
461 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
462 exec.o objfiles.o minsyms.o maint.o demangle.o \
463 dbxread.o coffread.o elfread.o \
464 dwarfread.o mipsread.o stabsread.o core.o \
465 c-lang.o ch-lang.o f-lang.o m2-lang.o \
466 complaints.o typeprint.o \
467 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
468 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
469 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o
470
471 OBS = $(COMMON_OBS) $(ANNOTATE_OBS) main.o
472
473 LIBGDB_OBS =
474
475 TSOBS = inflow.o
476
477 NTSOBS = standalone.o
478
479 NTSSTART = kdb-start.o
480
481 SUBDIRS = doc testsuite nlm
482
483 # For now, shortcut the "configure GDB for fewer languages" stuff.
484 YYFILES = c-exp.tab.c f-exp.tab.c m2-exp.tab.c ch-exp.tab.c
485 YYOBJ = c-exp.tab.o f-exp.tab.o m2-exp.tab.o ch-exp.tab.o
486
487 # Things which need to be built when making a distribution.
488
489 DISTSTUFF = $(YYFILES)
490
491 # Prevent Sun make from putting in the machine type. Setting
492 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
493 .c.o:
494 $(CC) -c $(INTERNAL_CFLAGS) $<
495
496 all: gdb
497 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
498
499 installcheck:
500
501 # The check target can not use subdir_do, because subdir_do does not
502 # use TARGET_FLAGS_TO_PASS.
503 check: force
504 @if [ -f testsuite/Makefile ]; then \
505 rootme=`pwd`; export rootme; \
506 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
507 cd testsuite; \
508 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
509 else true; fi
510
511 info dvi install-info clean-info: force
512 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
513
514 gdb.z:gdb.1
515 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
516 pack gdb.t ; rm -f gdb.t
517 mv gdb.t.z gdb.z
518
519 # Traditionally "install" depends on "all". But it may be useful
520 # not to; for example, if the user has made some trivial change to a
521 # source file and doesn't care about rebuilding or just wants to save the
522 # time it takes for make to check that all is up to date.
523 # install-only is intended to address that need.
524 install: all install-only
525 install-only:
526 transformed_name=`t='$(program_transform_name)'; \
527 echo gdb | sed -e "s/brokensed/brokensed/" $$t` ; \
528 if test "x$$transformed_name" = x; then \
529 transformed_name=gdb ; \
530 else \
531 true ; \
532 fi ; \
533 $(INSTALL_PROGRAM) gdb $(bindir)/$$transformed_name ; \
534 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
535 # start-sanitize-gdbtk
536 if [ x"$(ENABLE_GDBTK)" != x ] ; then \
537 $(INSTALL_DATA) $(srcdir)/gdbtk.tcl $(libdir)/gdbtk.tcl ; \
538 else \
539 true ; \
540 fi
541 # end-sanitize-gdbtk
542 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
543
544 uninstall: force
545 transformed_name=`t='$(program_transform_name)'; \
546 echo gdb | sed -e "s/brokensed/brokensed/" $$t` ; \
547 if test "x$$transformed_name" = x; then \
548 transformed_name=gdb ; \
549 else \
550 true ; \
551 fi ; \
552 rm -f $(bindir)/$$transformed_name $(man1dir)/$$transformed_name.1
553 # start-sanitize-gdbtk
554 if [ x"$(ENABLE_GDBTK)" != x ] ; then \
555 rm -f $(libdir)/gdbtk.tcl ; \
556 fi
557 # end-sanitize-gdbtk
558 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
559
560 # We do this by grepping through sources. If that turns out to be too slow,
561 # maybe we could just require every .o file to have an initialization routine
562 # of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
563 #
564 # Formatting conventions: The name of the _initialize_* routines must start
565 # in column zero, and must not be inside #if.
566 #
567 # Note that the set of files with init functions might change, or the names
568 # of the functions might change, so this files needs to depend on all the
569 # object files that will be linked into gdb.
570
571 init.c: $(OBS) $(TSOBS)
572 @echo Making init.c
573 @rm -f init.c-tmp
574 @echo '/* Do not modify this file. */' >init.c-tmp
575 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
576 @echo 'void initialize_all_files () {' >>init.c-tmp
577 @for i in $(OBS) $(TSOBS); do \
578 filename=`echo $$i | sed \
579 -e '/^Onindy.o/d' \
580 -e '/^nindy.o/d' \
581 -e '/ttyflush.o/d' \
582 -e '/xdr_ld.o/d' \
583 -e '/xdr_ptrace.o/d' \
584 -e '/xdr_rdb.o/d' \
585 -e '/udr.o/d' \
586 -e '/udip2soc.o/d' \
587 -e '/udi2go32.o/d' \
588 -e '/version.o/d' \
589 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
590 -e 's/\.o/.c/'` ; \
591 case $$filename in \
592 "") ;; \
593 *) sed <$(srcdir)/$$filename >>init.c-tmp -n \
594 -e '/^_initialize_[a-z_0-9A-Z]* *(/s/^\([a-z_0-9A-Z]*\).*/ {extern void \1 (); \1 ();}/p' ; ;; \
595 esac ; \
596 done
597 @echo '}' >>init.c-tmp
598 @mv init.c-tmp init.c
599
600 .PRECIOUS: init.c
601
602 # Removing the old gdb first works better if it is running, at least on SunOS.
603 gdb: $(OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
604 rm -f gdb
605 $(CC-LD) $(INTERNAL_LDFLAGS) -o gdb \
606 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
607
608 nlm: force
609 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
610
611 libgdb: libgdb-files $(LIBGDB_OBS)
612
613 # libproc is not listed here because all-libproc is a dependency of all-gui,
614 # not all-gdb, and thus might be built after us.
615 LIBGDBDEPS=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
616 # libproc needs to be before libiberty for alloca.
617 LIBGDBFILES=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) ../libproc/libproc.a \
618 $(ADD_DEPS) $(CDEPS) init.o
619
620 libgdb-files: $(LIBGDBDEPS) Makefile.in
621 -rm -f libgdb-files
622 for i in $(LIBGDBFILES); do\
623 echo $$i >> libgdb-files;\
624 done
625
626 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
627 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
628 #load ./init.c $(SFILES)
629 #unload $(srcdir)/c-exp.y $(srcdir)/m2-exp.y $(srcdir)/ch-exp.y
630 #unload vx-share/*.h
631 #unload nindy-share/[A-Z]*
632 #load c-exp.tab.c m2-exp.tab.c ch-exp.tab.c
633 #load copying.c version.c
634 #load ../opcodes/libopcodes.a
635 #load ../libiberty/libiberty.a
636 #load ../bfd/libbfd.a
637 #load ../readline/libreadline.a
638 #load ../mmalloc/libmmalloc.a
639 #load -ltermcap
640 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
641 echo "Load .c corresponding to:" $(DEPFILES)
642
643
644 # A Mach 3.0 program to force gdb back to command level
645
646 stop-gdb: stop-gdb.o
647 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
648 stop-gdb.o $(CLIBS) $(LOADLIBES)
649
650 # This is useful when debugging GDB, because some Unix's don't let you run GDB
651 # on itself without copying the executable. So "make gdb1" will make
652 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
653 # Removing gdb1 before the copy is the right thing if gdb1 is open
654 # in another process.
655 gdb1: gdb
656 rm -f gdb1
657 cp gdb gdb1
658
659 ### fixme - this can't be right.
660 # This checks the configure.in file versus the config/ directory.
661 config-check: config-check-hosts config-check-targets
662 config-check-hosts:
663 grep gdb_host= $(srcdir)/configure.in | \
664 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
665 (cd $(srcdir)/config; ls *.mh) >HOSTdir.o
666 diff -u HOSTconf.o HOSTdir.o
667
668 ### fixme - nor can this.
669 config-check-targets:
670 grep gdb_target= $(srcdir)/configure.in | \
671 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
672 (cd $(srcdir)/config; ls *.mt) >TARGdir.o
673 diff -u HOSTconf.o HOSTdir.o
674
675 # FIXME. These are not generated by "make depend" because they only are there
676 # for some machines.
677 # But these rules don't do what we want; we want to hack the foo.o: tm.h
678 # dependency to do the right thing.
679 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
680 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
681 xm-news1000.h: xm-news.h
682 xm-i386-sv32.h: xm-i386.h
683 tm-i386gas.h: tm-i386.h
684 xm-sun4os4.h: xm-sparc.h
685 tm-sun4os4.h: tm-sparc.h
686 xm-vaxult.h: xm-vax.h
687 xm-vaxbsd.h: xm-vax.h
688
689 kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
690 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
691 -lc $(CLIBS)
692
693 # Put the proper machine-specific files first, so M-. on a machine
694 # specific routine gets the one for the correct machine. (FIXME: those
695 # files go in twice; we should be removing them from the main list).
696
697 # TAGS depends on all the files that go into it so you can rebuild TAGS
698 # with `make TAGS' and not have to say `rm TAGS' first.
699
700 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
701 @echo Making TAGS
702 @etags $(srcdir)/$(TM_FILE) \
703 $(srcdir)/$(XM_FILE) \
704 $(srcdir)/$(NAT_FILE) \
705 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
706 echo $(srcdir)/$$i ; \
707 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
708 echo $$i ; \
709 done) | sed -e 's/\.o$$/\.c/'` \
710 `find $(srcdir)/config -name '*.h' -print`
711
712 tags: TAGS
713
714 clean mostlyclean:
715 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
716 rm -f *.o $(ADD_FILES) *~ init.c-tmp
717 rm -f init.c version.c
718 rm -f gdb core make.log libgdb-files
719 rm -f gdb[0-9]
720
721 # This used to depend on c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS
722 # I believe this is wrong; the makefile standards for distclean just
723 # describe removing files; the only sort of "re-create a distribution"
724 # functionality described is if the distributed files are unmodified.
725 distclean: clean
726 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
727 rm -f nm.h tm.h xm.h config.status
728 rm -f y.output yacc.acts yacc.tmp y.tab.h
729 rm -f Makefile
730
731 realclean: clean
732 @$(MAKE) $(FLAGS_TO_PASS) DO=realclean "DODIRS=$(SUBDIRS)" subdir_do
733 rm -f c-exp.tab.c f-exp.tab.c m2-exp.tab.c ch-exp.tab.c
734 rm -f TAGS $(INFOFILES)
735 rm -f nm.h tm.h xm.h config.status
736 rm -f y.output yacc.acts yacc.tmp
737 rm -f Makefile
738
739 diststuff: $(DISTSTUFF)
740 (cd doc; $(MAKE) $(MFLAGS) GDBvn.texi)
741 $(MAKE) $(MFLAGS) gdb.info
742 $(MAKE) $(MFLAGS) refcard.ps
743
744 subdir_do: force
745 @for i in $(DODIRS); do \
746 if [ -f ./$$i/Makefile ] ; then \
747 if (cd ./$$i; \
748 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
749 else exit 1 ; fi ; \
750 else true ; fi ; \
751 done
752
753 Makefile: Makefile.in config.status @host_makefile_frag_path@ @target_makefile_frag_path@
754 $(SHELL) config.status
755
756 config.status: configure
757 $(SHELL) config.status --recheck
758
759 force:
760
761 # Documentation!
762 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
763 refcard.dvi:
764 ( cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS) )
765 mv doc/refcard.dvi .
766
767 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
768 refcard.ps:
769 ( cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS) )
770 mv doc/refcard.ps .
771
772 # GDB MANUAL: TeX dvi file
773 gdb.dvi:
774 ( cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS) )
775 mv doc/gdb.dvi .
776
777 # GDB MANUAL: info file
778 gdb.info:
779 ( cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS) )
780 mv doc/gdb.info* .
781
782 # Make copying.c from COPYING
783 copying.c: COPYING copying.awk
784 awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
785
786 version.c: Makefile
787 echo 'char *version = "$(VERSION)";' >version.c
788 echo 'char *host_name = "$(host_alias)";' >> version.c
789 echo 'char *target_name = "$(target_alias)";' >> version.c
790
791 # c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
792 # in srcdir, then compiled in objdir to c-exp.tab.o.
793
794 # If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
795 # would sometimes re-write it into $(srcdir)/c-exp.tab.c.
796
797 # Remove bogus decls for malloc/realloc/free which conflict with everything
798 # else. Strictly speaking c-exp.tab.c should therefore depend on
799 # Makefile.in, but that was a pretty big annoyance.
800 c-exp.tab.o: c-exp.tab.c
801 c-exp.tab.c: c-exp.y
802 $(YACC) $(YFLAGS) $(srcdir)/c-exp.y
803 -sed -e '/extern.*malloc/d' \
804 -e '/extern.*realloc/d' \
805 -e '/extern.*free/d' \
806 -e '/include.*malloc.h/d' \
807 -e 's/malloc/xmalloc/g' \
808 -e 's/realloc/xrealloc/g' \
809 < y.tab.c > c-exp.new
810 -rm y.tab.c
811 mv c-exp.new ./c-exp.tab.c
812
813 f-exp.tab.o: f-exp.tab.c
814 f-exp.tab.c: f-exp.y c-exp.tab.c
815 $(YACC) $(YFLAGS) $(srcdir)/f-exp.y
816 -sed -e '/extern.*malloc/d' \
817 -e '/extern.*realloc/d' \
818 -e '/extern.*free/d' \
819 -e '/include.*malloc.h/d' \
820 -e 's/malloc/xmalloc/g' \
821 -e 's/realloc/xrealloc/g' \
822 < y.tab.c > f-exp.new
823 -rm y.tab.c
824 mv f-exp.new ./f-exp.tab.c
825
826 # ch-exp.tab.c is generated in objdir from ch-exp.y if it doesn't exist
827 # in srcdir, then compiled in objdir to ch-exp.tab.o.
828 # Remove bogus decls for malloc/realloc/free which conflict with everything
829 # else.
830 ch-exp.tab.o: ch-exp.tab.c
831 # the dependency here on f-exp.tab.c is artificial. Without this
832 # dependency, a parallel make will attempt to build both at the same
833 # time and the second yacc will pollute the first y.tab.c file.
834 ch-exp.tab.c: ch-exp.y f-exp.tab.c
835 $(YACC) $(YFLAGS) $(srcdir)/ch-exp.y
836 -sed -e '/extern.*malloc/d' \
837 -e '/extern.*realloc/d' \
838 -e '/extern.*free/d' \
839 -e '/include.*malloc.h/d' \
840 -e 's/malloc/xmalloc/g' \
841 -e 's/realloc/xrealloc/g' \
842 < y.tab.c > ch-exp.new
843 -rm y.tab.c
844 mv ch-exp.new ./ch-exp.tab.c
845
846 # m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
847 # in srcdir, then compiled in objdir to m2-exp.tab.o.
848 # Remove bogus decls for malloc/realloc/free which conflict with everything
849 # else.
850 m2-exp.tab.o: m2-exp.tab.c
851 # the dependency here on ch-exp.tab.c is artificial. Without this
852 # dependency, a parallel make will attempt to build both at the same
853 # time and the second yacc will pollute the first y.tab.c file.
854 m2-exp.tab.c: m2-exp.y ch-exp.tab.c
855 $(YACC) $(YFLAGS) $(srcdir)/m2-exp.y
856 -sed -e '/extern.*malloc/d' \
857 -e '/extern.*realloc/d' \
858 -e '/extern.*free/d' \
859 -e '/include.*malloc.h/d' \
860 -e 's/malloc/xmalloc/g' \
861 -e 's/realloc/xrealloc/g' \
862 < y.tab.c > m2-exp.new
863 -rm y.tab.c
864 mv m2-exp.new ./m2-exp.tab.c
865
866 # These files are updated atomically, so make never has to remove them
867 .PRECIOUS: m2-exp.tab.c ch-exp.tab.c f-exp.tab.c c-exp.tab.c
868
869 lint: $(LINTFILES)
870 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
871 `echo $(DEPFILES) | sed 's/\.o /\.c /g'
872
873 gdb.cxref: $(SFILES)
874 cxref -I. $(SFILES) >gdb.cxref
875
876 force_update:
877
878 # GNU Make has an annoying habit of putting *all* the Makefile variables
879 # into the environment, unless you include this target as a circumvention.
880 # Rumor is that this will be fixed (and this target can be removed)
881 # in GNU Make 4.0.
882 .NOEXPORT:
883
884 # GNU Make 3.63 has a different problem: it keeps tacking command line
885 # overrides onto the definition of $(MAKE). This variable setting
886 # will remove them.
887 MAKEOVERRIDES=
888
889 ## This is ugly, but I don't want GNU make to put these variables in
890 ## the environment. Older makes will see this as a set of targets
891 ## with no dependencies and no actions.
892 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
893
894 ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
895 29k-share/udi/udi2go32.c \
896 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
897 altos-xdep.c arm-convert.s \
898 arm-tdep.c arm-xdep.c coff-solib.c \
899 convex-tdep.c \
900 convex-xdep.c core-sol2.c core-svr4.c coredep.c corelow.c dcache.c \
901 delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
902 go32-xdep.c gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
903 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
904 hpread.c \
905 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c \
906 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
907 i387-tdep.c \
908 i960-tdep.c \
909 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
910 lynx-nat.c m3-nat.c \
911 m68k-tdep.c \
912 m88k-nat.c m88k-tdep.c mips-nat.c \
913 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
914 nindy-share/Onindy.c nindy-share/nindy.c \
915 nindy-share/ttyflush.c nindy-tdep.c \
916 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
917 somread.c somsolib.c $(HPREAD_SOURCE) \
918 procfs.c pyr-tdep.c pyr-xdep.c \
919 remote-adapt.c remote-bug.c remote-e7000.c remote-eb.c remote-es.c \
920 remote-hms.c remote-mips.c \
921 remote-mm.c remote-nindy.c remote-os9k.c remote-sim.c \
922 remote-st.c remote-utils.c dcache.c \
923 remote-udi.c remote-vx.c remote-vx29k.c remote-z8k.c \
924 rs6000-nat.c rs6000-tdep.c \
925 ser-go32.c ser-tcp.c sh-tdep.c solib.c sparc-nat.c \
926 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
927 symm-tdep.c symm-nat.c \
928 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
929 vax-tdep.c \
930 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
931 xcoffread.c xcoffsolib.c z8k-tdep.c
932
933 ALLCONFIG = config/a29k/a29k-kern.mt config/a29k/a29k-udi.mt config/a29k/vx29k.mt\
934 config/a29k/a29k.mt config/a29k/ultra3.mh config/a29k/ultra3.mt \
935 config/alpha/alpha-osf1.mh config/alpha/alpha-osf2.mh \
936 config/alpha/alpha-osf1.mt config/alpha/alpha-nw.mt \
937 config/arm/arm.mh config/arm/arm.mt config/convex/convex.mh \
938 config/convex/convex.mt config/gould/np1.mh config/gould/np1.mt \
939 config/gould/pn.mh config/gould/pn.mt config/h8300/h8300hms.mt \
940 config/h8500/h8500hms.mt config/i386/go32.mh config/i386/i386aix.mh \
941 config/i386/i386aix.mt config/i386/i386aout.mt config/i386/i386bsd.mh \
942 config/i386/i386bsd.mt config/i386/i386lynx.mh \
943 config/i386/i386lynx.mt config/i386/i386m3.mh config/i386/i386m3.mt \
944 config/i386/i386mach.mh config/i386/i386mk.mh config/i386/i386mk.mt \
945 config/i386/i386nw.mt config/i386/i386sco.mh \
946 config/i386/i386sco4.mh \
947 config/i386/i386sol2.mh config/i386/i386sol2.mt config/i386/i386v.mh \
948 config/i386/i386v.mt config/i386/i386v32.mh config/i386/i386v4.mh \
949 config/i386/i386v4.mt config/i386/linux.mh config/i386/linux.mt \
950 config/i386/ncr3000.mh config/i386/ncr3000.mt config/i386/ptx.mh \
951 config/i386/sun386.mh \
952 config/i386/sun386.mt config/i386/symmetry.mh config/i386/symmetry.mt \
953 config/i960/nindy960.mt config/i960/vxworks960.mt config/m68k/3b1.mh \
954 config/m68k/3b1.mt config/m68k/altos.mh config/m68k/altos.mt \
955 config/m68k/amix.mh config/m68k/amix.mt config/m68k/apollo68b.mh \
956 config/m68k/apollo68b.mt \
957 config/m68k/apollo68v.mh \
958 config/m68k/cisco.mt config/m68k/delta68.mh \
959 config/m68k/delta68.mt config/m68k/dpx2.mh config/m68k/dpx2.mt \
960 config/m68k/es1800.mt config/m68k/hp300bsd.mh \
961 config/m68k/hp300bsd.mt config/m68k/hp300hpux.mh \
962 config/m68k/hp300hpux.mt config/m68k/isi.mh config/m68k/isi.mt \
963 config/m68k/m68klynx.mh config/m68k/m68klynx.mt \
964 config/m68k/monitor.mt \
965 config/m68k/news.mh config/m68k/news.mt config/m68k/news1000.mh \
966 config/m68k/os68k.mt config/m68k/st2000.mt config/m68k/sun2os3.mh \
967 config/m68k/sun2os3.mt config/m68k/sun2os4.mh config/m68k/sun2os4.mt \
968 config/m68k/sun3os3.mh config/m68k/sun3os3.mt config/m68k/sun3os4.mh \
969 config/m68k/sun3os4.mt config/m68k/vxworks68.mt config/m88k/delta88.mh \
970 config/m88k/delta88.mt config/m88k/delta88v4.mh \
971 config/m88k/delta88v4.mt config/m88k/m88k.mh config/m88k/m88k.mt \
972 config/mips/bigmips.mt config/mips/bigmips64.mt \
973 config/mips/decstation.mh \
974 config/mips/decstation.mt config/mips/idt.mt config/mips/idtl.mt \
975 config/mips/idt64.mt config/mips/idtl64.mt \
976 config/mips/irix3.mh config/mips/irix3.mt config/mips/irix4.mh \
977 config/mips/irix5.mh config/mips/irix5.mt \
978 config/mips/littlemips.mh config/mips/littlemips.mt \
979 config/mips/mipsel64.mt \
980 config/mips/mipsm3.mh config/mips/mipsm3.mt \
981 config/mips/mipsv4.mh config/mips/mipsv4.mt \
982 config/mips/news-mips.mh config/mips/riscos.mh \
983 config/none/none.mh config/none/none.mt config/ns32k/merlin.mh \
984 config/ns32k/merlin.mt config/ns32k/ns32km3.mh config/ns32k/ns32km3.mt \
985 config/ns32k/umax.mh config/ns32k/umax.mt \
986 config/pa/hppabsd.mh config/pa/hppabsd.mt config/pa/hppahpux.mh \
987 config/pa/hppahpux.mt config/pyr/pyramid.mh config/pyr/pyramid.mt \
988 config/romp/rtbsd.mh config/rs6000/rs6000.mh config/rs6000/rs6000.mt \
989 config/sh/sh.mt config/sparc/sparc-em.mt config/sparc/sparclite.mt \
990 config/sparc/sparclynx.mh config/sparc/sparclynx.mt \
991 config/sparc/sun4os4.mh config/sparc/sun4os4.mt \
992 config/sparc/sun4sol2.mh config/sparc/sun4sol2.mt \
993 config/sparc/vxsparc.mt config/tahoe/tahoe.mh config/tahoe/tahoe.mt \
994 config/vax/vax.mt config/vax/vaxbsd.mh config/vax/vaxult.mh \
995 config/vax/vaxult2.mh config/z8k/z8ksim.mt
996
997
998 udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
999 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1000
1001 udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1002 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1003
1004 udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
1005 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1006
1007 a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1008
1009 a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1010
1011 alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1012
1013 alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1014 $(inferior_h) $(symtab_h) $(dis-asm.h)
1015
1016 altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1017
1018 annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1019
1020 arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1021
1022 blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1023 objfiles.h symfile.h target.h
1024
1025 breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1026 $(inferior_h) language.h target.h thread.h
1027
1028 buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1029 objfiles.h symfile.h $(symtab_h)
1030
1031 c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1032 language.h parser-defs.h $(symtab_h)
1033
1034 c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1035 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1036 typeprint.h $(value_h)
1037
1038 c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1039 language.h $(symtab_h) valprint.h $(value_h)
1040
1041 f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1042 language.h parser-defs.h $(symtab_h)
1043
1044 f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1045 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1046 typeprint.h $(value_h)
1047
1048 f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1049 language.h $(symtab_h) valprint.h $(value_h)
1050
1051 ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1052 language.h parser-defs.h $(symtab_h)
1053
1054 ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1055 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1056 target.h $(value_h) typeprint.h
1057
1058 ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1059 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1060
1061 coff-solib.o: coff-solib.c $(defs_h)
1062
1063 coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1064 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1065 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h
1066
1067 command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1068 $(gdbtypes_h) $(symtab_h) $(value_h)
1069
1070 complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1071
1072 convex-tdep.o: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1073 $(gdbcore_h) $(inferior_h)
1074
1075 convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1076 $(inferior_h)
1077
1078 copying.o: copying.c $(defs_h) $(gdbcmd_h)
1079
1080 core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1081 $(inferior_h) target.h
1082
1083 core-svr4.o: core-svr4.c $(command_h) $(defs_h) $(gdbcore_h) \
1084 $(inferior_h) target.h
1085
1086 core.o: core.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1087 $(inferior_h) target.h language.h
1088
1089 coredep.o: coredep.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1090
1091 corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1092 target.h thread.h
1093
1094 cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1095 $(gdbtypes_h) $(symtab_h) $(value_h)
1096
1097 dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h)
1098
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
1103
1104 delta68-nat.o: delta68-nat.c $(defs_h)
1105
1106 demangle.o: demangle.c $(defs_h) $(gdbcmd_h)
1107
1108 dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h)
1109
1110 dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1111 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1112 $(symtab_h)
1113
1114 elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1115 gdb-stabs.h objfiles.h symfile.h $(symtab_h)
1116
1117 environ.o: environ.c $(defs_h) environ.h $(gdbcore_h)
1118
1119 eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1120 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h)
1121
1122 exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1123 target.h language.h
1124
1125 expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1126 language.h parser-defs.h $(symtab_h) $(value_h)
1127
1128 findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1129
1130 fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
1131 $(inferior_h) target.h terminal.h thread.h
1132
1133 # start-sanitize-gdbtk
1134 gdbtk.o: gdbtk.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
1135 $(bfd_h) symfile.h objfiles.h target.h
1136 $(CC) -c $(INTERNAL_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1137 $(srcdir)/gdbtk.c -DGDBTK_FILENAME=\"$(libdir)/gdbtk.tcl\"
1138 # end-sanitize-gdbtk
1139
1140 gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1141 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1142 $(value_h)
1143
1144 go32-xdep.o: go32-xdep.c
1145
1146 gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
1147 $(gdbcore_h) $(symtab_h)
1148
1149 gould-xdep.o: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1150
1151 h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1152
1153 h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1154 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1155 $(value_h)
1156
1157 hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1158
1159 hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1160 $(inferior_h) objfiles.h symfile.h target.h
1161
1162 hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1163 hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1164
1165 i386-tdep.o: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1166
1167 i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1168 language.h $(gdbcore_h) $(floatformat_h) target.h
1169
1170 i386b-nat.o: i386b-nat.c $(defs_h)
1171
1172 i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1173
1174 i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h
1175
1176 i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1177
1178 i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1179
1180 i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1181 $(inferior_h) language.h target.h
1182
1183 i386v4-nat.o: i386v4-nat.c $(defs_h)
1184
1185 i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1186 $(inferior_h) language.h
1187
1188 i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1189 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1190
1191 infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1192 $(inferior_h) target.h language.h
1193
1194 inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1195 signals.h target.h terminal.h thread.h
1196
1197 infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1198
1199 infrun.o: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1200 $(inferior_h) target.h thread.h
1201
1202 inftarg.o: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1203 target.h terminal.h $(command_h)
1204
1205 irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h)
1206 irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1207 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) regex.h \
1208 language.h
1209 isi-xdep.o: isi-xdep.c
1210
1211 language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1212 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1213 target.h $(value_h)
1214
1215 lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1216
1217 m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1218 language.h m2-lang.h parser-defs.h $(symtab_h)
1219
1220 m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1221 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1222 $(value_h)
1223
1224 m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1225 valprint.h
1226
1227 m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1228 $(wait_h) $(gdbcmd_h) $(gdbcore_h)
1229
1230 m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1231
1232 m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1233
1234 m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1235
1236 m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1237
1238 top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1239 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
1240 $(remote_utils_h)
1241
1242 main.o: main.c top.h $(defs_h)
1243
1244 maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1245 $(expression_h)
1246
1247 mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1248 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1249 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h)
1250
1251 mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1252
1253 os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1254 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1255 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) target.h
1256
1257 mem-break.o: mem-break.c $(defs_h)
1258
1259 minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1260 $(symtab_h)
1261
1262 mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1263
1264 mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1265 $(inferior_h) language.h objfiles.h symfile.h
1266
1267 mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1268 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1269 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h)
1270
1271 mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1272
1273 monitor.o: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1274 $(inferior_h) target.h serial.h terminal.h
1275
1276 news-xdep.o: news-xdep.c
1277
1278 Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
1279 nindy-share/env.h
1280 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1281
1282 nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
1283 nindy-share/env.h
1284 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1285
1286 nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1287 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h
1288
1289 ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1290
1291 ttyflush.o: nindy-share/ttyflush.c
1292 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1293
1294 nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1295
1296 ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1297
1298 objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1299 $(symtab_h)
1300
1301 osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1302 objfiles.h regex.h symfile.h target.h language.h
1303
1304 somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1305 gdb-stabs.h objfiles.h symfile.h $(symtab_h)
1306
1307 somsolib.o: somsolib.c $(defs_h)
1308
1309 hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1310 gdb-stabs.h objfiles.h symfile.h $(symtab_h)
1311
1312 parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1313 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h)
1314
1315 printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1316 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1317 $(symtab_h) target.h
1318
1319 procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1320 target.h
1321
1322 pyr-tdep.o: pyr-tdep.c $(defs_h)
1323
1324 pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1325
1326 regex.o: regex.c regex.h $(defs_h)
1327
1328 remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
1329 $(inferior_h) target.h terminal.h
1330
1331 remote-bug.o: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
1332 $(inferior_h) target.h terminal.h $(remote_utils_h)
1333
1334 remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1335 $(wait_h) serial.h
1336
1337 remote-eb.o: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
1338 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h
1339
1340 remote-es.o: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
1341 $(inferior_h) $(remote_utils_h) terminal.h
1342
1343 remote-hms.o: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
1344 $(inferior_h) serial.h target.h terminal.h
1345
1346 remote-mips.o: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1347 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1348
1349 remote-mm.o: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
1350 minimon.h target.h terminal.h
1351
1352 remote-nindy.o: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
1353 $(defs_h) $(gdbcore_h) $(inferior_h) \
1354 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1355 symfile.h
1356
1357 remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
1358 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1359 objfiles.h gdb-stabs.h
1360
1361 remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
1362 $(inferior_h) target.h terminal.h
1363
1364 remote-st.o: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
1365 target.h
1366
1367 remote-udi.o: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1368 $(inferior_h) target.h terminal.h $(udiheaders)
1369
1370 remote-vx.o: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1371 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1372 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1373 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h)
1374
1375 remote-vx29k.o: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1376 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1377 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1378 vx-share/xdr_rdb.h
1379
1380 remote-z8k.o: remote-z8k.c $(wait_h) $(srcdir)/../sim/z8k/sim.h \
1381 $(defs_h) $(gdbcore_h) $(inferior_h) target.h terminal.h
1382
1383 remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1384 $(inferior_h) $(remote_utils_h)
1385
1386 remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1387 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1388
1389 remote-nrom.o: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1390 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1391
1392 rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1393 $(inferior_h) target.h serial.h terminal.h
1394
1395 rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1396
1397 rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1398 target.h xcoffsolib.h
1399
1400 ser-go32.o: ser-go32.c $(defs_h) serial.h
1401
1402 ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h
1403
1404 ser-unix.o: ser-unix.c $(defs_h) serial.h
1405
1406 serial.o: serial.c $(defs_h) serial.h
1407
1408 sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1409 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1410 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1411
1412 solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1413 objfiles.h regex.h symfile.h target.h
1414
1415 source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1416 $(gdbcore_h) language.h objfiles.h regex.h symfile.h $(symtab_h)
1417
1418 sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1419
1420 sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1421 $(inferior_h) objfiles.h symfile.h target.h
1422
1423 sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1424
1425 stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1426 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1427 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h)
1428
1429 stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1430 language.h target.h
1431
1432 sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1433 sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1434
1435 symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1436 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1437 language.h objfiles.h symfile.h $(symtab_h) target.h
1438
1439 symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1440 symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1441
1442 symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1443 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1444 $(symtab_h)
1445
1446 symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1447 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1448 regex.h symfile.h $(symtab_h) target.h $(value_h)
1449
1450 tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1451 $(symtab_h)
1452
1453 target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1454 objfiles.h symfile.h target.h
1455
1456 thread.o: thread.c $(defs_h) thread.h $(gdbcmd_h)
1457
1458 typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1459 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1460 $(value_h)
1461
1462 ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1463 ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1464 umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1465
1466 utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1467 language.h signals.h target.h terminal.h $(readline_headers)
1468
1469 valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1470 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h)
1471
1472 valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1473
1474 valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1475 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1476 $(value_h)
1477
1478 values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1479 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h)
1480
1481 vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1482
1483 w65-tdep.o : w65-tdep.c
1484
1485 xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1486 vx-share/vxWorks.h vx-share/xdr_ld.h
1487 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1488
1489 xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1490 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1491 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1492
1493 xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1494 vx-share/vxWorks.h vx-share/xdr_rdb.h
1495 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1496
1497 xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1498 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1499 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1500 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1501 $(symtab_h)
1502
1503 xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1504
1505 z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
1506 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h)
1507
1508 c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1509 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1510 $(bfd_h) objfiles.h symfile.h
1511
1512 ch-exp.tab.o: ch-exp.tab.c ch-lang.h $(defs_h) $(expression_h) \
1513 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1514 $(bfd_h) objfiles.h symfile.h
1515
1516 f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1517 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1518
1519 m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1520 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1521 $(bfd_h) objfiles.h symfile.h
1522
1523 ### end of the gdb Makefile.in.
This page took 0.067553 seconds and 4 git commands to generate.