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