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