Rename gdbarch_update() to gdbarch_update_p()
[deliverable/binutils-gdb.git] / gdb / Makefile.in
1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
2 # 1998, 1999, 2000 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 htmldir = $(prefix)/html
43 includedir = @includedir@
44
45 # This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
46 top_builddir = .
47
48 SHELL = @SHELL@
49 EXEEXT = @EXEEXT@
50
51 AWK = @AWK@
52 LN_S = @LN_S@
53
54 INSTALL = @INSTALL@
55 INSTALL_PROGRAM = @INSTALL_PROGRAM@
56 INSTALL_DATA = @INSTALL_DATA@
57
58 AR = @AR@
59 AR_FLAGS = qv
60 RANLIB = @RANLIB@
61 DLLTOOL = @DLLTOOL@
62 WINDRES = @WINDRES@
63 MIG = @MIG@
64
65 # Flags that describe where you can find the termcap library.
66 # This can be overridden in the host Makefile fragment file.
67 TERMCAP = @TERM_LIB@
68
69 # If you are compiling with GCC, make sure that either 1) You have the
70 # fixed include files where GCC can reach them, or 2) You use the
71 # -traditional flag. Otherwise the ioctl calls in inflow.c
72 # will be incorrectly compiled. The "fixincludes" script in the gcc
73 # distribution will fix your include files up.
74 CC=@CC@
75
76 # Directory containing source files.
77 srcdir = @srcdir@
78 VPATH = @srcdir@
79
80 YACC=@YACC@
81
82 YLWRAP = $(srcdir)/../ylwrap
83
84 # where to find makeinfo, preferably one designed for texinfo-2
85 MAKEINFO=makeinfo
86
87 MAKEHTML = texi2html
88
89 MAKEHTMLFLAGS = -glossary -menu -split_chapter
90
91 # Set this up with gcc if you have gnu ld and the loader will print out
92 # line numbers for undefined references.
93 #CC_LD=gcc -static
94 CC_LD=$(CC)
95
96 # Where is our "include" directory? Typically $(srcdir)/../include.
97 # This is essentially the header file directory for the library
98 # routines in libiberty.
99 INCLUDE_DIR = $(srcdir)/../include
100 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
101
102 # Where is the "-liberty" library? Typically in ../libiberty.
103 LIBIBERTY = ../libiberty/libiberty.a
104
105 # Configured by the --with-mmalloc option to configure.
106 MMALLOC = @MMALLOC@
107 MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
108
109 # We are using our own version of REGEX now to be consistent across
110 # machines.
111 REGEX = @REGEX@
112
113 # Where is the BFD library? Typically in ../bfd.
114 BFD_DIR = ../bfd
115 BFD = $(BFD_DIR)/libbfd.a
116 BFD_SRC = $(srcdir)/$(BFD_DIR)
117 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
118
119 # Where is the READLINE library? Typically in ../readline.
120 READLINE_DIR = ../readline
121 READLINE = $(READLINE_DIR)/libreadline.a
122 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
123 READLINE_CFLAGS = -I$(READLINE_SRC)/..
124
125 WARN_CFLAGS = @WARN_CFLAGS@
126 WERROR_CFLAGS = @WERROR_CFLAGS@
127 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
128 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
129
130 # Where is the INTL library? Typically in ../intl.
131 INTL_DIR = ../intl
132 INTL = @INTLLIBS@
133 INTL_DEPS = @INTLDEPS@
134 INTL_SRC = $(srcdir)/$(INTL_DIR)
135 INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
136
137 #
138 # MI sub directory definitons
139 #
140 SUBDIR_MI_OBS = \
141 mi-out.o mi-console.o \
142 mi-cmds.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
143 mi-cmd-disas.o \
144 mi-main.o mi-parse.o mi-getopt.o
145 SUBDIR_MI_SRCS = \
146 mi/mi-out.c mi/mi-console.c \
147 mi/mi-cmds.c \
148 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
149 mi/mi-cmd-disas.c \
150 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
151 SUBDIR_MI_DEPS =
152 SUBDIR_MI_INITS = \
153 mi/mi-cmds.c mi/mi-parse.c mi/mi-main.c
154 SUBDIR_MI_LDFLAGS=
155 SUBDIR_MI_CFLAGS= \
156 -DUI_OUT=1
157 SUBDIR_MI_ALL=
158 SUBDIR_MI_CLEAN=
159 SUBDIR_MI_INSTALL=
160 SUBDIR_MI_UNINSTALL=
161
162 #
163 # TUI sub directory definitions
164 #
165 SUBDIR_TUI_OBS = \
166 tui.o tuiData.o tuiSource.o tuiStack.o tuiIO.o \
167 tuiGeneralWin.o tuiLayout.o tuiWin.o tuiCommand.o \
168 tuiDisassem.o tuiSourceWin.o tuiRegs.o tuiDataWin.o
169 SUBDIR_TUI_SRCS = \
170 tui/tui.c tui/tuiData.c tui/tuiSource.c \
171 tui/tuiStack.c tui/tuiIO.c \
172 tui/tuiGeneralWin.c tui/tuiLayout.c \
173 tui/tuiWin.c tui/tuiCommand.c \
174 tui/tuiDisassem.c tui/tuiSourceWin.c \
175 tui/tuiRegs.c tui/tuiDataWin.c
176 SUBDIR_TUI_DEPS =
177 SUBDIR_TUI_INITS = \
178 $(SUBDIR_TUI_SRCS)
179 SUBDIR_TUI_LDFLAGS=
180 SUBDIR_TUI_CFLAGS= \
181 -DTUI=1 -I${srcdir}/tui
182 SUBDIR_TUI_ALL=
183 SUBDIR_TUI_CLEAN=
184 SUBDIR_TUI_INSTALL=
185 SUBDIR_TUI_UNINSTALL=
186
187
188
189 # Opcodes currently live in one of two places. Either they are in the
190 # opcode library, typically ../opcodes, or they are in a header file
191 # in INCLUDE_DIR.
192 # Where is the "-lopcodes" library, with (some of) the opcode tables and
193 # disassemblers?
194 OPCODES = ../opcodes/libopcodes.a
195 # Where are the other opcode tables which only have header file
196 # versions?
197 OP_INCLUDE = $(INCLUDE_DIR)/opcode
198 OPCODES_CFLAGS = -I$(OP_INCLUDE)
199
200 # The simulator is usually nonexistent; targets that include one
201 # should set this to list all the .o or .a files to be linked in.
202 SIM =
203
204 WIN32LIBS = @WIN32LIBS@
205
206 # Where is the TCL library? Typically in ../tcl.
207 LIB_INSTALL_DIR = $(libdir)
208 # This variable is needed when doing dynamic linking.
209 LIB_RUNTIME_DIR = $(libdir)
210 TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
211 TCL_CFLAGS = @TCLHDIR@
212 TCL_DEPS =
213 GDBTKLIBS = @GDBTKLIBS@
214 # Extra flags that the GDBTK files need:
215 GDBTK_CFLAGS = @GDBTK_CFLAGS@
216
217 # Where is the TK library? Typically in ../tk.
218 TK = @TK_BUILD_LIB_SPEC@
219 TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
220 TK_DEPS =
221
222 # Where is Itcl? Typically in ../itcl/itcl.
223 ITCL_CFLAGS = @ITCLHDIR@
224 ITCL = @ITCLLIB@
225 ITCL_DEPS = @ITCL_DEPS@
226
227 # Where is Itk? Typically in ../itcl/itk.
228 ITK_CFLAGS = @ITKHDIR@
229 ITK = @ITKLIB@
230 ITK_DEPS = @ITK_DEPS@
231
232 # Where is Tix? Typically in ../tix.
233 TIX_CFLAGS = @TIXHDIR@
234 TIX = @TIXLIB@
235 TIX_DEPS = @TIX_DEPS@
236
237 X11_CFLAGS = @TK_XINCLUDES@
238 X11_LDFLAGS =
239 X11_LIBS =
240
241 WIN32LDAPP = @WIN32LDAPP@
242
243 LIBGUI = @LIBGUI@
244 GUI_CFLAGS_X = @GUI_CFLAGS_X@
245 IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
246 SUBDIR_GDBTK_ALL= all-gdbtk
247 SUBDIR_GDBTK_CLEAN= clean-gdbtk
248 SUBDIR_GDBTK_INSTALL= install-gdbtk
249 SUBDIR_GDBTK_UNINSTALL=
250
251 CONFIG_OBS= @CONFIG_OBS@
252 CONFIG_SRCS= @CONFIG_SRCS@
253 CONFIG_DEPS= @CONFIG_DEPS@
254 CONFIG_INITS= @CONFIG_INITS@
255 CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
256 ENABLE_CFLAGS= @ENABLE_CFLAGS@
257 CONFIG_ALL= @CONFIG_ALL@
258 CONFIG_CLEAN= @CONFIG_CLEAN@
259 CONFIG_CLEAN= @CONFIG_CLEAN@
260 CONFIG_INSTALL = @CONFIG_INSTALL@
261 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
262
263 # -I. for config files.
264 # -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
265 # -I$(srcdir)/config for more generic config files.
266
267 # It is also possible that you will need to add -I/usr/include/sys if
268 # your system doesn't have fcntl.h in /usr/include (which is where it
269 # should be according to Posix).
270 DEFS = @DEFS@
271 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
272
273 # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
274 # from the config directory.
275 GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
276 #PROFILE_CFLAGS = -pg
277
278 # CFLAGS is specifically reserved for setting from the command line
279 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
280 CFLAGS = @CFLAGS@
281
282 # Need to pass this to testsuite for "make check". Probably should be
283 # consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
284 # so "make check" has the same result no matter where it is run.
285 CXXFLAGS = -g -O
286
287 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
288 INTERNAL_WARN_CFLAGS = \
289 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
290 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
291 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
292 $(INTL_CFLAGS) $(ENABLE_CFLAGS) \
293 $(GDB_WARN_CFLAGS)
294 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
295
296 # LDFLAGS is specifically reserved for setting from the command line
297 # when running make.
298
299 # Profiling options need to go here to work.
300 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
301 # and have it work; that's why CFLAGS is here.
302 INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS) @HLDFLAGS@
303 HLDENV = @HLDENV@
304
305 # If your system is missing alloca(), or, more likely, it's there but
306 # it doesn't work, then refer to libiberty.
307
308 # Libraries and corresponding dependencies for compiling gdb.
309 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
310 # TERMCAP comes after readline, since readline depends on it.
311 # MMALLOC comes after anything else that might want an allocation function.
312 # LIBIBERTY appears twice on purpose.
313 # If you have the Cygnus libraries installed,
314 # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
315 INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
316 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
317 -lmmalloc -lintl -liberty
318 CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
319 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
320 $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS)
321 CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
322 $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS)
323
324 ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
325 ADD_DEPS = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
326
327 VERSION = 5.0
328 DIST=gdb
329
330 LINT=/usr/5bin/lint
331 LINTFLAGS= $(BFD_CFLAGS)
332
333 RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
334 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
335 fi`
336
337 RUNTESTFLAGS=
338
339 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
340 # interface to the serial port. Hopefully if get ported to OS/2, VMS,
341 # etc., then there will be (as part of the C library or perhaps as
342 # part of libiberty) a POSIX interface. But at least for now the
343 # host-dependent makefile fragment might need to use something else
344 # besides ser-unix.o
345 SER_HARDWIRE = @SER_HARDWIRE@
346
347 # The `remote' debugging target is supported for most architectures,
348 # but not all (e.g. 960)
349 REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o
350
351 # This is remote-sim.o if a simulator is to be linked in.
352 SIM_OBS =
353
354 ANNOTATE_OBS = annotate.o
355
356 # Host and target-dependent makefile fragments come in here.
357 @host_makefile_frag@
358 @target_makefile_frag@
359 # End of host and target-dependent makefile fragments
360
361 # Possibly ignore the simulator. If the simulator is being ignored,
362 # these expand into SIM= and SIM_OBJ=, overriding the entries from
363 # target_makefile_frag
364 #
365 @IGNORE_SIM@
366 @IGNORE_SIM_OBS@
367
368 FLAGS_TO_PASS = \
369 "prefix=$(prefix)" \
370 "exec_prefix=$(exec_prefix)" \
371 "infodir=$(infodir)" \
372 "against=$(against)" \
373 "AR=$(AR)" \
374 "AR_FLAGS=$(AR_FLAGS)" \
375 "CC=$(CC)" \
376 "CFLAGS=$(CFLAGS)" \
377 "CHILLFLAGS=$(CHILLFLAGS)" \
378 "CHILL=$(CHILL)" \
379 "CHILL_LIB=$(CHILL_LIB)" \
380 "CXX=$(CXX)" \
381 "CXXFLAGS=$(CXXFLAGS)" \
382 "DLLTOOL=$(DLLTOOL)" \
383 "RANLIB=$(RANLIB)" \
384 "MAKEINFO=$(MAKEINFO)" \
385 "MAKEHTML=$(MAKEHTML)" \
386 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
387 "INSTALL=$(INSTALL)" \
388 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
389 "INSTALL_DATA=$(INSTALL_DATA)" \
390 "RUNTEST=$(RUNTEST)" \
391 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
392
393 # Flags that we pass when building the testsuite.
394
395 # empty for native, $(target_alias)/ for cross
396 target_subdir = @target_subdir@
397
398 CC_FOR_TARGET = ` \
399 if [ -f $${rootme}/../gcc/xgcc ] ; then \
400 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
401 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/; \
402 else \
403 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
404 fi; \
405 else \
406 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
407 echo $(CC); \
408 else \
409 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
410 fi; \
411 fi`
412
413 CXX = gcc
414 CXX_FOR_TARGET = ` \
415 if [ -f $${rootme}/../gcc/xgcc ] ; then \
416 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
417 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/; \
418 else \
419 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
420 fi; \
421 else \
422 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
423 echo $(CXX); \
424 else \
425 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
426 fi; \
427 fi`
428
429 CHILLFLAGS = $(CFLAGS)
430 CHILL = gcc
431 CHILL_FOR_TARGET = ` \
432 if [ -f $${rootme}/../gcc/Makefile ] ; then \
433 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
434 else \
435 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
436 echo $(CC); \
437 else \
438 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
439 fi; \
440 fi`
441 CHILL_LIB = ` \
442 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
443 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
444 $${rootme}/../gcc/ch/runtime/libchill.a; \
445 else \
446 echo -lchill; \
447 fi`
448
449 # The use of $$(x_FOR_TARGET) reduces the command line length by not
450 # duplicating the lengthy definition.
451 TARGET_FLAGS_TO_PASS = \
452 "prefix=$(prefix)" \
453 "exec_prefix=$(exec_prefix)" \
454 "against=$(against)" \
455 'CC=$$(CC_FOR_TARGET)' \
456 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
457 "CFLAGS=$(CFLAGS)" \
458 "CHILLFLAGS=$(CHILLFLAGS)" \
459 'CHILL=$$(CHILL_FOR_TARGET)' \
460 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
461 "CHILL_LIB=$(CHILL_LIB)" \
462 'CXX=$$(CXX_FOR_TARGET)' \
463 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
464 "CXXFLAGS=$(CXXFLAGS)" \
465 "INSTALL=$(INSTALL)" \
466 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
467 "INSTALL_DATA=$(INSTALL_DATA)" \
468 "MAKEINFO=$(MAKEINFO)" \
469 "MAKEHTML=$(MAKEHTML)" \
470 "RUNTEST=$(RUNTEST)" \
471 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
472
473 # All source files that go into linking GDB.
474 # Links made at configuration time should not be specified here, since
475 # SFILES is used in building the distribution archive.
476
477 SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \
478 buildsym.c c-exp.y c-lang.c c-typeprint.c c-valprint.c \
479 ch-exp.c ch-lang.c ch-typeprint.c ch-valprint.c coffread.c \
480 command.c complaints.c corefile.c cp-valprint.c dbxread.c \
481 demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \
482 event-loop.c event-top.c \
483 expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \
484 findvar.c regcache.c gdbarch.c arch-utils.c gdbtypes.c \
485 inf-loop.c infcmd.c inflow.c infrun.c language.c \
486 kod.c kod-cisco.c \
487 ui-out.c cli-out.c \
488 varobj.c wrapper.c \
489 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
490 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
491 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
492 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c \
493 scm-valprint.c source.c stabsread.c stack.c symfile.c \
494 symmisc.c symtab.c target.c thread.c top.c tracepoint.c \
495 typeprint.c utils.c valarith.c valops.c valprint.c values.c \
496 serial.c ser-unix.c mdebugread.c os9kread.c \
497 tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \
498 tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \
499 tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \
500 tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \
501 tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \
502 tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \
503 tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h \
504 tui/tui-file.h tui/tui-file.c \
505 ui-file.h ui-file.c
506
507 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
508
509 # "system" headers. Using these in dependencies is a rather personal
510 # choice. (-rich, summer 1993)
511 # (Why would we not want to depend on them? If one of these changes in a
512 # non-binary-compatible way, it is a real pain to remake the right stuff
513 # without these dependencies -kingdon, 13 Mar 1994)
514 getopt_h = $(INCLUDE_DIR)/getopt.h
515 floatformat_h = $(INCLUDE_DIR)/floatformat.h
516 bfd_h = $(BFD_DIR)/bfd.h
517 dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
518 remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
519
520 dcache_h = dcache.h
521 remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
522
523
524 readline_headers = \
525 $(READLINE_SRC)/chardefs.h \
526 $(READLINE_SRC)/history.h \
527 $(READLINE_SRC)/keymaps.h \
528 $(READLINE_SRC)/readline.h
529
530 udiheaders = \
531 $(srcdir)/29k-share/udi/udiproc.h \
532 $(srcdir)/29k-share/udi/udiphcfg.h \
533 $(srcdir)/29k-share/udi/udiphunix.h \
534 $(srcdir)/29k-share/udi/udiptcfg.h \
535 $(srcdir)/29k-share/udi/udipt29k.h \
536 $(srcdir)/29k-share/udi/udisoc.h
537
538 gdbcore_h = gdbcore.h $(bfd_h)
539
540 frame_h = frame.h
541 symtab_h = symtab.h bcache.h
542 gdbtypes_h = gdbtypes.h
543 expression_h = expression.h
544 value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
545
546 breakpoint_h = breakpoint.h $(frame_h) $(value_h)
547
548 command_h = command.h
549 gdbcmd_h = gdbcmd.h $(command_h)
550
551 call_cmds_h = call-cmds.h
552 xm_h = @xm_h@
553 tm_h = @tm_h@
554 nm_h = @nm_h@
555 defs_h = defs.h $(xm_h) $(tm_h) $(nm_h) config.status config.h gdbarch.h ui-file.h
556
557 top_h = top.h
558 inferior_h = inferior.h $(breakpoint_h)
559 tracepoint_h = tracepoint.h
560 ax_h = ax.h
561 event_loop_h = event-loop.h
562 event_top_h = event-top.h
563 inf_loop_h = inf-loop.h
564 remote_h = remote.h
565 version_h = version.h
566 ui_out_h = ui-out.h
567 cli_out_h = cli-out.h
568 arch_utils_h = arch-utils.h
569
570 # Header files that need to have srcdir added. Note that in the cases
571 # where we use a macro like $(gdbcmd_h), things are carefully arranged
572 # so that each .h file is listed exactly once (M-x tags-search works
573 # wrong if TAGS has files twice). Because this is tricky to get
574 # right, it is probably easiest just to list .h files here directly.
575
576 HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
577 dst.h environ.h $(gdbcmd_h) gdbcore.h \
578 gdb-stabs.h hpread.h $(inferior_h) language.h minimon.h monitor.h \
579 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
580 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
581 c-lang.h ch-lang.h f-lang.h \
582 jv-lang.h \
583 m2-lang.h \
584 complaints.h valprint.h \
585 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
586 nindy-share/block_io.h nindy-share/coff.h \
587 nindy-share/env.h nindy-share/stop.h \
588 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
589 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
590 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
591 dcache.h remote-utils.h top.h somsolib.h
592
593 # Header files that already have srcdir in them, or which are in objdir.
594
595 HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
596
597
598 # GDB "info" files, which should be included in their entirety
599 INFOFILES = gdb.info*
600
601 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
602
603 POSSLIBS = gnu-regex.c gnu-regex.h
604
605 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
606 # default their values the way we do for SER_HARDWIRE; in the future
607 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
608 # variables analogous to SER_HARDWIRE which get defaulted in this
609 # Makefile.in
610
611 DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
612 $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_OBS)
613
614 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
615 # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
616 # and it's more useful to see it in the .y file.
617 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
618 $(POSSLIBS)
619 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
620
621 COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o regcache.o \
622 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
623 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
624 expprint.o environ.o stack.o thread.o \
625 event-loop.o event-top.o inf-loop.o \
626 gdbarch.o arch-utils.o gdbtypes.o copying.o $(DEPFILES) \
627 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
628 kod.o kod-cisco.o \
629 gdb-events.o \
630 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
631 dbxread.o coffread.o elfread.o \
632 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
633 c-lang.o ch-exp.o ch-lang.o f-lang.o \
634 ui-out.o cli-out.o \
635 varobj.o wrapper.o \
636 jv-lang.o jv-valprint.o jv-typeprint.o \
637 m2-lang.o \
638 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
639 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
640 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
641 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o \
642 ui-file.o tui-file.o
643
644 OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
645
646 TSOBS = inflow.o
647
648 NTSOBS = standalone.o
649
650 NTSSTART = kdb-start.o
651
652 SUBDIRS = @SUBDIRS@
653
654 # For now, shortcut the "configure GDB for fewer languages" stuff.
655 YYFILES = c-exp.tab.c \
656 jv-exp.tab.c \
657 f-exp.tab.c m2-exp.tab.c
658 YYOBJ = c-exp.tab.o \
659 jv-exp.tab.o \
660 f-exp.tab.o m2-exp.tab.o
661
662 # Things which need to be built when making a distribution.
663
664 DISTSTUFF = $(YYFILES)
665
666 # Prevent Sun make from putting in the machine type. Setting
667 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
668 .c.o:
669 $(CC) -c $(INTERNAL_CFLAGS) $<
670
671 all: gdb$(EXEEXT) $(CONFIG_ALL)
672 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
673
674 installcheck:
675
676 # The check target can not use subdir_do, because subdir_do does not
677 # use TARGET_FLAGS_TO_PASS.
678 check: force
679 @if [ -f testsuite/Makefile ]; then \
680 rootme=`pwd`; export rootme; \
681 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
682 cd testsuite; \
683 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
684 else true; fi
685
686 info dvi install-info clean-info html install-html: force
687 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
688
689 gdb.z:gdb.1
690 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
691 pack gdb.t ; rm -f gdb.t
692 mv gdb.t.z gdb.z
693
694 # Traditionally "install" depends on "all". But it may be useful
695 # not to; for example, if the user has made some trivial change to a
696 # source file and doesn't care about rebuilding or just wants to save the
697 # time it takes for make to check that all is up to date.
698 # install-only is intended to address that need.
699 install: all install-only
700 install-only: $(CONFIG_INSTALL)
701 transformed_name=`t='$(program_transform_name)'; \
702 echo gdb | sed -e $$t` ; \
703 if test "x$$transformed_name" = x; then \
704 transformed_name=gdb ; \
705 else \
706 true ; \
707 fi ; \
708 $(srcdir)/../mkinstalldirs $(bindir) ; \
709 $(INSTALL_PROGRAM) gdb$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \
710 $(srcdir)/../mkinstalldirs $(man1dir) ; \
711 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
712 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
713
714 uninstall: force $(CONFIG_UNINSTALL)
715 transformed_name=`t='$(program_transform_name)'; \
716 echo gdb | sed -e $$t` ; \
717 if test "x$$transformed_name" = x; then \
718 transformed_name=gdb ; \
719 else \
720 true ; \
721 fi ; \
722 rm -f $(bindir)/$$transformed_name$(EXEEXT) $(man1dir)/$$transformed_name.1
723 rm -rf $(datadir)/gdbtcl
724 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
725
726 # We do this by grepping through sources. If that turns out to be too slow,
727 # maybe we could just require every .o file to have an initialization routine
728 # of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
729 #
730 # Formatting conventions: The name of the _initialize_* routines must start
731 # in column zero, and must not be inside #if.
732 #
733 # Note that the set of files with init functions might change, or the names
734 # of the functions might change, so this files needs to depend on all the
735 # object files that will be linked into gdb.
736 #
737 # FIXME: There are 2 problems with this approach. First, if the INIT_FILES
738 # list includes a file twice (because of some mistake somewhere else)
739 # the _initialize_* function will be included twice in init.c. Second,
740 # init.c may force unnecessary files to be linked in. Like for instance
741 # tui-file.c.
742 #
743
744 INIT_FILES = $(OBS) $(TSOBS) $(CONFIG_INITS)
745 init.c: $(INIT_FILES)
746 @echo Making init.c
747 @rm -f init.c-tmp init.l-tmp
748 @-echo $(INIT_FILES) | \
749 tr ' ' '\012' | \
750 sed -e '/^Onindy.o/d' \
751 -e '/^init.o/d' \
752 -e '/^nindy.o/d' \
753 -e '/ttyflush.o/d' \
754 -e '/xdr_ld.o/d' \
755 -e '/xdr_ptrace.o/d' \
756 -e '/xdr_rdb.o/d' \
757 -e '/udr.o/d' \
758 -e '/udip2soc.o/d' \
759 -e '/udi2go32.o/d' \
760 -e '/version.o/d' \
761 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
762 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
763 -e 's/\.o/.c/' \
764 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
765 while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \
766 sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' > init.l-tmp
767 @echo '/* Do not modify this file. */' >>init.c-tmp
768 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
769 @echo '#include "defs.h"' >>init.c-tmp
770 @echo '#include "call-cmds.h"' >>init.c-tmp
771 @sed -e 's/\(.*\)/extern initialize_file_ftype \1;/' <init.l-tmp >>init.c-tmp
772 @echo 'void' >>init.c-tmp
773 @echo 'initialize_all_files (void)' >>init.c-tmp
774 @echo '{' >>init.c-tmp
775 @sed -e 's/\(.*\)/ \1 ();/' <init.l-tmp >>init.c-tmp
776 @echo '}' >>init.c-tmp
777 @rm init.l-tmp
778 @mv init.c-tmp init.c
779
780 .PRECIOUS: init.c
781
782 init.o: init.c $(defs_h) $(call_cmds_h)
783
784 # Removing the old gdb first works better if it is running, at least on SunOS.
785 gdb$(EXEEXT): main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
786 rm -f gdb$(EXEEXT)
787 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) -o gdb$(EXEEXT) main.o libgdb.a $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
788
789 nlm: force
790 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
791
792 # Create a library of the gdb object files and build GDB by linking
793 # against that.
794 #
795 # init.o is very important. It pulls in the rest of GDB.
796 LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o
797 libgdb.a: $(LIBGDB_OBS)
798 -rm -f libgdb.a
799 $(AR) q libgdb.a $(LIBGDB_OBS)
800 $(RANLIB) libgdb.a
801
802 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
803 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
804 #load ./init.c $(SFILES)
805 #unload $(srcdir)/c-exp.y
806 #unload $(srcdir)/jv-exp.y
807 #unload $(srcdir)/m2-exp.y
808 #unload vx-share/*.h
809 #unload nindy-share/[A-Z]*
810 #load c-exp.tab.c
811 #load jv-exp.tab.c
812 #load m2-exp.tab.c
813 #load copying.c version.c
814 #load ../opcodes/libopcodes.a
815 #load ../libiberty/libiberty.a
816 #load ../bfd/libbfd.a
817 #load ../readline/libreadline.a
818 #load ../mmalloc/libmmalloc.a
819 #load ../intl/libintl.a
820 #load -ltermcap
821 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
822 echo "Load .c corresponding to:" $(DEPFILES)
823
824
825 # A Mach 3.0 program to force gdb back to command level
826
827 stop-gdb: stop-gdb.o
828 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
829 stop-gdb.o $(CLIBS) $(LOADLIBES)
830
831 # This is useful when debugging GDB, because some Unix's don't let you run GDB
832 # on itself without copying the executable. So "make gdb1" will make
833 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
834 # Removing gdb1 before the copy is the right thing if gdb1 is open
835 # in another process.
836 gdb1$(EXEEXT): gdb$(EXEEXT)
837 rm -f gdb1$(EXEEXT)
838 cp gdb$(EXEEXT) gdb1$(EXEEXT)
839
840 # FIXME. These are not generated by "make depend" because they only are there
841 # for some machines.
842 # But these rules don't do what we want; we want to hack the foo.o: tm.h
843 # dependency to do the right thing.
844 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
845 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
846 xm-news1000.h: xm-news.h
847 xm-i386-sv32.h: xm-i386.h
848 tm-i386gas.h: tm-i386.h
849 xm-sun4os4.h: xm-sparc.h
850 tm-sun4os4.h: tm-sparc.h
851 xm-vaxult.h: xm-vax.h
852 xm-vaxbsd.h: xm-vax.h
853
854 kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
855 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
856 -lc $(CLIBS)
857
858 # Put the proper machine-specific files first, so M-. on a machine
859 # specific routine gets the one for the correct machine. (FIXME: those
860 # files go in twice; we should be removing them from the main list).
861
862 # TAGS depends on all the files that go into it so you can rebuild TAGS
863 # with `make TAGS' and not have to say `rm TAGS' first.
864
865 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
866 @echo Making TAGS
867 @etags $(srcdir)/$(TM_FILE) \
868 $(srcdir)/$(XM_FILE) \
869 $(srcdir)/$(NAT_FILE) \
870 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
871 echo $(srcdir)/$$i ; \
872 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
873 echo $$i ; \
874 done) | sed -e 's/\.o$$/\.c/'` \
875 `find $(srcdir)/config -name '*.h' -print`
876
877 tags: TAGS
878
879 clean mostlyclean: $(CONFIG_CLEAN)
880 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
881 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp
882 rm -f init.c version.c
883 rm -f gdb$(EXEEXT) core make.log
884 rm -f gdb[0-9]$(EXEEXT)
885
886 # This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
887 # I believe this is wrong; the makefile standards for distclean just
888 # describe removing files; the only sort of "re-create a distribution"
889 # functionality described is if the distributed files are unmodified.
890 distclean: clean
891 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
892 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
893 rm -f y.output yacc.acts yacc.tmp y.tab.h
894 rm -f config.log config.cache
895 rm -f Makefile
896
897 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
898 realclean: maintainer-clean
899
900 local-maintainer-clean:
901 @echo "This command is intended for maintainers to use;"
902 @echo "it deletes files that may require special tools to rebuild."
903 rm -f c-exp.tab.c \
904 jv-exp.tab \
905 f-exp.tab.c m2-exp.tab.c
906 rm -f TAGS $(INFOFILES)
907 rm -f $(YYFILES)
908 rm -f nm.h tm.h xm.h config.status
909
910 do-maintainer-clean:
911 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
912 subdir_do
913
914 diststuff: $(DISTSTUFF)
915 cd doc; $(MAKE) $(MFLAGS) diststuff
916
917 subdir_do: force
918 @for i in $(DODIRS); do \
919 if [ -f ./$$i/Makefile ] ; then \
920 if (cd ./$$i; \
921 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
922 else exit 1 ; fi ; \
923 else true ; fi ; \
924 done
925
926 Makefile: Makefile.in config.status @frags@
927 $(SHELL) config.status
928
929 config.h: stamp-h ; @true
930 stamp-h: config.in config.status
931 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
932
933 config.status: configure
934 $(SHELL) config.status --recheck
935
936 force:
937
938 # Documentation!
939 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
940 doc/refcard.dvi:
941 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
942
943 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
944 doc/refcard.ps:
945 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
946
947 # GDB MANUAL: TeX dvi file
948 doc/gdb.dvi:
949 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
950
951 # GDB MANUAL: info file
952 doc/gdb.info:
953 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
954
955 # Make copying.c from COPYING
956 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \
957 $(srcdir)/COPYING $(srcdir)/copying.awk
958 awk -f $(srcdir)/copying.awk \
959 < $(srcdir)/COPYING > $(srcdir)/copying.tmp
960 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
961
962 version.c: Makefile
963 rm -f version.c
964 echo '#include "version.h"' >> version.c
965 echo 'const char version[] = "$(VERSION)";' >> version.c
966 echo 'const char host_name[] = "$(host_alias)";' >> version.c
967 echo 'const char target_name[] = "$(target_alias)";' >> version.c
968 version.o: version.c $(version_h)
969
970 # c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
971 # in srcdir, then compiled in objdir to c-exp.tab.o.
972
973 # If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
974 # would sometimes re-write it into $(srcdir)/c-exp.tab.c.
975
976 # Remove bogus decls for malloc/realloc/free which conflict with everything
977 # else. Strictly speaking c-exp.tab.c should therefore depend on
978 # Makefile.in, but that was a pretty big annoyance.
979 c-exp.tab.o: c-exp.tab.c
980 c-exp.tab.c: c-exp.y
981 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS)
982 -sed -e '/extern.*malloc/d' \
983 -e '/extern.*realloc/d' \
984 -e '/extern.*free/d' \
985 -e '/include.*malloc.h/d' \
986 -e 's/malloc/xmalloc/g' \
987 -e 's/realloc/xrealloc/g' \
988 -e '/^#line.*y.tab.c/d' \
989 < c-exp.tmp > c-exp.new
990 -rm c-exp.tmp
991 mv c-exp.new ./c-exp.tab.c
992
993 jv-exp.tab.o: jv-exp.tab.c
994 jv-exp.tab.c: jv-exp.y
995 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/jv-exp.y y.tab.c jv-exp.tmp -- $(YFLAGS)
996 -sed -e '/extern.*malloc/d' \
997 -e '/extern.*realloc/d' \
998 -e '/extern.*free/d' \
999 -e '/include.*malloc.h/d' \
1000 -e 's/malloc/xmalloc/g' \
1001 -e 's/realloc/xrealloc/g' \
1002 -e '/^#line.*y.tab.c/d' \
1003 < jv-exp.tmp > jv-exp.new
1004 -rm jv-exp.tmp
1005 mv jv-exp.new ./jv-exp.tab.c
1006
1007 f-exp.tab.o: f-exp.tab.c
1008 f-exp.tab.c: f-exp.y c-exp.tab.c
1009 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS)
1010 -sed -e '/extern.*malloc/d' \
1011 -e '/extern.*realloc/d' \
1012 -e '/extern.*free/d' \
1013 -e '/include.*malloc.h/d' \
1014 -e 's/malloc/xmalloc/g' \
1015 -e 's/realloc/xrealloc/g' \
1016 -e '/^#line.*y.tab.c/d' \
1017 < f-exp.tmp > f-exp.new
1018 -rm f-exp.tmp
1019 mv f-exp.new ./f-exp.tab.c
1020
1021 # m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
1022 # in srcdir, then compiled in objdir to m2-exp.tab.o.
1023 # Remove bogus decls for malloc/realloc/free which conflict with everything
1024 # else.
1025 m2-exp.tab.o: m2-exp.tab.c
1026 m2-exp.tab.c: m2-exp.y
1027 $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/m2-exp.y y.tab.c m2-exp.tmp -- $(YFLAGS)
1028 -sed -e '/extern.*malloc/d' \
1029 -e '/extern.*realloc/d' \
1030 -e '/extern.*free/d' \
1031 -e '/include.*malloc.h/d' \
1032 -e 's/malloc/xmalloc/g' \
1033 -e 's/realloc/xrealloc/g' \
1034 -e '/^#line.*y.tab.c/d' \
1035 < m2-exp.tmp > m2-exp.new
1036 -rm m2-exp.tmp
1037 mv m2-exp.new ./m2-exp.tab.c
1038
1039 # These files are updated atomically, so make never has to remove them
1040 .PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
1041 .PRECIOUS: jv-exp.tab.c
1042
1043 lint: $(LINTFILES)
1044 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1045 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
1046
1047 gdb.cxref: $(SFILES)
1048 cxref -I. $(SFILES) >gdb.cxref
1049
1050 force_update:
1051
1052 # GNU Make has an annoying habit of putting *all* the Makefile variables
1053 # into the environment, unless you include this target as a circumvention.
1054 # Rumor is that this will be fixed (and this target can be removed)
1055 # in GNU Make 4.0.
1056 .NOEXPORT:
1057
1058 # GNU Make 3.63 has a different problem: it keeps tacking command line
1059 # overrides onto the definition of $(MAKE). This variable setting
1060 # will remove them.
1061 MAKEOVERRIDES=
1062
1063 ## This is ugly, but I don't want GNU make to put these variables in
1064 ## the environment. Older makes will see this as a set of targets
1065 ## with no dependencies and no actions.
1066 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1067
1068 ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
1069 29k-share/udi/udi2go32.c \
1070 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
1071 altos-xdep.c arm-convert.s \
1072 arm-linux-nat.c arm-linux-tdep.c arm-tdep.c arm-xdep.c \
1073 coff-solib.c convex-tdep.c convex-xdep.c \
1074 core-sol2.c core-regset.c core-aout.c corelow.c \
1075 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
1076 go32-nat.c h8300-tdep.c h8500-tdep.c \
1077 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
1078 hp-psymtab-read.c hp-symtab-read.c \
1079 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \
1080 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
1081 i387-tdep.c \
1082 i386-linux-tdep.c \
1083 i960-tdep.c \
1084 ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
1085 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
1086 lynx-nat.c m3-nat.c \
1087 m68k-tdep.c \
1088 m88k-nat.c m88k-tdep.c mac-nat.c \
1089 mcore-tdep.c \
1090 mips-nat.c \
1091 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
1092 nindy-share/Onindy.c nindy-share/nindy.c \
1093 nindy-share/ttyflush.c nindy-tdep.c \
1094 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
1095 somread.c somsolib.c $(HPREAD_SOURCE) \
1096 ppc-linux-nat.c ppc-linux-tdep.c \
1097 procfs.c pyr-tdep.c pyr-xdep.c \
1098 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
1099 remote-es.c remote-hms.c remote-mips.c \
1100 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
1101 remote-st.c remote-utils.c dcache.c \
1102 remote-udi.c remote-vx.c remote-vx29k.c \
1103 rs6000-nat.c rs6000-tdep.c \
1104 ser-go32.c ser-pipe.c ser-ocd.c ser-tcp.c \
1105 sh-tdep.c solib.c sparc-nat.c \
1106 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
1107 symm-tdep.c symm-nat.c \
1108 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
1109 vax-tdep.c \
1110 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
1111 win32-nat.c \
1112 xcoffread.c xcoffsolib.c z8k-tdep.c
1113
1114 udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
1115 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1116
1117 udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1118 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1119
1120 udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
1121 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1122
1123 a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1124
1125 a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1126
1127 alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1128
1129 alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1130 $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
1131
1132 # OBSOLETE altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1133
1134 annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1135
1136 arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1137 gdb_string.h
1138
1139 arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) target.h $(value_h) \
1140 $(gdbtypes_h) $(floatformat_h)
1141
1142 arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1143 $(gdbcore_h)
1144
1145 bcache.o: bcache.c bcache.h $(defs_h)
1146
1147 blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1148 objfiles.h symfile.h target.h
1149
1150 breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1151 $(inferior_h) language.h target.h gdbthread.h gdb_string.h \
1152 gdb-events.h
1153
1154 buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1155 objfiles.h symfile.h $(symtab_h) gdb_string.h
1156
1157 c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1158 language.h parser-defs.h $(symtab_h)
1159
1160 c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1161 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1162 target.h typeprint.h $(value_h) gdb_string.h
1163
1164 c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1165 language.h $(symtab_h) valprint.h $(value_h)
1166
1167 f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1168 language.h parser-defs.h $(symtab_h) gdb_string.h
1169
1170 f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1171 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1172 target.h typeprint.h $(value_h) gdb_string.h
1173
1174 f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1175 language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1176
1177 ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
1178
1179 ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1180 language.h parser-defs.h $(symtab_h)
1181
1182 ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1183 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1184 target.h $(value_h) typeprint.h gdb_string.h
1185
1186 ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1187 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1188
1189 coff-solib.o: coff-solib.c $(defs_h)
1190
1191 coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1192 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1193 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1194 gdb_string.h
1195
1196 command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1197 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h gdb_wait.h
1198
1199 complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1200
1201 # OBSOLETE convex-tdep.o: convex-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) \
1202 # OBSOLETE $(gdbcore_h) $(inferior_h)
1203
1204 # OBSOLETE convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1205 # OBSOLETE $(inferior_h)
1206
1207 # Provide explicit rule/dependency - works for more makes.
1208 copying.o: $(srcdir)/copying.c $(defs_h) $(gdbcmd_h)
1209 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c
1210
1211 core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1212
1213 core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1214 $(inferior_h) target.h gdb_string.h
1215
1216 core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1217 $(inferior_h) target.h gdb_string.h
1218
1219 corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1220 $(inferior_h) target.h language.h gdb_string.h
1221
1222 corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1223 target.h gdbthread.h gdb_string.h
1224
1225 cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1226 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
1227
1228 dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
1229
1230 dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1231 complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1232 $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
1233 symfile.h $(symtab_h) target.h gdb_string.h
1234
1235 delta68-nat.o: delta68-nat.c $(defs_h)
1236
1237 demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1238
1239 dink32-rom.o: dink32-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1240 $(inferior_h) target.h serial.h terminal.h symfile.h
1241
1242 dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
1243
1244 dstread.o: dstread.c gdb_string.h
1245
1246 dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1247 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1248 $(symtab_h) gdb_string.h
1249
1250 dwarf2read.o: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
1251 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1252 $(symtab_h) gdb_string.h
1253
1254 elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1255 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h \
1256 $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
1257
1258 environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
1259
1260 eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1261 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1262 gdb_string.h
1263
1264 event-loop.o: event-loop.c $(defs_h) $(top_h) $(event_loop_h) $(event_top_h)
1265
1266 event-top.o: event-top.c top.h $(readline_headers) \
1267 $(defs_h) $(inferior_h) $(event_loop_h) $(event_top_h) terminal.h \
1268 $(gdbcmd_h) target.h
1269
1270 inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(inf_loop_h) $(event_loop_h) \
1271 $(event_top_h)
1272
1273 exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1274 target.h language.h gdb_string.h
1275
1276 expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1277 language.h parser-defs.h $(symtab_h) $(value_h)
1278
1279 findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1280 gdb_string.h
1281
1282 regcache.o: regcache.c $(defs_h) $(inferior_h) target.h
1283
1284 fork-child.o: fork-child.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1285 $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
1286
1287 # FIXME: cagney/2000-03-27: Post 5.0 this link code can be removed.
1288 # It should now be possible to run GDBtk from the build directory
1289 # without the link in place.
1290 all-gdbtk:
1291 @if test ! -d gdbtcl/images ; then \
1292 if test "$(LN_S)" = "ln -s" ; then \
1293 echo linking ${srcdir}/gdbtk/library to gdbtcl ; \
1294 rm -f gdbtcl ; \
1295 test ! -r gdbtcl || exit 1 ; \
1296 $(LN_S) ${srcdir}/gdbtk/library gdbtcl ; \
1297 else \
1298 echo "Warning:" ; \
1299 echo "Unable to link ${srcdir}/gdbtk/library to gdbtcl." ; \
1300 echo "You will need to do a \`make install' before you are" ; \
1301 echo "able to run the GUI." ; \
1302 fi ; \
1303 else true ; fi
1304
1305 clean-gdbtk:
1306 rm -f gdbtcl
1307
1308 install-gdbtk:
1309 $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl ; \
1310 $(SHELL) $(srcdir)/../mkinstalldirs \
1311 $(datadir)/gdbtcl/images \
1312 $(datadir)/gdbtcl/images2 ; \
1313 $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl/help \
1314 $(datadir)/gdbtcl/help/images \
1315 $(datadir)/gdbtcl/help/trace ; \
1316 cd $(srcdir)/gdbtk/library ; \
1317 for i in *.tcl *.ith *.itb images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html help/trace/*.html help/trace/index.toc help/images/*.gif; \
1318 do \
1319 $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \
1320 done ;
1321
1322 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
1323 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
1324
1325 gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c \
1326 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1327 $(symtab_h) $(inferior_h) $(command_h) \
1328 $(bfd_h) symfile.h objfiles.h target.h gdb_string.h $(tracepoint_h) \
1329 $(top_h)
1330 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1331 $(ITK_CFLAGS) $(TIX_CFLAGS) \
1332 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1333 $(srcdir)/gdbtk/generic/gdbtk.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1334
1335 gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
1336 $(srcdir)/gdbtk/generic/gdbtk.h \
1337 $(defs_h) $(symtab_h) $(inferior_h) \
1338 $(command_h) $(bfd_h) $(top_h) symfile.h objfiles.h target.h \
1339 gdb_string.h $(tracepoint_h) $(frame_h) source.h
1340 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1341 $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1342 $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
1343 -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1344
1345 gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c \
1346 $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1347 $(symtab_h) $(inferior_h) $(command_h) \
1348 $(bfd_h) symfile.h objfiles.h target.h gdb_string.h $(tracepoint_h)
1349 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1350 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1351 $(srcdir)/gdbtk/generic/gdbtk-hooks.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1352
1353 gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c \
1354 $(srcdir)/gdbtk/generic/gdbtk.h \
1355 $(defs_h) $(value_h) varobj.h
1356 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1357 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1358 $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1359
1360 gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c \
1361 $(srcdir)/gdbtk/generic/gdbtk-wrapper.h
1362 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(GDBTK_CFLAGS)\
1363 $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1364
1365 v850ice.o: v850ice.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
1366 $(frame_h) $(breakpoint_h) $(gdbcore_h) $(value_h) symfile.h \
1367 gdb_string.h target.h objfiles.h
1368 $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1369 $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1370 $(srcdir)/v850ice.c
1371
1372 v850-tdep.o: v850-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(obstack_h) \
1373 $(target_h) $(value_h) $(bfd_h) $(gdb_string_h) $(gdbcore_h) \
1374 $(symfile_h) $(arch_utils_h)
1375
1376 tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \
1377 $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) target.h \
1378 language.h gdb_string.h $(readline_headers) $(remote_h)
1379
1380 gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h)
1381
1382 arch-utils.o: arch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \
1383 $(arch_utils_h)
1384
1385 gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1386 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1387 $(value_h) gdb_string.h wrapper.h
1388
1389 go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) gdb_wait.h $(gdbcore_h) \
1390 $(command_h) $(floatformat_h) target.h
1391
1392 gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
1393 exc_request_U.h msg_U.h gnu-nat.h
1394
1395 h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1396
1397 h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1398 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1399 $(value_h)
1400
1401 hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1402
1403 hppa-tdep.o: hppa-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1404 $(inferior_h) objfiles.h symfile.h target.h
1405
1406 hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1407
1408 hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1409
1410 i386gnu-nat.o: gnu-nat.h
1411
1412 i386-tdep.o: i386-tdep.c $(defs_h) gdb_string.h $(frame_h) \
1413 $(inferior_h) $(gdbcore_h) target.h $(floatformat_h) \
1414 $(symtab_h) $(gdbcmd_h) $(command_h) $(arch_utils_h)
1415
1416 i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1417 language.h $(gdbcore_h) $(floatformat_h) target.h
1418
1419 i386b-nat.o: i386b-nat.c $(defs_h)
1420
1421 i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1422
1423 i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
1424
1425 i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1426
1427 i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1428
1429 i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1430 $(inferior_h) language.h target.h
1431
1432 i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1433 $(symtab_h) symfile.h objfiles.h
1434
1435 i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
1436 $(value_h)
1437
1438 i386v4-nat.o: i386v4-nat.c $(defs_h)
1439
1440 i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1441 $(inferior_h) language.h
1442
1443 i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1444 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
1445
1446 ia64-linux-nat.o: ia64-linux-nat.c $(defs_h) $(inferior_h) $(target_h) \
1447 $(gdbcore_h)
1448
1449 ia64-linux-tdep.o: ia64-linux-tdep.c $(defs_h) $(arch_utils_h)
1450
1451 ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) symfile.h $(gdbcore_h) \
1452 $(arch_utils_h) $(floatformat_h) objfiles.h $(INCLUDE_DIR)/elf/common.h
1453
1454 infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1455 $(inferior_h) target.h language.h gdb_string.h
1456
1457 inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1458 signals.h target.h terminal.h gdbthread.h gdb_string.h
1459
1460 infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1461 gdb_string.h gdb_wait.h $(command_h)
1462
1463 infrun.o: infrun.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1464 $(inferior_h) target.h gdbthread.h gdb_string.h $(event_loop_h) \
1465 $(event_top_h) target.h
1466
1467 inftarg.o: inftarg.c gdb_wait.h $(defs_h) $(gdbcore_h) $(inferior_h) \
1468 target.h terminal.h $(command_h)
1469
1470 irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1471 irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1472 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
1473 language.h gdb_string.h
1474
1475 isi-xdep.o: isi-xdep.c
1476
1477 jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1478 $(expression_h) parser-defs.h language.h symfile.h objfiles.h \
1479 gdb_string.h $(value_h) c-lang.h jv-lang.h $(gdbcore_h)
1480
1481 jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1482 $(value_h) $(INCLUDE_DIR)/demangle.h jv-lang.h gdb_string.h \
1483 typeprint.h c-lang.h
1484
1485 jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1486 $(expression_h) $(value_h) $(INCLUDE_DIR)/demangle.h valprint.h \
1487 language.h jv-lang.h c-lang.h gdbcore.h annotate.h
1488
1489 kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) target.h gdb_string.h kod.h
1490
1491 kod-cisco.o: kod-cisco.c $(defs_h) gdb_string.h kod.h
1492
1493 language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1494 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1495 target.h $(value_h) gdb_string.h
1496
1497 lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1498 target.h
1499
1500 m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1501 language.h m2-lang.h parser-defs.h $(symtab_h)
1502
1503 m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1504 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1505 $(value_h) gdb_string.h
1506
1507 m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1508 valprint.h m2-lang.h
1509
1510 m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1511 gdb_wait.h $(gdbcmd_h) $(gdbcore_h)
1512
1513 m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1514 $(gdbcore_h) gdb_string.h
1515
1516 m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1517
1518 m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1519 $(language_h) $(gdbcore_h) $(floatformat_h) target.h
1520
1521 m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1522
1523 m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1524
1525 mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
1526
1527 main.o: main.c top.h $(defs_h) gdb_string.h $(event_loop_h) $(srcdir)/tui/tui-file.h
1528
1529 maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1530 $(expression_h) objfiles.h symfile.h
1531
1532 mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) $(symtab_h)
1533
1534 mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) target.h monitor.h \
1535 gdb_string.h
1536
1537 mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1538 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1539 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1540 gdb_string.h
1541
1542 mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1543
1544 os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1545 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1546 objfiles.h stabsread.h symfile.h $(symtab_h) \
1547 target.h gdb_string.h
1548
1549 mem-break.o: mem-break.c $(defs_h)
1550
1551 minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1552 $(symtab_h) gdb_string.h
1553
1554 mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1555
1556 mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1557 $(arch_utils_h) \
1558 $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
1559
1560 mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1561 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1562 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1563 gdb_string.h
1564
1565 mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1566
1567 monitor.o: monitor.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1568 $(inferior_h) target.h serial.h terminal.h gdb_string.h
1569
1570 news-xdep.o: news-xdep.c
1571
1572 Onindy.o: nindy-share/Onindy.c gdb_wait.h nindy-share/block_io.h \
1573 nindy-share/env.h
1574 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1575
1576 nindy.o: nindy-share/nindy.c gdb_wait.h nindy-share/block_io.h \
1577 nindy-share/env.h
1578 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1579
1580 nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1581 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1582 gdb_string.h
1583
1584 ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1585
1586 ttyflush.o: nindy-share/ttyflush.c
1587 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1588
1589 nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
1590
1591 ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1592
1593 objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1594 $(symtab_h) gdb_string.h $(breakpoint_h)
1595
1596 osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1597 objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
1598
1599 somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1600 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1601
1602 somsolib.o: somsolib.c $(defs_h)
1603
1604 pa64solib.o: pa64solib.c $(defs_h)
1605
1606 hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1607 hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1608 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1609 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1610
1611 # FIXME!!!
1612 hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1613 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1614
1615 hp-psymtab-read.o: hp-psymtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1616 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1617
1618 hp-symtab-read.o: hp-symtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1619 $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1620 # END FIXME!!!
1621
1622 parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1623 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1624 gdb_string.h
1625
1626 ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) gdb_string.h $(frame_h) \
1627 $(inferior_h) $(bfd_h) symfile.h target.h gdb_wait.h $(gdbcmd_h) \
1628 objfiles.h gdb-stabs.h serial.h ocd.h
1629
1630 ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdbcore_h) $(frame_h) \
1631 $(inferior_h) target.h
1632
1633 ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1634 target.h ppc-tdep.h
1635
1636 ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1637 $(inferior_h) target.h serial.h terminal.h
1638
1639 printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1640 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1641 symfile.h $(symtab_h) target.h gdb_string.h
1642
1643 # FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1644 # match output format strings.
1645 procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1646 target.h gdb_string.h gdbthread.h proc-utils.h
1647 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1648
1649 proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) proc-utils.h
1650
1651 proc-events.o: proc-events.c $(defs_h)
1652
1653 proc-flags.o: proc-flags.c $(defs_h)
1654
1655 proc-why.o: proc-why.c $(defs_h) proc-utils.h
1656
1657 sol-thread.o: sol-thread.c $(defs_h) gdbthread.h target.h $(inferior_h) \
1658 $(gdbcmd_h)
1659
1660 linux-thread.o: linux-thread.c $(breakpoint_h) $(gdbcmd_h) gdb_wait.h \
1661 gdbthread.h $(gdbcore_h) $(inferior_h) target.h $(defs_h)
1662
1663 # OBSOLETE pyr-tdep.o: pyr-tdep.c $(defs_h)
1664
1665 # OBSOLETE pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1666
1667 gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
1668
1669 remote-adapt.o: remote-adapt.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1670 $(inferior_h) target.h terminal.h gdb_string.h
1671
1672 remote-array.o: remote-array.c gdb_wait.h $(defs_h) $(gdbcore_h) target.h \
1673 gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h) \
1674 $(version_h)
1675
1676 remote-rdi.o: remote-rdi.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1677 $(inferior_h) gdb_string.h
1678
1679 rdi-share/libangsd.a: force
1680 @dir=rdi-share; \
1681 if [ -f ./$${dir}/Makefile ] ; then \
1682 r=`pwd`; export r; \
1683 srcroot=`cd $(srcdir); pwd`; export srcroot; \
1684 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1685 else \
1686 true; \
1687 fi
1688
1689 remote-d10v.o: remote-d10v.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1690 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1691
1692 remote-rdp.o: remote-rdp.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1693 $(inferior_h) gdb_string.h
1694
1695 remote-bug.o: remote-bug.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1696 $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
1697
1698 # FIXME: For the SH target, remote-e7000 contains numerous -Wformat
1699 # warnings. Since the fixes involve modifications to the code that
1700 # handles the SH remote protocol the changes need to be tested against
1701 # an SH board before they can be committed. cagney 1999-09-01.
1702 remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1703 gdb_wait.h serial.h gdb_string.h
1704 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1705
1706 remote-eb.o: remote-eb.c gdb_wait.h $(srcdir)/config/a29k/tm-a29k.h \
1707 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1708 gdb_string.h
1709
1710 remote-es.o: remote-es.c $(bfd_h) gdb_wait.h $(command_h) $(defs_h) \
1711 $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
1712
1713 remote-hms.o: remote-hms.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1714 $(inferior_h) serial.h target.h terminal.h gdb_string.h
1715
1716 remote-mips.o: remote-mips.c gdb_wait.h $(defs_h) $(gdbcmd_h) \
1717 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1718
1719 remote-mm.o: remote-mm.c $(bfd_h) gdb_wait.h $(defs_h) $(inferior_h) \
1720 minimon.h target.h terminal.h gdb_string.h
1721
1722 remote-nindy.o: remote-nindy.c $(floatformat_h) gdb_wait.h $(command_h) \
1723 $(defs_h) $(gdbcore_h) $(inferior_h) \
1724 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1725 symfile.h
1726
1727 remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) gdb_wait.h \
1728 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1729 objfiles.h gdb-stabs.h gdb_string.h
1730
1731 remote-sds.o: remote-sds.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1732 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1733
1734 remote-sim.o: remote-sim.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1735 $(inferior_h) target.h terminal.h gdb_string.h \
1736 $(INCLUDE_DIR)/callback.h
1737
1738 remote-st.o: remote-st.c gdb_wait.h $(defs_h) $(gdbcore_h) serial.h \
1739 target.h gdb_string.h
1740
1741 remote-udi.o: remote-udi.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1742 $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
1743
1744 remote-vx.o: remote-vx.c gdb_wait.h complaints.h $(defs_h) $(gdbcmd_h) \
1745 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1746 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1747 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1748 gdb_string.h
1749
1750 remote-vx29k.o: remote-vx29k.c gdb_wait.h complaints.h $(defs_h) $(gdbcmd_h) \
1751 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1752 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1753 vx-share/xdr_rdb.h gdb_string.h
1754
1755 ocd.o: ocd.c ocd.h $(gdbcore_h) gdb_string.h $(frame_h) $(inferior_h) \
1756 $(bfd_h) symfile.h target.h gdb_wait.h $(gdbcmd_h) objfiles.h \
1757 gdb-stabs.h $(dcache_h) serial.h
1758
1759 remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1760 $(inferior_h) $(remote_utils_h) gdb_string.h
1761
1762 remote.o: remote.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1763 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h \
1764 $(event_loop_h) $(event_top_h) $(remote_h) $(inf_loop_h)
1765
1766 remote-nrom.o: remote-nrom.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1767 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1768
1769 rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1770 $(inferior_h) target.h serial.h terminal.h
1771
1772 rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1773 xcoffsolib.h
1774
1775 rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1776 target.h xcoffsolib.h ppc-tdep.h
1777
1778 scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1779 scm-lang.h scm-tags.h
1780
1781 scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1782 scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
1783
1784 scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h \
1785 scm-lang.h valprint.h $(gdbcore_h)
1786
1787 ser-go32.o: ser-go32.c $(defs_h) serial.h
1788
1789 ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1790
1791 ser-ocd.o: ser-ocd.c $(defs_h) serial.h signals.h gdb_string.h
1792
1793 ser-pipe.o: ser-pipe.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
1794
1795 ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
1796
1797 ser-unix.o: ser-unix.c $(defs_h) serial.h ser-unix.h
1798
1799 serial.o: serial.c $(defs_h) serial.h gdb_string.h
1800
1801 sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1802 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1803 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(arch_utils_h)
1804
1805 sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1806 $(inferior_h) target.h serial.h terminal.h $(arch_utils_h)
1807
1808 mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1809 $(inferior_h) target.h serial.h terminal.h
1810
1811 solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1812 objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
1813
1814 source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1815 $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
1816 gdb_string.h source.h
1817
1818 sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1819 target.h
1820
1821 sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1822 $(inferior_h) objfiles.h symfile.h target.h gdb_string.h \
1823 $(arch_utils_h)
1824
1825 sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1826
1827 dsrec.o: dsrec.c $(defs_h) srec.h
1828
1829 stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1830 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1831 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1832 gdb_string.h
1833
1834 stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1835 language.h target.h gdb_string.h
1836
1837 ui-file.o: ui-file.c $(defs_h) ui-file.h
1838 tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(srcdir)/tui/tui-file.h
1839 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c
1840
1841 ax-general.o: ax-general.c $(ax_h) $(defs_h) $(value_h)
1842 ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) symfile.h $(gdbtypes_h) \
1843 $(value_h) $(expression_h) $(command_h) $(ax_h) $(gdbcmd_h) ax-gdb.h
1844
1845 sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1846
1847 sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1848
1849 symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1850 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1851 language.h objfiles.h symfile.h $(symtab_h) target.h \
1852 gdb_string.h
1853
1854 symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1855
1856 symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1857
1858 symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1859 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1860 $(symtab_h) gdb_string.h
1861
1862 symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1863 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1864 gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1865 gdb_string.h
1866
1867 # OBSOLETE tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1868 # OBSOLETE $(symtab_h)
1869
1870 tic80-tdep.o: tic80-tdep.c $(defs_h)
1871
1872 target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1873 objfiles.h symfile.h target.h gdb_string.h
1874
1875 thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h) target.h
1876
1877 top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1878 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
1879 $(remote_utils_h) gdb_string.h $(event_loop_h) $(event_top_h) $(version_h)
1880
1881 typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1882 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1883 $(value_h) gdb_string.h
1884
1885 ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1886
1887 ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1888
1889 umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1890
1891 utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1892 language.h signals.h target.h terminal.h $(readline_headers) \
1893 gdb_string.h $(event_loop_h) $(event_top_h)
1894
1895 valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1896 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1897 gdb_string.h
1898
1899 valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1900 gdb_string.h
1901
1902 valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1903 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1904 $(value_h) gdb_string.h valprint.h
1905
1906 values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1907 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
1908 gdb_string.h scm-lang.h
1909
1910 vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1911
1912 w65-tdep.o : w65-tdep.c $(gdbcore_h)
1913
1914 win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1915 gdb_string.h
1916
1917 xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1918 vx-share/vxWorks.h vx-share/xdr_ld.h
1919 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1920
1921 xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1922 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1923 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1924
1925 xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1926 vx-share/vxWorks.h vx-share/xdr_rdb.h
1927 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1928
1929 xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1930 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1931 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1932 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1933 $(symtab_h) partial-stab.h gdb_string.h
1934
1935 xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1936
1937 # FIXME: z8k-tdep.c calls _initialize_gdbtypes(). Since that isn't
1938 # declared -Wimplicit fails. It should be using the GDBARCH framework.
1939 # cagney 1999-09-02.
1940 z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
1941 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h) $(value_h)
1942 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1943
1944 c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1945 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1946 $(bfd_h) objfiles.h symfile.h
1947
1948 jv-exp.tab.o: jv-exp.tab.c jv-lang.h $(defs_h) $(expression_h) \
1949 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1950 $(bfd_h) objfiles.h symfile.h
1951
1952 f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1953 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1954
1955 m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1956 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1957 $(bfd_h) objfiles.h symfile.h
1958
1959 gdb-events.o: gdb-events.c gdb-events.h $(defs_h) $(gdbcmd_h)
1960
1961 ui-out.o: ui-out.c $(defs_h) $(ui_out_h) expression.h language.h
1962 cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h)
1963 varobj.o: varobj.c $(defs_h) $(frame_h) $(value_h) \
1964 $(language_h) valprint.h varobj.h wrapper.h
1965 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1966 wrapper.o: wrapper.c $(defs_h) $(frame_h) $(value_h) wrapper.h
1967
1968 #
1969 # MI dependencies
1970 #
1971 # Need to explicitly specify the compile rule as make will do nothing
1972 # or try to compile the object file into the mi directory.
1973
1974 mi_cmds_h = $(srcdir)/mi/mi-cmds.h
1975 mi_out_h = $(srcdir)/mi/mi-out.h
1976 mi_parse_h = $(srcdir)/mi/mi-parse.h
1977 mi_getopt_h = $(srcdir)/mi/mi-getopt.h
1978 mi_console_h = $(srcdir)/mi/mi-console.h
1979
1980 mi-cmds.o: $(srcdir)/mi/mi-cmds.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h)
1981 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmds.c
1982 mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c $(defs_h) $(top_h) $(mi_cmds_h) \
1983 $(ui_out_h)
1984 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-var.c
1985 mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c $(defs_h) $(top_h) $(mi_cmds_h) \
1986 $(ui_out_h) $(frame_h) $(value_h) $(target_h)
1987 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-stack.c
1988 mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c $(defs_h) $(mi_cmds_h) \
1989 $(ui_out_h) $(mi_getopt_h)
1990 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-break.c
1991 mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c $(defs_h) $(mi_cmds_h) \
1992 $(ui_out_h) $(value_h) $(target_h)
1993 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-disas.c
1994 mi-main.o: $(srcdir)/mi/mi-main.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h) \
1995 $(mi_console_h) $(mi_getopt_h) $(event_loop_h) $(event_top_h) \
1996 $(mi_getopt_h)
1997 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/mi/mi-main.c
1998 mi-out.o: $(srcdir)/mi/mi-out.c $(defs_h) $(mi_out_h) $(ui_out_h)
1999 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-out.c
2000 mi-console.o: $(srcdir)/mi/mi-console.c $(mi_out_h) $(defs_h)
2001 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-console.c
2002 mi-parse.o: $(srcdir)/mi/mi-parse.c $(defs_h) $(mi_parse_h) $(mi_cmds_h)
2003 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-parse.c
2004 mi-getopt.o: $(srcdir)/mi/mi-getopt.c $(mi_getopt_h) $(defs_h)
2005 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-getopt.c
2006
2007 #
2008 # TUI dependencies
2009 #
2010 # Need to explicitly specify the compile rule as make will do nothing
2011 # or try to compile the object file into the mi directory.
2012
2013 tui.o: $(srcdir)/tui/tui.c \
2014 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2015 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiIO.h \
2016 $(srcdir)/tui/tuiRegs.h $(srcdir)/tui/tuiWin.h
2017 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tui.c
2018 tuiCommand.o: $(srcdir)/tui/tuiCommand.c \
2019 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2020 $(srcdir)/tui/tuiWin.h $(srcdir)/tui/tuiIO.h
2021 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiCommand.c
2022 tuiData.o: $(srcdir)/tui/tuiData.c \
2023 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h
2024 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiData.c
2025 tuiDataWin.o: $(srcdir)/tui/tuiDataWin.c \
2026 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2027 $(srcdir)/tui/tuiRegs.h
2028 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiDataWin.c
2029 tuiDisassem.o: $(srcdir)/tui/tuiDisassem.c \
2030 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2031 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiSourceWin.h \
2032 $(srcdir)/tui/tuiStack.h
2033 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiDisassem.c
2034 tuiGeneralWin.o: $(srcdir)/tui/tuiGeneralWin.c \
2035 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2036 $(srcdir)/tui/tuiGeneralWin.h
2037 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiGeneralWin.c
2038 tuiIO.o: $(srcdir)/tui/tuiIO.c \
2039 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2040 $(srcdir)/tui/tuiIO.h $(srcdir)/tui/tuiCommand.h \
2041 $(srcdir)/tui/tuiWin.h
2042 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiIO.c
2043 tuiLayout.o: $(srcdir)/tui/tuiLayout.c \
2044 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2045 $(srcdir)/tui/tuiGeneralWin.h $(srcdir)/tui/tuiStack.h \
2046 $(srcdir)/tui/tuiRegs.h $(srcdir)/tui/tuiDisassem.h
2047 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiLayout.c
2048 tuiRegs.o: $(srcdir)/tui/tuiRegs.c \
2049 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2050 $(srcdir)/tui/tuiLayout.h $(srcdir)/tui/tuiWin.h
2051 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiRegs.c
2052 tuiSource.o: $(srcdir)/tui/tuiSource.c \
2053 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2054 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h \
2055 $(srcdir)/tui/tuiSource.h
2056 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiSource.c
2057 tuiSourceWin.o: $(srcdir)/tui/tuiSourceWin.c \
2058 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2059 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h \
2060 $(srcdir)/tui/tuiSource.h $(srcdir)/tui/tuiDisassem.h
2061 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiSourceWin.c
2062 tuiStack.o: $(srcdir)/tui/tuiStack.c \
2063 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2064 $(srcdir)/tui/tuiStack.h $(srcdir)/tui/tuiSourceWin.h
2065 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiStack.c
2066 tuiWin.o: $(srcdir)/tui/tuiWin.c \
2067 $(srcdir)/tui/tui.h $(srcdir)/tui/tuiData.h \
2068 $(srcdir)/tui/tuiGeneralWin.h $(srcdir)/tui/tuiStack.h \
2069 $(srcdir)/tui/tuiSourceWin.h $(srcdir)/tui/tuiDataWin.h
2070 $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/tui/tuiWin.c
2071
2072 ### end of the gdb Makefile.in.
This page took 0.072433 seconds and 4 git commands to generate.