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