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