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