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