]>
Commit | Line | Data |
---|---|---|
b2100910 AC |
1 | # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, |
2 | # 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, | |
3 | # Inc. | |
c906108c SS |
4 | |
5 | # This file is part of GDB. | |
6 | ||
7 | # This program is free software; you can redistribute it and/or modify | |
8 | # it under the terms of the GNU General Public License as published by | |
9 | # the Free Software Foundation; either version 2 of the License, or | |
10 | # (at your option) any later version. | |
3cf93817 | 11 | # |
c906108c SS |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | # GNU General Public License for more details. | |
3cf93817 | 16 | # |
c906108c SS |
17 | # You should have received a copy of the GNU General Public License |
18 | # along with this program; if not, write to the Free Software | |
19 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
20 | ||
21 | prefix = @prefix@ | |
22 | exec_prefix = @exec_prefix@ | |
23 | ||
24 | host_alias = @host_alias@ | |
25 | target_alias = @target_alias@ | |
26 | program_transform_name = @program_transform_name@ | |
27 | bindir = @bindir@ | |
28 | libdir = @libdir@ | |
29 | tooldir = $(libdir)/$(target_alias) | |
30 | ||
31 | datadir = @datadir@ | |
32 | mandir = @mandir@ | |
33 | man1dir = $(mandir)/man1 | |
34 | man2dir = $(mandir)/man2 | |
35 | man3dir = $(mandir)/man3 | |
36 | man4dir = $(mandir)/man4 | |
37 | man5dir = $(mandir)/man5 | |
38 | man6dir = $(mandir)/man6 | |
39 | man7dir = $(mandir)/man7 | |
40 | man8dir = $(mandir)/man8 | |
41 | man9dir = $(mandir)/man9 | |
42 | infodir = @infodir@ | |
085dd6e6 | 43 | htmldir = $(prefix)/html |
c906108c SS |
44 | includedir = @includedir@ |
45 | ||
46 | # This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT. | |
47 | top_builddir = . | |
48 | ||
49 | SHELL = @SHELL@ | |
50 | EXEEXT = @EXEEXT@ | |
51 | ||
7a292a7a | 52 | AWK = @AWK@ |
b3a90332 | 53 | LN_S = @LN_S@ |
7a292a7a | 54 | |
c906108c SS |
55 | INSTALL = @INSTALL@ |
56 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |
57 | INSTALL_DATA = @INSTALL_DATA@ | |
58 | ||
72bdd927 AC |
59 | DESTDIR = |
60 | ||
c906108c SS |
61 | AR = @AR@ |
62 | AR_FLAGS = qv | |
63 | RANLIB = @RANLIB@ | |
64 | DLLTOOL = @DLLTOOL@ | |
65 | WINDRES = @WINDRES@ | |
b9f21955 | 66 | MIG = @MIG@ |
c906108c | 67 | |
c906108c SS |
68 | # If you are compiling with GCC, make sure that either 1) You have the |
69 | # fixed include files where GCC can reach them, or 2) You use the | |
70 | # -traditional flag. Otherwise the ioctl calls in inflow.c | |
71 | # will be incorrectly compiled. The "fixincludes" script in the gcc | |
72 | # distribution will fix your include files up. | |
73 | CC=@CC@ | |
74 | ||
75 | # Directory containing source files. | |
76 | srcdir = @srcdir@ | |
77 | VPATH = @srcdir@ | |
78 | ||
79 | YACC=@YACC@ | |
80 | ||
3cf93817 | 81 | # This is used to rebuild ada-lex.c from ada-lex.l. If the program is |
6d3e79c6 AS |
82 | # not defined, but ada-lex.c is present, compilation will continue, |
83 | # possibly with a warning. | |
84 | FLEX = flex | |
85 | ||
c906108c SS |
86 | YLWRAP = $(srcdir)/../ylwrap |
87 | ||
88 | # where to find makeinfo, preferably one designed for texinfo-2 | |
89 | MAKEINFO=makeinfo | |
90 | ||
085dd6e6 JM |
91 | MAKEHTML = texi2html |
92 | ||
93 | MAKEHTMLFLAGS = -glossary -menu -split_chapter | |
94 | ||
c906108c SS |
95 | # Set this up with gcc if you have gnu ld and the loader will print out |
96 | # line numbers for undefined references. | |
97 | #CC_LD=gcc -static | |
98 | CC_LD=$(CC) | |
99 | ||
100 | # Where is our "include" directory? Typically $(srcdir)/../include. | |
101 | # This is essentially the header file directory for the library | |
102 | # routines in libiberty. | |
103 | INCLUDE_DIR = $(srcdir)/../include | |
104 | INCLUDE_CFLAGS = -I$(INCLUDE_DIR) | |
105 | ||
106 | # Where is the "-liberty" library? Typically in ../libiberty. | |
107 | LIBIBERTY = ../libiberty/libiberty.a | |
108 | ||
c906108c SS |
109 | # Where is the BFD library? Typically in ../bfd. |
110 | BFD_DIR = ../bfd | |
111 | BFD = $(BFD_DIR)/libbfd.a | |
112 | BFD_SRC = $(srcdir)/$(BFD_DIR) | |
113 | BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC) | |
114 | ||
115 | # Where is the READLINE library? Typically in ../readline. | |
116 | READLINE_DIR = ../readline | |
117 | READLINE = $(READLINE_DIR)/libreadline.a | |
118 | READLINE_SRC = $(srcdir)/$(READLINE_DIR) | |
119 | READLINE_CFLAGS = -I$(READLINE_SRC)/.. | |
120 | ||
121 | WARN_CFLAGS = @WARN_CFLAGS@ | |
104c1213 | 122 | WERROR_CFLAGS = @WERROR_CFLAGS@ |
d4f3574e SS |
123 | GDB_WARN_CFLAGS = $(WARN_CFLAGS) |
124 | GDB_WERROR_CFLAGS = $(WERROR_CFLAGS) | |
c906108c SS |
125 | |
126 | # Where is the INTL library? Typically in ../intl. | |
127 | INTL_DIR = ../intl | |
128 | INTL = @INTLLIBS@ | |
129 | INTL_DEPS = @INTLDEPS@ | |
130 | INTL_SRC = $(srcdir)/$(INTL_DIR) | |
131 | INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC) | |
132 | ||
234b45d4 KB |
133 | # Where is the ICONV library? This can be empty if libc has iconv. |
134 | LIBICONV = @LIBICONV@ | |
135 | ||
030292b7 DJ |
136 | # Did the user give us a --with-sysroot option? |
137 | TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@ | |
138 | TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@ | |
139 | ||
d318976c FN |
140 | # |
141 | # CLI sub directory definitons | |
142 | # | |
143 | SUBDIR_CLI_OBS = \ | |
f02df580 | 144 | cli-dump.o \ |
4a8f6654 | 145 | cli-decode.o cli-script.o cli-cmds.o cli-setshow.o cli-utils.o \ |
0fac0b41 | 146 | cli-logging.o \ |
4389a95a | 147 | cli-interp.o |
d318976c | 148 | SUBDIR_CLI_SRCS = \ |
f02df580 | 149 | cli/cli-dump.c \ |
12cf3f1b | 150 | cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \ |
0fac0b41 | 151 | cli/cli-logging.c \ |
4389a95a | 152 | cli/cli-interp.c \ |
12cf3f1b | 153 | cli/cli-utils.c |
d318976c | 154 | SUBDIR_CLI_DEPS = |
d318976c FN |
155 | SUBDIR_CLI_LDFLAGS= |
156 | SUBDIR_CLI_CFLAGS= | |
157 | SUBDIR_CLI_ALL= | |
158 | SUBDIR_CLI_CLEAN= | |
159 | SUBDIR_CLI_INSTALL= | |
160 | SUBDIR_CLI_UNINSTALL= | |
161 | ||
fb40c209 AC |
162 | # |
163 | # MI sub directory definitons | |
164 | # | |
165 | SUBDIR_MI_OBS = \ | |
166 | mi-out.o mi-console.o \ | |
c04e0a08 | 167 | mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \ |
30e221b4 | 168 | mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o \ |
4389a95a | 169 | mi-interp.o \ |
fb40c209 AC |
170 | mi-main.o mi-parse.o mi-getopt.o |
171 | SUBDIR_MI_SRCS = \ | |
172 | mi/mi-out.c mi/mi-console.c \ | |
c04e0a08 | 173 | mi/mi-cmds.c mi/mi-cmd-env.c \ |
fb40c209 | 174 | mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \ |
30e221b4 | 175 | mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \ |
4389a95a | 176 | mi/mi-interp.c \ |
fb40c209 AC |
177 | mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c |
178 | SUBDIR_MI_DEPS = | |
fb40c209 AC |
179 | SUBDIR_MI_LDFLAGS= |
180 | SUBDIR_MI_CFLAGS= \ | |
b4df4f68 | 181 | -DMI_OUT=1 |
b3a90332 AC |
182 | SUBDIR_MI_ALL= |
183 | SUBDIR_MI_CLEAN= | |
e56ac5c3 AC |
184 | SUBDIR_MI_INSTALL= |
185 | SUBDIR_MI_UNINSTALL= | |
fb40c209 | 186 | |
ed952ac5 AC |
187 | # |
188 | # TUI sub directory definitions | |
189 | # | |
190 | SUBDIR_TUI_OBS = \ | |
d7b2e967 AC |
191 | tui-command.o \ |
192 | tui-data.o \ | |
193 | tui-disasm.o \ | |
194 | tui-file.o tui.o \ | |
195 | tui-hooks.o \ | |
021e7609 | 196 | tui-interp.o \ |
d7b2e967 AC |
197 | tui-io.o \ |
198 | tui-layout.o \ | |
199 | tui-out.o \ | |
200 | tui-regs.o \ | |
201 | tui-source.o \ | |
202 | tui-stack.o \ | |
203 | tui-win.o \ | |
204 | tui-windata.o \ | |
205 | tui-wingeneral.o \ | |
206 | tui-winsource.o | |
ed952ac5 | 207 | SUBDIR_TUI_SRCS = \ |
d7b2e967 AC |
208 | tui/tui-command.c \ |
209 | tui/tui-data.c \ | |
210 | tui/tui-disasm.c \ | |
211 | tui/tui-file.c \ | |
212 | tui/tui-hooks.c \ | |
021e7609 | 213 | tui/tui-interp.c \ |
d7b2e967 AC |
214 | tui/tui-io.c \ |
215 | tui/tui-layout.c \ | |
216 | tui/tui-out.c \ | |
217 | tui/tui-regs.c \ | |
218 | tui/tui-source.c \ | |
219 | tui/tui-stack.c \ | |
220 | tui/tui-win.c \ | |
221 | tui/tui-windata.c \ | |
222 | tui/tui-wingeneral.c \ | |
223 | tui/tui-winsource.c \ | |
224 | tui/tui.c | |
ed952ac5 | 225 | SUBDIR_TUI_DEPS = |
ed952ac5 AC |
226 | SUBDIR_TUI_LDFLAGS= |
227 | SUBDIR_TUI_CFLAGS= \ | |
228 | -DTUI=1 -I${srcdir}/tui | |
229 | SUBDIR_TUI_ALL= | |
230 | SUBDIR_TUI_CLEAN= | |
231 | SUBDIR_TUI_INSTALL= | |
232 | SUBDIR_TUI_UNINSTALL= | |
233 | ||
234 | ||
235 | ||
c906108c SS |
236 | # Opcodes currently live in one of two places. Either they are in the |
237 | # opcode library, typically ../opcodes, or they are in a header file | |
238 | # in INCLUDE_DIR. | |
239 | # Where is the "-lopcodes" library, with (some of) the opcode tables and | |
240 | # disassemblers? | |
460e6ec3 AC |
241 | OPCODES_DIR = ../opcodes |
242 | OPCODES_SRC = $(srcdir)/$(OPCODES_DIR) | |
243 | OPCODES = $(OPCODES_DIR)/libopcodes.a | |
c906108c SS |
244 | # Where are the other opcode tables which only have header file |
245 | # versions? | |
246 | OP_INCLUDE = $(INCLUDE_DIR)/opcode | |
247 | OPCODES_CFLAGS = -I$(OP_INCLUDE) | |
248 | ||
249 | # The simulator is usually nonexistent; targets that include one | |
250 | # should set this to list all the .o or .a files to be linked in. | |
251 | SIM = | |
252 | ||
cd0fc7c3 SS |
253 | WIN32LIBS = @WIN32LIBS@ |
254 | ||
3fc11d3e JM |
255 | # Where is the TCL library? Typically in ../tcl. |
256 | LIB_INSTALL_DIR = $(libdir) | |
257 | # This variable is needed when doing dynamic linking. | |
258 | LIB_RUNTIME_DIR = $(libdir) | |
033afc63 | 259 | TCL = @TCL_CC_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@ |
3fc11d3e | 260 | TCL_CFLAGS = @TCLHDIR@ |
3fc11d3e JM |
261 | GDBTKLIBS = @GDBTKLIBS@ |
262 | # Extra flags that the GDBTK files need: | |
263 | GDBTK_CFLAGS = @GDBTK_CFLAGS@ | |
264 | ||
265 | # Where is the TK library? Typically in ../tk. | |
266 | TK = @TK_BUILD_LIB_SPEC@ | |
267 | TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@ | |
3fc11d3e JM |
268 | |
269 | # Where is Itcl? Typically in ../itcl/itcl. | |
270 | ITCL_CFLAGS = @ITCLHDIR@ | |
271 | ITCL = @ITCLLIB@ | |
3fc11d3e JM |
272 | |
273 | # Where is Itk? Typically in ../itcl/itk. | |
274 | ITK_CFLAGS = @ITKHDIR@ | |
275 | ITK = @ITKLIB@ | |
3fc11d3e | 276 | |
3fc11d3e JM |
277 | X11_CFLAGS = @TK_XINCLUDES@ |
278 | X11_LDFLAGS = | |
279 | X11_LIBS = | |
280 | ||
281 | WIN32LDAPP = @WIN32LDAPP@ | |
282 | ||
3fc11d3e JM |
283 | LIBGUI = @LIBGUI@ |
284 | GUI_CFLAGS_X = @GUI_CFLAGS_X@ | |
285 | IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X) | |
4226a5a5 | 286 | |
f0b743a9 KS |
287 | # The version of gdbtk we're building. This should be kept |
288 | # in sync with GDBTK_VERSION and friends in gdbtk.h. | |
289 | GDBTK_VERSION = 1.0 | |
290 | GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION) | |
291 | ||
d1c3b63a KS |
292 | # Gdbtk requires an absolute path to the source directory or |
293 | # the testsuite won't run properly. | |
294 | GDBTK_SRC_DIR = @GDBTK_SRC_DIR@ | |
295 | ||
4226a5a5 | 296 | SUBDIR_GDBTK_OBS = \ |
5412f5f3 | 297 | gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-interp.o \ |
ecb9ce7e | 298 | gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o |
4226a5a5 | 299 | SUBDIR_GDBTK_SRCS = \ |
ecb9ce7e | 300 | gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \ |
5412f5f3 | 301 | gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c gdbtk-interp.c \ |
ecb9ce7e | 302 | gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \ |
f15ab4a7 AC |
303 | gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c \ |
304 | gdbtk/generic/gdbtk-main.c | |
4226a5a5 | 305 | SUBDIR_GDBTK_DEPS = \ |
b2a1bd4f | 306 | $(LIBGUI) $(ITCL_DEPS) $(ITK_DEPS) $(TK_DEPS) $(TCL_DEPS) |
4226a5a5 FN |
307 | SUBDIR_GDBTK_LDFLAGS= |
308 | SUBDIR_GDBTK_CFLAGS= -DGDBTK | |
f15ab4a7 AC |
309 | SUBDIR_GDBTK_ALL= all-gdbtk |
310 | SUBDIR_GDBTK_CLEAN= clean-gdbtk | |
e56ac5c3 | 311 | SUBDIR_GDBTK_INSTALL= install-gdbtk |
f15ab4a7 | 312 | SUBDIR_GDBTK_UNINSTALL= uninstall-gdbtk |
c906108c | 313 | |
fb40c209 AC |
314 | CONFIG_OBS= @CONFIG_OBS@ |
315 | CONFIG_SRCS= @CONFIG_SRCS@ | |
316 | CONFIG_DEPS= @CONFIG_DEPS@ | |
fb40c209 | 317 | CONFIG_LDFLAGS = @CONFIG_LDFLAGS@ |
c906108c | 318 | ENABLE_CFLAGS= @ENABLE_CFLAGS@ |
b3a90332 AC |
319 | CONFIG_ALL= @CONFIG_ALL@ |
320 | CONFIG_CLEAN= @CONFIG_CLEAN@ | |
321 | CONFIG_CLEAN= @CONFIG_CLEAN@ | |
e56ac5c3 AC |
322 | CONFIG_INSTALL = @CONFIG_INSTALL@ |
323 | CONFIG_UNINSTALL = @CONFIG_UNINSTALL@ | |
c906108c SS |
324 | |
325 | # -I. for config files. | |
f77b92bf | 326 | # -I$(srcdir) for gdb internal headers. |
c906108c SS |
327 | # -I$(srcdir)/config for more generic config files. |
328 | ||
329 | # It is also possible that you will need to add -I/usr/include/sys if | |
330 | # your system doesn't have fcntl.h in /usr/include (which is where it | |
331 | # should be according to Posix). | |
332 | DEFS = @DEFS@ | |
0fbb3da7 | 333 | GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config -DLOCALEDIR="\"$(prefix)/share/locale\"" $(DEFS) |
c906108c SS |
334 | |
335 | # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS | |
336 | # from the config directory. | |
337 | GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS) | |
d28f9cdf DJ |
338 | |
339 | PROFILE_CFLAGS = @PROFILE_CFLAGS@ | |
c906108c SS |
340 | |
341 | # CFLAGS is specifically reserved for setting from the command line | |
342 | # when running make. I.E. "make CFLAGS=-Wmissing-prototypes". | |
1decb323 | 343 | CFLAGS = @CFLAGS@ |
c906108c SS |
344 | |
345 | # Need to pass this to testsuite for "make check". Probably should be | |
346 | # consistent with top-level Makefile.in and gdb/testsuite/Makefile.in | |
347 | # so "make check" has the same result no matter where it is run. | |
348 | CXXFLAGS = -g -O | |
349 | ||
350 | # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros. | |
104c1213 JM |
351 | INTERNAL_WARN_CFLAGS = \ |
352 | $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \ | |
c906108c | 353 | $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \ |
9175c9a3 | 354 | $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \ |
f5dbc56d | 355 | $(INTL_CFLAGS) $(ENABLE_CFLAGS) \ |
e48f66e4 | 356 | $(GDB_WARN_CFLAGS) |
d4f3574e | 357 | INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS) |
c906108c SS |
358 | |
359 | # LDFLAGS is specifically reserved for setting from the command line | |
360 | # when running make. | |
697f7479 | 361 | LDFLAGS = @LDFLAGS@ |
c906108c SS |
362 | |
363 | # Profiling options need to go here to work. | |
364 | # I think it's perfectly reasonable for a user to set -pg in CFLAGS | |
365 | # and have it work; that's why CFLAGS is here. | |
d28f9cdf DJ |
366 | # PROFILE_CFLAGS is _not_ included, however, because we use monstartup. |
367 | INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS) | |
c906108c | 368 | |
c906108c SS |
369 | # If your system is missing alloca(), or, more likely, it's there but |
370 | # it doesn't work, then refer to libiberty. | |
371 | ||
372 | # Libraries and corresponding dependencies for compiling gdb. | |
373 | # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs. | |
c906108c SS |
374 | # LIBIBERTY appears twice on purpose. |
375 | # If you have the Cygnus libraries installed, | |
376 | # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS=' | |
377 | INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \ | |
287c1a40 | 378 | $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \ |
9175c9a3 | 379 | -lintl -liberty |
c906108c | 380 | CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \ |
287c1a40 | 381 | $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \ |
234b45d4 | 382 | $(LIBICONV) \ |
9175c9a3 | 383 | $(LIBIBERTY) $(WIN32LIBS) |
c906108c | 384 | CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \ |
9175c9a3 | 385 | $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) |
c906108c | 386 | |
f77b92bf MK |
387 | ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) |
388 | ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES) | |
c906108c | 389 | |
c906108c SS |
390 | DIST=gdb |
391 | ||
392 | LINT=/usr/5bin/lint | |
5565b556 | 393 | LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \ |
9175c9a3 | 394 | $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \ |
5565b556 | 395 | $(INTL_CFLAGS) |
c906108c SS |
396 | |
397 | RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \ | |
398 | echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \ | |
399 | fi` | |
400 | ||
401 | RUNTESTFLAGS= | |
402 | ||
403 | # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX | |
404 | # interface to the serial port. Hopefully if get ported to OS/2, VMS, | |
405 | # etc., then there will be (as part of the C library or perhaps as | |
406 | # part of libiberty) a POSIX interface. But at least for now the | |
407 | # host-dependent makefile fragment might need to use something else | |
408 | # besides ser-unix.o | |
6688f7e9 | 409 | SER_HARDWIRE = @SER_HARDWIRE@ |
c906108c SS |
410 | |
411 | # The `remote' debugging target is supported for most architectures, | |
412 | # but not all (e.g. 960) | |
449092f6 | 413 | REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o |
c906108c SS |
414 | |
415 | # This is remote-sim.o if a simulator is to be linked in. | |
416 | SIM_OBS = | |
417 | ||
c906108c SS |
418 | # Host and target-dependent makefile fragments come in here. |
419 | @host_makefile_frag@ | |
420 | @target_makefile_frag@ | |
421 | # End of host and target-dependent makefile fragments | |
422 | ||
3cf93817 RM |
423 | # Possibly ignore the simulator. If the simulator is being ignored, |
424 | # these expand into SIM= and SIM_OBJ=, overriding the entries from | |
7a292a7a SS |
425 | # target_makefile_frag |
426 | # | |
427 | @IGNORE_SIM@ | |
428 | @IGNORE_SIM_OBS@ | |
429 | ||
c906108c SS |
430 | FLAGS_TO_PASS = \ |
431 | "prefix=$(prefix)" \ | |
432 | "exec_prefix=$(exec_prefix)" \ | |
6688f7e9 | 433 | "infodir=$(infodir)" \ |
36af0b35 L |
434 | "libdir=$(libdir)" \ |
435 | "mandir=$(mandir)" \ | |
436 | "datadir=$(datadir)" \ | |
437 | "includedir=$(includedir)" \ | |
c906108c | 438 | "against=$(against)" \ |
c938e9b0 | 439 | "DESTDIR=$(DESTDIR)" \ |
c906108c SS |
440 | "AR=$(AR)" \ |
441 | "AR_FLAGS=$(AR_FLAGS)" \ | |
442 | "CC=$(CC)" \ | |
443 | "CFLAGS=$(CFLAGS)" \ | |
c906108c SS |
444 | "CXX=$(CXX)" \ |
445 | "CXXFLAGS=$(CXXFLAGS)" \ | |
446 | "DLLTOOL=$(DLLTOOL)" \ | |
ed363b1b | 447 | "LDFLAGS=$(LDFLAGS)" \ |
c906108c SS |
448 | "RANLIB=$(RANLIB)" \ |
449 | "MAKEINFO=$(MAKEINFO)" \ | |
085dd6e6 JM |
450 | "MAKEHTML=$(MAKEHTML)" \ |
451 | "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \ | |
c906108c SS |
452 | "INSTALL=$(INSTALL)" \ |
453 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
454 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
455 | "RUNTEST=$(RUNTEST)" \ | |
456 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" | |
457 | ||
458 | # Flags that we pass when building the testsuite. | |
459 | ||
460 | # empty for native, $(target_alias)/ for cross | |
461 | target_subdir = @target_subdir@ | |
462 | ||
463 | CC_FOR_TARGET = ` \ | |
464 | if [ -f $${rootme}/../gcc/xgcc ] ; then \ | |
465 | if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \ | |
466 | 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/; \ | |
467 | else \ | |
468 | echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ | |
469 | fi; \ | |
470 | else \ | |
471 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
472 | echo $(CC); \ | |
473 | else \ | |
474 | t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \ | |
475 | fi; \ | |
476 | fi` | |
477 | ||
478 | CXX = gcc | |
479 | CXX_FOR_TARGET = ` \ | |
480 | if [ -f $${rootme}/../gcc/xgcc ] ; then \ | |
481 | if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \ | |
482 | 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/; \ | |
483 | else \ | |
484 | echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ | |
485 | fi; \ | |
486 | else \ | |
487 | if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \ | |
488 | echo $(CXX); \ | |
489 | else \ | |
490 | t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \ | |
491 | fi; \ | |
492 | fi` | |
493 | ||
c906108c SS |
494 | # The use of $$(x_FOR_TARGET) reduces the command line length by not |
495 | # duplicating the lengthy definition. | |
496 | TARGET_FLAGS_TO_PASS = \ | |
497 | "prefix=$(prefix)" \ | |
498 | "exec_prefix=$(exec_prefix)" \ | |
499 | "against=$(against)" \ | |
500 | 'CC=$$(CC_FOR_TARGET)' \ | |
501 | "CC_FOR_TARGET=$(CC_FOR_TARGET)" \ | |
502 | "CFLAGS=$(CFLAGS)" \ | |
c906108c SS |
503 | 'CXX=$$(CXX_FOR_TARGET)' \ |
504 | "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \ | |
505 | "CXXFLAGS=$(CXXFLAGS)" \ | |
506 | "INSTALL=$(INSTALL)" \ | |
507 | "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \ | |
508 | "INSTALL_DATA=$(INSTALL_DATA)" \ | |
509 | "MAKEINFO=$(MAKEINFO)" \ | |
085dd6e6 | 510 | "MAKEHTML=$(MAKEHTML)" \ |
c906108c SS |
511 | "RUNTEST=$(RUNTEST)" \ |
512 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" | |
513 | ||
514 | # All source files that go into linking GDB. | |
515 | # Links made at configuration time should not be specified here, since | |
516 | # SFILES is used in building the distribution archive. | |
517 | ||
6d3e79c6 | 518 | SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \ |
92df71f0 | 519 | ax-general.c ax-gdb.c \ |
bba2d28d AC |
520 | bcache.c \ |
521 | bfd-target.c \ | |
522 | block.c blockframe.c breakpoint.c buildsym.c \ | |
92df71f0 | 523 | c-exp.y c-lang.c c-typeprint.c c-valprint.c \ |
1b6bc7e0 CF |
524 | charset.c cli-out.c coffread.c coff-pe-read.c \ |
525 | complaints.c completer.c corefile.c \ | |
9219021c | 526 | cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \ |
de4f826b | 527 | dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \ |
cfc14b3a | 528 | dwarfread.c dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \ |
92df71f0 FN |
529 | elfread.c environ.c eval.c event-loop.c event-top.c expprint.c \ |
530 | f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c frame.c \ | |
da62e633 | 531 | frame-base.c \ |
494cca16 | 532 | frame-unwind.c \ |
92df71f0 FN |
533 | gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \ |
534 | hpacc-abi.c \ | |
04714b91 AC |
535 | inf-loop.c \ |
536 | infcall.c \ | |
537 | infcmd.c inflow.c infrun.c \ | |
4389a95a | 538 | interps.c \ |
c906108c | 539 | jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \ |
92df71f0 FN |
540 | kod.c kod-cisco.c \ |
541 | language.c linespec.c \ | |
542 | m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \ | |
543 | macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \ | |
544 | mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c \ | |
545 | nlmread.c \ | |
a76c9d72 | 546 | objc-exp.y objc-lang.c \ |
ccdc5d7f | 547 | objfiles.c osabi.c observer.c \ |
92df71f0 | 548 | p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \ |
449092f6 | 549 | regcache.c reggroups.c remote.c remote-fileio.c \ |
a94dd1fd AC |
550 | scm-exp.c scm-lang.c scm-valprint.c \ |
551 | sentinel-frame.c \ | |
552 | serial.c ser-unix.c source.c \ | |
92df71f0 | 553 | stabsread.c stack.c std-regs.c symfile.c symmisc.c symtab.c \ |
a0f267c7 AC |
554 | target.c thread.c top.c tracepoint.c \ |
555 | trad-frame.c \ | |
556 | typeprint.c \ | |
c906108c SS |
557 | tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \ |
558 | tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \ | |
559 | tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \ | |
560 | tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \ | |
561 | tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \ | |
562 | tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \ | |
da59e081 | 563 | tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h \ |
8aaf581c | 564 | tui/tui-file.h tui/tui-file.c tui/tui-out.c tui/tui-hooks.c \ |
92df71f0 | 565 | ui-out.c utils.c ui-file.h ui-file.c \ |
eb8bc282 | 566 | user-regs.c \ |
92df71f0 FN |
567 | valarith.c valops.c valprint.c values.c varobj.c \ |
568 | wrapper.c | |
c906108c | 569 | |
fb40c209 | 570 | LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c |
c906108c SS |
571 | |
572 | # "system" headers. Using these in dependencies is a rather personal | |
573 | # choice. (-rich, summer 1993) | |
3cf93817 | 574 | # (Why would we not want to depend on them? If one of these changes in a |
c906108c SS |
575 | # non-binary-compatible way, it is a real pain to remake the right stuff |
576 | # without these dependencies -kingdon, 13 Mar 1994) | |
04ea0df1 | 577 | aout_aout64_h = $(INCLUDE_DIR)/aout/aout64.h |
5f8a3188 | 578 | aout_stabs_gnu_h = $(INCLUDE_DIR)/aout/stabs_gnu.h |
c906108c SS |
579 | getopt_h = $(INCLUDE_DIR)/getopt.h |
580 | floatformat_h = $(INCLUDE_DIR)/floatformat.h | |
581 | bfd_h = $(BFD_DIR)/bfd.h | |
3c25f8c7 | 582 | callback_h = $(INCLUDE_DIR)/gdb/callback.h |
04ea0df1 AC |
583 | coff_sym_h = $(INCLUDE_DIR)/coff/sym.h |
584 | coff_symconst_h = $(INCLUDE_DIR)/coff/symconst.h | |
585 | coff_ecoff_h = $(INCLUDE_DIR)/coff/ecoff.h | |
c1dac9e6 | 586 | coff_internal_h = $(INCLUDE_DIR)/coff/internal.h |
b55c33cc | 587 | dis_asm_h = $(INCLUDE_DIR)/dis-asm.h $(bfd_h) |
299a7944 | 588 | elf_reloc_macros_h = $(INCLUDE_DIR)/elf/reloc-macros.h |
460e6ec3 | 589 | elf_sh_h = $(INCLUDE_DIR)/elf/sh.h |
299a7944 | 590 | elf_arm_h = $(INCLUDE_DIR)/elf/arm.h $(elf_reloc_macros_h) |
460e6ec3 | 591 | elf_bfd_h = $(BFD_SRC)/elf-bfd.h |
04ea0df1 | 592 | libaout_h = $(BFD_SRC)/libaout.h |
2252e863 | 593 | libbfd_h = $(BFD_SRC)/libbfd.h |
3c25f8c7 | 594 | remote_sim_h = $(INCLUDE_DIR)/gdb/remote-sim.h |
bea7bb93 | 595 | demangle_h = $(INCLUDE_DIR)/demangle.h |
c2c197ae | 596 | obstack_h = $(INCLUDE_DIR)/obstack.h |
460e6ec3 | 597 | opcode_m68hc11_h = $(INCLUDE_DIR)/opcode/m68hc11.h |
aeeccc89 | 598 | readline_h = $(READLINE_SRC)/readline.h |
526eef89 | 599 | frv_desc_h = $(OPCODES_SRC)/frv-desc.h |
460e6ec3 AC |
600 | sh_opc_h = $(OPCODES_SRC)/sh-opc.h |
601 | gdb_sim_arm_h = $(INCLUDE_DIR)/gdb/sim-arm.h | |
602 | gdb_sim_d10v_h = $(INCLUDE_DIR)/gdb/sim-d10v.h | |
526eef89 | 603 | gdb_sim_frv_h = $(INCLUDE_DIR)/gdb/sim-frv.h |
460e6ec3 | 604 | gdb_sim_sh_h = $(INCLUDE_DIR)/gdb/sim-sh.h |
ec2bcbe7 | 605 | splay_tree_h = $(INCLUDE_DIR)/splay-tree.h |
c906108c | 606 | |
c906108c SS |
607 | readline_headers = \ |
608 | $(READLINE_SRC)/chardefs.h \ | |
609 | $(READLINE_SRC)/history.h \ | |
610 | $(READLINE_SRC)/keymaps.h \ | |
611 | $(READLINE_SRC)/readline.h | |
612 | ||
1517c6d1 AC |
613 | # |
614 | # $BUILD/ headers | |
615 | # | |
616 | ||
617 | config_h = config.h | |
618 | exc_request_U_h = exc_request_U.h | |
619 | exc_request_S_h = exc_request_S.h | |
620 | msg_reply_S_h = msg_reply_S.h | |
621 | msg_U_h = msg_U.h | |
622 | notify_S_h = notify_S.h | |
623 | process_reply_S_h = process_reply_S.h | |
624 | ||
625 | # | |
626 | # config/ headers | |
627 | # | |
628 | ||
5a2402b8 AC |
629 | xm_h = @xm_h@ |
630 | tm_h = @tm_h@ | |
631 | nm_h = @nm_h@ | |
c906108c | 632 | |
342af04b | 633 | # |
1517c6d1 | 634 | # gdb/ headers |
342af04b AC |
635 | # |
636 | ||
342af04b | 637 | ada_lang_h = ada-lang.h $(value_h) $(gdbtypes_h) |
342af04b | 638 | alphabsd_tdep_h = alphabsd-tdep.h |
91092ee5 | 639 | alpha_tdep_h = alpha-tdep.h |
c14a44d5 | 640 | amd64_nat_h = amd64-nat.h |
342af04b AC |
641 | annotate_h = annotate.h $(symtab_h) $(gdbtypes_h) |
642 | arch_utils_h = arch-utils.h | |
4be87837 | 643 | arm_tdep_h = arm-tdep.h |
3cf93817 | 644 | auxv_h = auxv.h |
342af04b AC |
645 | ax_gdb_h = ax-gdb.h |
646 | ax_h = ax.h $(doublest_h) | |
647 | bcache_h = bcache.h | |
bba2d28d | 648 | bfd_target_h = bfd-target.h |
fe898f56 | 649 | block_h = block.h |
342af04b AC |
650 | breakpoint_h = breakpoint.h $(frame_h) $(value_h) $(gdb_events_h) |
651 | buildsym_h = buildsym.h | |
342af04b | 652 | call_cmds_h = call-cmds.h |
91092ee5 AC |
653 | charset_h = charset.h |
654 | c_lang_h = c-lang.h $(value_h) $(macroexp_h) | |
342af04b | 655 | cli_out_h = cli-out.h |
1b6bc7e0 | 656 | coff_pe_read_h = coff-pe-read.h |
91092ee5 | 657 | coff_solib_h = coff-solib.h |
342af04b AC |
658 | command_h = command.h |
659 | complaints_h = complaints.h | |
660 | completer_h = completer.h | |
661 | cp_abi_h = cp-abi.h | |
1fcb5155 | 662 | cp_support_h = cp-support.h $(symtab_h) |
342af04b | 663 | dcache_h = dcache.h |
91092ee5 | 664 | defs_h = defs.h $(config_h) $(ansidecl_h) $(gdb_locale_h) $(gdb_signals_h) \ |
342af04b | 665 | $(libiberty_h) $(progress_h) $(bfd_h) $(tui_h) $(ui_file_h) $(xm_h) \ |
c14a44d5 | 666 | $(nm_h) $(tm_h) $(fopen_same_h) $(gdbarch_h) |
de4f826b | 667 | dictionary_h = dictionary.h |
92df71f0 | 668 | disasm_h = disasm.h |
342af04b | 669 | doublest_h = doublest.h $(floatformat_h) |
9c1412c1 | 670 | dummy_frame_h = dummy-frame.h |
4c2df51b | 671 | dwarf2expr_h = dwarf2expr.h |
cfc14b3a | 672 | dwarf2_frame_h = dwarf2-frame.h |
91092ee5 | 673 | dwarf2loc_h = dwarf2loc.h |
342af04b AC |
674 | environ_h = environ.h |
675 | event_loop_h = event-loop.h | |
676 | event_top_h = event-top.h | |
4646aa9d | 677 | exec_h = exec.h $(target_h) |
342af04b AC |
678 | expression_h = expression.h $(symtab_h) $(doublest_h) |
679 | f_lang_h = f-lang.h | |
91092ee5 | 680 | frame_base_h = frame-base.h |
342af04b | 681 | frame_h = frame.h |
7df05f2b | 682 | frame_unwind_h = frame-unwind.h $(frame_h) |
a89aa300 | 683 | gdbarch_h = gdbarch.h |
342af04b | 684 | gdb_assert_h = gdb_assert.h |
91092ee5 AC |
685 | gdbcmd_h = gdbcmd.h $(command_h) $(ui_out_h) |
686 | gdbcore_h = gdbcore.h $(bfd_h) | |
342af04b | 687 | gdb_dirent_h = gdb_dirent.h |
91092ee5 AC |
688 | gdb_events_h = gdb-events.h |
689 | gdb_h = gdb.h | |
342af04b AC |
690 | gdb_locale_h = gdb_locale.h |
691 | gdb_obstack_h = gdb_obstack.h $(obstack_h) | |
692 | gdb_proc_service_h = gdb_proc_service.h $(gregset_h) | |
693 | gdb_regex_h = gdb_regex.h $(xregex_h) | |
91092ee5 | 694 | gdb_stabs_h = gdb-stabs.h |
342af04b AC |
695 | gdb_stat_h = gdb_stat.h |
696 | gdb_string_h = gdb_string.h | |
697 | gdb_thread_db_h = gdb_thread_db.h | |
aa0cd9c1 | 698 | gdbthread_h = gdbthread.h $(breakpoint_h) $(frame_h) |
342af04b | 699 | gdbtypes_h = gdbtypes.h |
91092ee5 AC |
700 | gdb_vfork_h = gdb_vfork.h |
701 | gdb_wait_h = gdb_wait.h | |
a3640c75 | 702 | glibc_tdep_h = glibc-tdep.h |
342af04b AC |
703 | gnu_nat_h = gnu-nat.h |
704 | gregset_h = gregset.h | |
3ff7cf9e | 705 | hppa_tdep_h = hppa-tdep.h |
5179e78f | 706 | i386_linux_tdep_h = i386-linux-tdep.h |
4be87837 | 707 | i386_tdep_h = i386-tdep.h |
342af04b | 708 | i387_tdep_h = i387-tdep.h |
04714b91 | 709 | infcall_h = infcall.h |
aa0cd9c1 | 710 | inferior_h = inferior.h $(breakpoint_h) $(target_h) $(frame_h) |
91092ee5 | 711 | inf_loop_h = inf-loop.h |
44270758 | 712 | inflow_h = inflow.h $(terminal_h) |
91092ee5 | 713 | infttrace_h = infttrace.h |
4389a95a | 714 | interps_h = interps.h |
342af04b AC |
715 | jv_lang_h = jv-lang.h |
716 | kod_h = kod.h | |
717 | language_h = language.h | |
b2100910 | 718 | libunwind_frame_h = libunwind-frame.h $(libunwind_h) |
342af04b | 719 | linespec_h = linespec.h |
0274a8ce | 720 | linux_nat_h = linux-nat.h |
342af04b | 721 | m2_lang_h = m2-lang.h |
32eeb91a | 722 | m68k_tdep_h = m68k-tdep.h |
342af04b AC |
723 | macroexp_h = macroexp.h |
724 | macroscope_h = macroscope.h $(macrotab_h) $(symtab_h) | |
725 | macrotab_h = macrotab.h | |
f15ab4a7 | 726 | main_h = main.h |
342af04b AC |
727 | memattr_h = memattr.h |
728 | minimon_h = minimon.h | |
729 | mipsnbsd_tdep_h = mipsnbsd-tdep.h | |
91092ee5 | 730 | mips_tdep_h = mips-tdep.h |
342af04b AC |
731 | monitor_h = monitor.h |
732 | nbsd_tdep_h = nbsd-tdep.h | |
4be87837 | 733 | ns32k_tdep_h = ns32k-tdep.h |
91092ee5 | 734 | nto_tdep_h = nto-tdep.h $(defs_h) $(solist_h) |
a76c9d72 | 735 | objc_lang_h = objc-lang.h |
342af04b | 736 | objfiles_h = objfiles.h $(gdb_obstack_h) $(symfile_h) |
ccdc5d7f | 737 | observer_h = observer.h |
342af04b AC |
738 | ocd_h = ocd.h |
739 | osabi_h = osabi.h | |
342af04b AC |
740 | pa64solib_h = pa64solib.h |
741 | parser_defs_h = parser-defs.h $(doublest_h) | |
91092ee5 | 742 | p_lang_h = p-lang.h |
342af04b | 743 | ppcnbsd_tdep_h = ppcnbsd-tdep.h |
91092ee5 | 744 | ppc_tdep_h = ppc-tdep.h |
342af04b AC |
745 | proc_utils_h = proc-utils.h |
746 | regcache_h = regcache.h | |
b59ff9d5 | 747 | reggroups_h = reggroups.h |
54c84734 | 748 | regset_h = regset.h |
cd90e54f | 749 | remote_fileio_h = remote-fileio.h |
91092ee5 AC |
750 | remote_h = remote.h |
751 | remote_utils_h = remote-utils.h $(target_h) | |
342af04b AC |
752 | scm_lang_h = scm-lang.h $(scm_tags_h) |
753 | scm_tags_h = scm-tags.h | |
a94dd1fd | 754 | sentinel_frame_h = sentinel-frame.h |
342af04b | 755 | serial_h = serial.h |
91092ee5 | 756 | ser_unix_h = ser-unix.h |
342af04b | 757 | shnbsd_tdep_h = shnbsd-tdep.h |
91092ee5 | 758 | sh_tdep_h = sh-tdep.h |
342af04b | 759 | sim_regno_h = sim-regno.h |
342af04b | 760 | solib_h = solib.h |
91092ee5 | 761 | solib_svr4_h = solib-svr4.h |
342af04b AC |
762 | solist_h = solist.h |
763 | somsolib_h = somsolib.h | |
764 | source_h = source.h | |
b2100910 | 765 | sparc64_tdep_h = sparc64-tdep.h $(sparc_tdep_h) |
386c036b | 766 | sparc_nat_h = sparc-nat.h |
91092ee5 | 767 | sparc_tdep_h = sparc-tdep.h |
342af04b AC |
768 | srec_h = srec.h |
769 | stabsread_h = stabsread.h | |
b9362cc7 | 770 | stack_h = stack.h |
342af04b AC |
771 | symfile_h = symfile.h |
772 | symtab_h = symtab.h | |
773 | target_h = target.h $(bfd_h) $(symtab_h) $(dcache_h) $(memattr_h) | |
774 | terminal_h = terminal.h | |
775 | top_h = top.h | |
776 | tracepoint_h = tracepoint.h | |
91092ee5 | 777 | trad_frame_h = trad-frame.h |
342af04b AC |
778 | typeprint_h = typeprint.h |
779 | ui_file_h = ui-file.h | |
780 | ui_out_h = ui-out.h | |
eb8bc282 | 781 | user_regs_h = user-regs.h |
342af04b | 782 | valprint_h = valprint.h |
91092ee5 AC |
783 | value_h = value.h $(doublest_h) $(frame_h) $(symtab_h) $(gdbtypes_h) \ |
784 | $(expression_h) | |
342af04b | 785 | varobj_h = varobj.h $(symtab_h) $(gdbtypes_h) |
4be87837 | 786 | vax_tdep_h = vax-tdep.h |
342af04b AC |
787 | version_h = version.h |
788 | wince_stub_h = wince-stub.h | |
789 | wrapper_h = wrapper.h $(gdb_h) | |
91092ee5 | 790 | x86_64_linux_tdep_h = x86-64-linux-tdep.h |
342af04b AC |
791 | x86_64_tdep_h = x86-64-tdep.h $(i386_tdep_h) |
792 | xcoffsolib_h = xcoffsolib.h | |
793 | xmodem_h = xmodem.h | |
794 | ||
795 | # | |
796 | # gdb/cli/ headers | |
797 | # | |
798 | ||
799 | cli_cmds_h = $(srcdir)/cli/cli-cmds.h | |
8fe84d01 | 800 | cli_decode_h = $(srcdir)/cli/cli-decode.h $(command_h) |
342af04b AC |
801 | cli_dump_h = $(srcdir)/cli/cli-dump.h |
802 | cli_script_h = $(srcdir)/cli/cli-script.h | |
803 | cli_setshow_h = $(srcdir)/cli/cli-setshow.h | |
804 | cli_utils_h = $(srcdir)/cli/cli-utils.h | |
805 | ||
806 | # | |
807 | # gdb/mi/ headers | |
808 | # | |
809 | ||
810 | mi_cmds_h = $(srcdir)/mi/mi-cmds.h | |
811 | mi_console_h = $(srcdir)/mi/mi-console.h | |
812 | mi_getopt_h = $(srcdir)/mi/mi-getopt.h | |
4389a95a | 813 | mi_main_h = $(srcdir)/mi/mi-main.h |
342af04b AC |
814 | mi_out_h = $(srcdir)/mi/mi-out.h |
815 | mi_parse_h = $(srcdir)/mi/mi-parse.h | |
816 | ||
817 | # | |
818 | # gdb/tui/ headers | |
819 | # | |
820 | ||
d7b2e967 AC |
821 | tui_command_h = $(srcdir)/tui/tui-command.h |
822 | tui_data_h = $(srcdir)/tui/tui-data.h | |
20d286a5 | 823 | tui_disasm_h = $(srcdir)/tui/tui-disasm.h $(tui_h) $(tui_data_h) |
91092ee5 | 824 | tui_file_h = $(srcdir)/tui/tui-file.h |
20d286a5 | 825 | tui_h = $(srcdir)/tui/tui.h |
d7b2e967 | 826 | tui_io_h = $(srcdir)/tui/tui-io.h |
20d286a5 AC |
827 | tui_layout_h = $(srcdir)/tui/tui-layout.h $(tui_h) $(tui_data_h) |
828 | tui_regs_h = $(srcdir)/tui/tui-regs.h $(tui_data_h) | |
829 | tui_source_h = $(srcdir)/tui/tui-source.h $(tui_data_h) | |
d7b2e967 | 830 | tui_stack_h = $(srcdir)/tui/tui-stack.h |
20d286a5 | 831 | tui_windata_h = $(srcdir)/tui/tui-windata.h $(tui_data_h) |
d7b2e967 | 832 | tui_wingeneral_h = $(srcdir)/tui/tui-wingeneral.h |
20d286a5 AC |
833 | tui_win_h = $(srcdir)/tui/tui-win.h $(tui_data_h) |
834 | tui_winsource_h = $(srcdir)/tui/tui-winsource.h $(tui_data_h) | |
234b45d4 | 835 | |
c906108c SS |
836 | # Header files that need to have srcdir added. Note that in the cases |
837 | # where we use a macro like $(gdbcmd_h), things are carefully arranged | |
838 | # so that each .h file is listed exactly once (M-x tags-search works | |
839 | # wrong if TAGS has files twice). Because this is tricky to get | |
840 | # right, it is probably easiest just to list .h files here directly. | |
841 | ||
842 | HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \ | |
822e978b | 843 | environ.h $(gdbcmd_h) gdb.h gdbcore.h \ |
8af51c36 | 844 | gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \ |
6a34fd2f | 845 | objfiles.h parser-defs.h serial.h solib.h \ |
c906108c | 846 | symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \ |
6821892e | 847 | macrotab.h macroexp.h macroscope.h \ |
db034ac5 | 848 | c-lang.h f-lang.h \ |
c906108c | 849 | jv-lang.h \ |
df115219 | 850 | m2-lang.h p-lang.h \ |
c906108c | 851 | complaints.h valprint.h \ |
c906108c SS |
852 | vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \ |
853 | vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \ | |
854 | vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \ | |
855 | dcache.h remote-utils.h top.h somsolib.h | |
856 | ||
857 | # Header files that already have srcdir in them, or which are in objdir. | |
858 | ||
03c30d4d | 859 | HFILES_WITH_SRCDIR = ../bfd/bfd.h |
c906108c SS |
860 | |
861 | ||
862 | # GDB "info" files, which should be included in their entirety | |
863 | INFOFILES = gdb.info* | |
864 | ||
865 | REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar | |
866 | ||
c906108c SS |
867 | # {X,T,NAT}DEPFILES are something of a pain in that it's hard to |
868 | # default their values the way we do for SER_HARDWIRE; in the future | |
869 | # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other | |
870 | # variables analogous to SER_HARDWIRE which get defaulted in this | |
871 | # Makefile.in | |
872 | ||
7708fa01 | 873 | DEPFILES = $(TDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \ |
d836ee13 | 874 | $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_OBS) |
c906108c | 875 | |
fb40c209 | 876 | SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS) |
c906108c SS |
877 | # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES, |
878 | # and it's more useful to see it in the .y file. | |
879 | TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \ | |
f77b92bf | 880 | $(SUBDIR_CLI_SRCS) |
c906108c SS |
881 | TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR) |
882 | ||
bba2d28d | 883 | COMMON_OBS = version.o \ |
d836ee13 | 884 | annotate.o \ |
3cf93817 | 885 | auxv.o \ |
bba2d28d AC |
886 | bfd-target.o \ |
887 | blockframe.o breakpoint.o findvar.o regcache.o \ | |
9c1412c1 | 888 | charset.o disasm.o dummy-frame.o \ |
c906108c | 889 | source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \ |
de4f826b | 890 | block.o symtab.o symfile.o symmisc.o linespec.o dictionary.o \ |
04714b91 AC |
891 | infcall.o \ |
892 | infcmd.o infrun.o \ | |
32178cab | 893 | expprint.o environ.o stack.o thread.o \ |
4389a95a | 894 | interps.o \ |
d836ee13 | 895 | main.o \ |
6821892e | 896 | macrotab.o macrocmd.o macroexp.o macroscope.o \ |
c5f0f3d0 | 897 | event-loop.o event-top.o inf-loop.o completer.o \ |
70f80edf | 898 | gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o $(DEPFILES) \ |
29e57380 | 899 | memattr.o mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \ |
eb8bc282 | 900 | std-regs.o \ |
0150732f | 901 | signals.o \ |
96baa820 | 902 | kod.o kod-cisco.o \ |
104c1213 | 903 | gdb-events.o \ |
ccdc5d7f | 904 | exec.o bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \ |
1b6bc7e0 | 905 | dbxread.o coffread.o coff-pe-read.o elfread.o \ |
c906108c | 906 | dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \ |
cfc14b3a | 907 | dwarf2expr.o dwarf2loc.o dwarf2-frame.o \ |
1fbec6c3 | 908 | c-lang.o f-lang.o objc-lang.o \ |
8b93c638 JM |
909 | ui-out.o cli-out.o \ |
910 | varobj.o wrapper.o \ | |
c906108c | 911 | jv-lang.o jv-valprint.o jv-typeprint.o \ |
454313e5 | 912 | m2-lang.o p-lang.o p-typeprint.o p-valprint.o \ |
a94dd1fd AC |
913 | scm-exp.o scm-lang.o scm-valprint.o \ |
914 | sentinel-frame.o \ | |
915 | complaints.o typeprint.o \ | |
db034ac5 AC |
916 | c-typeprint.o f-typeprint.o m2-typeprint.o \ |
917 | c-valprint.o cp-valprint.o f-valprint.o m2-valprint.o \ | |
a99a9e1b | 918 | nlmread.o serial.o mdebugread.o top.o utils.o \ |
227288a0 | 919 | ui-file.o \ |
eb8bc282 | 920 | user-regs.o \ |
494cca16 | 921 | frame.o frame-unwind.o doublest.o \ |
da62e633 | 922 | frame-base.o \ |
b59ff9d5 | 923 | gnu-v2-abi.o gnu-v3-abi.o hpacc-abi.o cp-abi.o cp-support.o \ |
9219021c | 924 | cp-namespace.o \ |
a0f267c7 AC |
925 | reggroups.o \ |
926 | trad-frame.o | |
c906108c | 927 | |
d836ee13 | 928 | OBS = $(COMMON_OBS) |
c906108c SS |
929 | |
930 | TSOBS = inflow.o | |
931 | ||
8dcde887 | 932 | SUBDIRS = @subdirs@ |
c906108c SS |
933 | |
934 | # For now, shortcut the "configure GDB for fewer languages" stuff. | |
935 | YYFILES = c-exp.tab.c \ | |
a76c9d72 | 936 | objc-exp.tab.c \ |
6d3e79c6 | 937 | ada-exp.tab.c \ |
c906108c | 938 | jv-exp.tab.c \ |
df115219 | 939 | f-exp.tab.c m2-exp.tab.c p-exp.tab.c |
c906108c | 940 | YYOBJ = c-exp.tab.o \ |
2cf6873c | 941 | objc-exp.tab.o \ |
c906108c | 942 | jv-exp.tab.o \ |
df115219 | 943 | f-exp.tab.o m2-exp.tab.o p-exp.tab.o |
c906108c SS |
944 | |
945 | # Things which need to be built when making a distribution. | |
946 | ||
947 | DISTSTUFF = $(YYFILES) | |
948 | ||
949 | # Prevent Sun make from putting in the machine type. Setting | |
950 | # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1. | |
951 | .c.o: | |
952 | $(CC) -c $(INTERNAL_CFLAGS) $< | |
953 | ||
b3a90332 | 954 | all: gdb$(EXEEXT) $(CONFIG_ALL) |
c906108c SS |
955 | @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do |
956 | ||
957 | installcheck: | |
958 | ||
959 | # The check target can not use subdir_do, because subdir_do does not | |
960 | # use TARGET_FLAGS_TO_PASS. | |
961 | check: force | |
962 | @if [ -f testsuite/Makefile ]; then \ | |
963 | rootme=`pwd`; export rootme; \ | |
964 | rootsrc=`cd $(srcdir); pwd`; export rootsrc; \ | |
965 | cd testsuite; \ | |
966 | $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \ | |
967 | else true; fi | |
968 | ||
085dd6e6 | 969 | info dvi install-info clean-info html install-html: force |
c906108c SS |
970 | @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do |
971 | ||
972 | gdb.z:gdb.1 | |
3cf93817 | 973 | nroff -man $(srcdir)/gdb.1 | col -b > gdb.t |
c906108c SS |
974 | pack gdb.t ; rm -f gdb.t |
975 | mv gdb.t.z gdb.z | |
976 | ||
977 | # Traditionally "install" depends on "all". But it may be useful | |
3cf93817 | 978 | # not to; for example, if the user has made some trivial change to a |
c906108c SS |
979 | # source file and doesn't care about rebuilding or just wants to save the |
980 | # time it takes for make to check that all is up to date. | |
981 | # install-only is intended to address that need. | |
982 | install: all install-only | |
e56ac5c3 | 983 | install-only: $(CONFIG_INSTALL) |
c906108c | 984 | transformed_name=`t='$(program_transform_name)'; \ |
95303a68 | 985 | echo gdb | sed -e "$$t"` ; \ |
c906108c SS |
986 | if test "x$$transformed_name" = x; then \ |
987 | transformed_name=gdb ; \ | |
988 | else \ | |
989 | true ; \ | |
990 | fi ; \ | |
c938e9b0 | 991 | $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \ |
72bdd927 AC |
992 | $(INSTALL_PROGRAM) gdb$(EXEEXT) \ |
993 | $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \ | |
b7f31508 | 994 | $(SHELL) $(srcdir)/../mkinstalldirs \ |
72bdd927 AC |
995 | $(DESTDIR)$(man1dir) ; \ |
996 | $(INSTALL_DATA) $(srcdir)/gdb.1 \ | |
997 | $(DESTDIR)$(man1dir)/$$transformed_name.1 | |
3cf93817 | 998 | @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do |
c906108c | 999 | |
e56ac5c3 | 1000 | uninstall: force $(CONFIG_UNINSTALL) |
c906108c SS |
1001 | transformed_name=`t='$(program_transform_name)'; \ |
1002 | echo gdb | sed -e $$t` ; \ | |
1003 | if test "x$$transformed_name" = x; then \ | |
1004 | transformed_name=gdb ; \ | |
1005 | else \ | |
1006 | true ; \ | |
1007 | fi ; \ | |
c938e9b0 L |
1008 | rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \ |
1009 | $(DESTDIR)$(man1dir)/$$transformed_name.1 | |
3cf93817 | 1010 | @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do |
c906108c SS |
1011 | |
1012 | # We do this by grepping through sources. If that turns out to be too slow, | |
1013 | # maybe we could just require every .o file to have an initialization routine | |
9b4ff276 | 1014 | # of a given name (top.o -> _initialize_top, etc.). |
c906108c SS |
1015 | # |
1016 | # Formatting conventions: The name of the _initialize_* routines must start | |
1017 | # in column zero, and must not be inside #if. | |
1018 | # | |
1019 | # Note that the set of files with init functions might change, or the names | |
1020 | # of the functions might change, so this files needs to depend on all the | |
1021 | # object files that will be linked into gdb. | |
f2c4d933 EZ |
1022 | # |
1023 | # FIXME: There are 2 problems with this approach. First, if the INIT_FILES | |
3cf93817 RM |
1024 | # list includes a file twice (because of some mistake somewhere else) |
1025 | # the _initialize_* function will be included twice in init.c. Second, | |
227288a0 | 1026 | # init.c may force unnecessary files to be linked in. |
dd12a101 AC |
1027 | |
1028 | # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that | |
1029 | # the first call is to _initialize_gdbtypes. This is a hack to ensure | |
1030 | # that all the architecture dependant global builtin_type_* variables | |
1031 | # are initialized before anything else (per-architecture code is | |
1032 | # called in the same order that it is registered). The ``correct | |
1033 | # fix'' is to have all the builtin types made part of the architecture | |
1034 | # and initialize them on-demand (using gdbarch_data) just like | |
1035 | # everything else. The catch is that other modules still take the | |
1036 | # address of these builtin types forcing them to be variables, sigh! | |
c906108c | 1037 | |
0022b738 AC |
1038 | # NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is |
1039 | # anchored on the first column and excludes the ``/'' character so | |
1040 | # that it doesn't add the $(srcdir) prefix to any file that already | |
1041 | # has an absolute path. It turns out that $(DEC)'s True64 make | |
1042 | # automatically adds the $(srcdir) prefixes when it encounters files | |
1043 | # in sub-directories such as cli/ and mi/. | |
1044 | ||
d836ee13 | 1045 | INIT_FILES = $(OBS) $(TSOBS) $(CONFIG_SRCS) |
c2d11a7d | 1046 | init.c: $(INIT_FILES) |
c906108c | 1047 | @echo Making init.c |
6426a772 | 1048 | @rm -f init.c-tmp init.l-tmp |
c2d11a7d | 1049 | @-echo $(INIT_FILES) | \ |
c906108c | 1050 | tr ' ' '\012' | \ |
b1364885 | 1051 | sed \ |
6426a772 | 1052 | -e '/^init.o/d' \ |
c906108c SS |
1053 | -e '/xdr_ld.o/d' \ |
1054 | -e '/xdr_ptrace.o/d' \ | |
1055 | -e '/xdr_rdb.o/d' \ | |
1056 | -e '/udr.o/d' \ | |
1057 | -e '/udip2soc.o/d' \ | |
1058 | -e '/udi2go32.o/d' \ | |
1059 | -e '/version.o/d' \ | |
1060 | -e '/^[a-z0-9A-Z_]*_[SU].o/d' \ | |
1061 | -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \ | |
1062 | -e 's/\.o/.c/' \ | |
9aedf4f4 | 1063 | -e 's,signals\.c,signals/signals\.c,' \ |
0022b738 | 1064 | -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \ |
c906108c | 1065 | while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \ |
dd12a101 | 1066 | sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' | \ |
f30e5a77 | 1067 | ( echo _initialize_gdbtypes ; grep -v '^_initialize_gdbtypes$$' ) > init.l-tmp |
6426a772 JM |
1068 | @echo '/* Do not modify this file. */' >>init.c-tmp |
1069 | @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp | |
1070 | @echo '#include "defs.h"' >>init.c-tmp | |
1071 | @echo '#include "call-cmds.h"' >>init.c-tmp | |
1072 | @sed -e 's/\(.*\)/extern initialize_file_ftype \1;/' <init.l-tmp >>init.c-tmp | |
1073 | @echo 'void' >>init.c-tmp | |
1074 | @echo 'initialize_all_files (void)' >>init.c-tmp | |
1075 | @echo '{' >>init.c-tmp | |
1076 | @sed -e 's/\(.*\)/ \1 ();/' <init.l-tmp >>init.c-tmp | |
c906108c | 1077 | @echo '}' >>init.c-tmp |
6426a772 | 1078 | @rm init.l-tmp |
c906108c SS |
1079 | @mv init.c-tmp init.c |
1080 | ||
1081 | .PRECIOUS: init.c | |
1082 | ||
6426a772 JM |
1083 | init.o: init.c $(defs_h) $(call_cmds_h) |
1084 | ||
c906108c | 1085 | # Removing the old gdb first works better if it is running, at least on SunOS. |
d836ee13 | 1086 | gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS) |
c906108c | 1087 | rm -f gdb$(EXEEXT) |
72cfdc76 | 1088 | $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \ |
d836ee13 | 1089 | -o gdb$(EXEEXT) gdb.o libgdb.a \ |
f15ab4a7 | 1090 | $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) |
c906108c SS |
1091 | |
1092 | nlm: force | |
1093 | rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do | |
1094 | ||
104c1213 JM |
1095 | # Create a library of the gdb object files and build GDB by linking |
1096 | # against that. | |
1097 | # | |
1098 | # init.o is very important. It pulls in the rest of GDB. | |
1099 | LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o | |
1100 | libgdb.a: $(LIBGDB_OBS) | |
1101 | -rm -f libgdb.a | |
1102 | $(AR) q libgdb.a $(LIBGDB_OBS) | |
1103 | $(RANLIB) libgdb.a | |
c906108c | 1104 | |
c906108c SS |
1105 | # A Mach 3.0 program to force gdb back to command level |
1106 | ||
1107 | stop-gdb: stop-gdb.o | |
1108 | ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \ | |
1109 | stop-gdb.o $(CLIBS) $(LOADLIBES) | |
1110 | ||
1111 | # This is useful when debugging GDB, because some Unix's don't let you run GDB | |
1112 | # on itself without copying the executable. So "make gdb1" will make | |
1113 | # gdb and put a copy in gdb1, and you can run it with "gdb gdb1". | |
1114 | # Removing gdb1 before the copy is the right thing if gdb1 is open | |
1115 | # in another process. | |
1116 | gdb1$(EXEEXT): gdb$(EXEEXT) | |
1117 | rm -f gdb1$(EXEEXT) | |
1118 | cp gdb$(EXEEXT) gdb1$(EXEEXT) | |
1119 | ||
1120 | # FIXME. These are not generated by "make depend" because they only are there | |
1121 | # for some machines. | |
1122 | # But these rules don't do what we want; we want to hack the foo.o: tm.h | |
1123 | # dependency to do the right thing. | |
12e035e2 MC |
1124 | tm-sun3.h tm-altos.h: tm-m68k.h |
1125 | tm-sun2.h tm-3b1.h: tm-m68k.h | |
c906108c SS |
1126 | xm-vaxult.h: xm-vax.h |
1127 | xm-vaxbsd.h: xm-vax.h | |
1128 | ||
c906108c SS |
1129 | # Put the proper machine-specific files first, so M-. on a machine |
1130 | # specific routine gets the one for the correct machine. (FIXME: those | |
1131 | # files go in twice; we should be removing them from the main list). | |
1132 | ||
1133 | # TAGS depends on all the files that go into it so you can rebuild TAGS | |
1134 | # with `make TAGS' and not have to say `rm TAGS' first. | |
1135 | ||
1136 | TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR) | |
1137 | @echo Making TAGS | |
1138 | @etags $(srcdir)/$(TM_FILE) \ | |
1139 | $(srcdir)/$(XM_FILE) \ | |
1140 | $(srcdir)/$(NAT_FILE) \ | |
1141 | `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \ | |
1142 | echo $(srcdir)/$$i ; \ | |
1143 | done ; for i in $(TAGFILES_WITH_SRCDIR); do \ | |
1144 | echo $$i ; \ | |
1145 | done) | sed -e 's/\.o$$/\.c/'` \ | |
1146 | `find $(srcdir)/config -name '*.h' -print` | |
1147 | ||
1148 | tags: TAGS | |
1149 | ||
b3a90332 | 1150 | clean mostlyclean: $(CONFIG_CLEAN) |
3cf93817 | 1151 | @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do |
d3814881 | 1152 | rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp |
c906108c | 1153 | rm -f init.c version.c |
104c1213 | 1154 | rm -f gdb$(EXEEXT) core make.log |
c906108c SS |
1155 | rm -f gdb[0-9]$(EXEEXT) |
1156 | ||
1157 | # This used to depend on c-exp.tab.c m2-exp.tab.c TAGS | |
1158 | # I believe this is wrong; the makefile standards for distclean just | |
1159 | # describe removing files; the only sort of "re-create a distribution" | |
1160 | # functionality described is if the distributed files are unmodified. | |
4edb848c AC |
1161 | # NB: While GDBSERVER might be configured on native systems, it isn't |
1162 | # always included in SUBDIRS. Remove the gdbserver files explictly. | |
c906108c | 1163 | distclean: clean |
3cf93817 | 1164 | @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do |
4edb848c AC |
1165 | rm -f gdbserver/config.status gdbserver/config.log |
1166 | rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h | |
1167 | rm -f gdbserver/Makefile gdbserver/config.cache | |
c906108c SS |
1168 | rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit |
1169 | rm -f y.output yacc.acts yacc.tmp y.tab.h | |
1170 | rm -f config.log config.cache | |
1171 | rm -f Makefile | |
1172 | ||
1173 | maintainer-clean: local-maintainer-clean do-maintainer-clean distclean | |
1174 | realclean: maintainer-clean | |
1175 | ||
1176 | local-maintainer-clean: | |
1177 | @echo "This command is intended for maintainers to use;" | |
1178 | @echo "it deletes files that may require special tools to rebuild." | |
1179 | rm -f c-exp.tab.c \ | |
6d3e79c6 | 1180 | ada-lex.c ada-exp.tab.c \ |
a76c9d72 | 1181 | objc-exp.tab.c \ |
c906108c | 1182 | jv-exp.tab \ |
df115219 | 1183 | f-exp.tab.c m2-exp.tab.c p-exp.tab.c |
c906108c SS |
1184 | rm -f TAGS $(INFOFILES) |
1185 | rm -f $(YYFILES) | |
1186 | rm -f nm.h tm.h xm.h config.status | |
1187 | ||
1188 | do-maintainer-clean: | |
1189 | @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \ | |
1190 | subdir_do | |
1191 | ||
1192 | diststuff: $(DISTSTUFF) | |
1a645206 | 1193 | cd doc; $(MAKE) $(MFLAGS) diststuff |
c906108c SS |
1194 | |
1195 | subdir_do: force | |
1196 | @for i in $(DODIRS); do \ | |
1197 | if [ -f ./$$i/Makefile ] ; then \ | |
1198 | if (cd ./$$i; \ | |
1199 | $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \ | |
1200 | else exit 1 ; fi ; \ | |
1201 | else true ; fi ; \ | |
1202 | done | |
1203 | ||
1204 | Makefile: Makefile.in config.status @frags@ | |
1205 | $(SHELL) config.status | |
1206 | ||
1207 | config.h: stamp-h ; @true | |
1208 | stamp-h: config.in config.status | |
1209 | CONFIG_HEADERS=config.h:config.in $(SHELL) config.status | |
1210 | ||
eb2e12d7 | 1211 | config.status: configure configure.tgt configure.host |
c906108c SS |
1212 | $(SHELL) config.status --recheck |
1213 | ||
1214 | force: | |
1215 | ||
1216 | # Documentation! | |
1217 | # GDB QUICK REFERENCE (TeX dvi file, CM fonts) | |
1218 | doc/refcard.dvi: | |
1219 | cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS) | |
1220 | ||
1221 | # GDB QUICK REFERENCE (PostScript output, common PS fonts) | |
1222 | doc/refcard.ps: | |
1223 | cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS) | |
1224 | ||
1225 | # GDB MANUAL: TeX dvi file | |
1226 | doc/gdb.dvi: | |
1227 | cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS) | |
1228 | ||
1229 | # GDB MANUAL: info file | |
1230 | doc/gdb.info: | |
1231 | cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS) | |
1232 | ||
1233 | # Make copying.c from COPYING | |
413ccac7 AC |
1234 | $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \ |
1235 | $(srcdir)/COPYING $(srcdir)/copying.awk | |
1236 | awk -f $(srcdir)/copying.awk \ | |
1237 | < $(srcdir)/COPYING > $(srcdir)/copying.tmp | |
1238 | mv $(srcdir)/copying.tmp $(srcdir)/copying.c | |
c906108c | 1239 | |
d3814881 AC |
1240 | version.c: Makefile version.in |
1241 | rm -f version.c-tmp version.c | |
1242 | echo '#include "version.h"' >> version.c-tmp | |
696f451b | 1243 | echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp |
d3814881 AC |
1244 | echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp |
1245 | echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp | |
1246 | mv version.c-tmp version.c | |
d4f3574e | 1247 | version.o: version.c $(version_h) |
c906108c | 1248 | |
c906108c | 1249 | |
c906108c SS |
1250 | lint: $(LINTFILES) |
1251 | $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \ | |
1252 | `echo $(DEPFILES) | sed 's/\.o /\.c /g'` | |
1253 | ||
1254 | gdb.cxref: $(SFILES) | |
1255 | cxref -I. $(SFILES) >gdb.cxref | |
1256 | ||
1257 | force_update: | |
1258 | ||
1259 | # GNU Make has an annoying habit of putting *all* the Makefile variables | |
1260 | # into the environment, unless you include this target as a circumvention. | |
1261 | # Rumor is that this will be fixed (and this target can be removed) | |
1262 | # in GNU Make 4.0. | |
1263 | .NOEXPORT: | |
1264 | ||
1265 | # GNU Make 3.63 has a different problem: it keeps tacking command line | |
1266 | # overrides onto the definition of $(MAKE). This variable setting | |
1267 | # will remove them. | |
1268 | MAKEOVERRIDES= | |
1269 | ||
b1364885 | 1270 | ALLDEPFILES = \ |
c41669e0 | 1271 | aix-thread.c \ |
8513dd2d | 1272 | alpha-nat.c alphabsd-nat.c \ |
12bcb0fe | 1273 | alpha-tdep.c alpha-linux-tdep.c alphabsd-tdep.c alphanbsd-tdep.c \ |
8f285956 | 1274 | alpha-osf1-tdep.c alphafbsd-tdep.c alpha-mdebug-tdep.c \ |
e9ed6d01 | 1275 | arm-linux-nat.c arm-linux-tdep.c arm-tdep.c \ |
36012033 | 1276 | armnbsd-nat.c armnbsd-tdep.c \ |
8818c391 | 1277 | avr-tdep.c \ |
c5bb1243 | 1278 | coff-solib.c \ |
31bb40e4 | 1279 | core-regset.c core-aout.c corelow.c \ |
822e978b | 1280 | dcache.c delta68-nat.c dpx2-nat.c exec.c fork-child.c \ |
a3640c75 | 1281 | glibc-tdep.c \ |
a5d61f66 | 1282 | go32-nat.c h8300-tdep.c \ |
b1364885 | 1283 | hppa-tdep.c hppa-hpux-tdep.c \ |
e584bbaf | 1284 | hppah-nat.c hpread.c \ |
e1b73efd | 1285 | i386-tdep.c i386b-nat.c i386v-nat.c i386-linux-nat.c \ |
1762d96d | 1286 | i386v4-nat.c i386ly-tdep.c i386-cygwin-tdep.c \ |
8a96bc77 | 1287 | i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \ |
e750d25e | 1288 | i387-tdep.c \ |
52b98211 | 1289 | i386-linux-tdep.c i386-nat.c \ |
e0ca2bb9 | 1290 | i386gnu-nat.c i386gnu-tdep.c \ |
8064c6ae | 1291 | ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \ |
514e603d | 1292 | infptrace.c inftarg.c irix4-nat.c irix5-nat.c \ |
0e5d83e3 | 1293 | libunwind-frame.c \ |
c906108c | 1294 | lynx-nat.c m3-nat.c \ |
1a12f22f | 1295 | m68hc11-tdep.c \ |
c906108c | 1296 | m68k-tdep.c \ |
96baa820 | 1297 | mcore-tdep.c \ |
d2b57b94 | 1298 | mips-linux-nat.c mips-linux-tdep.c \ |
9e086581 | 1299 | mips-nat.c \ |
313fb2f6 | 1300 | mips-irix-tdep.c \ |
3680c638 | 1301 | mips-tdep.c mipsm3-nat.c mipsv4-nat.c \ |
257ce470 | 1302 | mipsnbsd-nat.c mipsnbsd-tdep.c \ |
ea5bc2a6 | 1303 | nbsd-tdep.c \ |
a1cd1908 | 1304 | ns32k-tdep.c solib-osf.c \ |
c906108c | 1305 | somread.c somsolib.c $(HPREAD_SOURCE) \ |
7b112f9c JT |
1306 | ppc-sysv-tdep.o ppc-linux-nat.c ppc-linux-tdep.c \ |
1307 | ppcnbsd-nat.o ppcnbsd-tdep.o \ | |
c5bb1243 | 1308 | procfs.c \ |
2a9cda49 | 1309 | remote-e7000.c \ |
b4b4b794 | 1310 | remote-hms.c remote-m32r-sdi.c remote-mips.c \ |
4d210288 | 1311 | remote-rdp.c remote-sim.c \ |
c906108c | 1312 | remote-st.c remote-utils.c dcache.c \ |
03c30d4d | 1313 | remote-vx.c \ |
c906108c | 1314 | rs6000-nat.c rs6000-tdep.c \ |
e81b020b | 1315 | s390-tdep.c s390-nat.c \ |
a196c81c | 1316 | ser-go32.c ser-pipe.c ser-tcp.c \ |
55ff77ac | 1317 | sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \ |
386c036b MK |
1318 | solib.c solib-irix.c solib-svr4.c solib-sunos.c \ |
1319 | sparc-linux-tdep.c sparc-nat.c sparc-sol2-nat.c sparc-sol2-tdep.c \ | |
1320 | sparc-tdep.c sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-linux-nat.c \ | |
1321 | sparc64-linux-tdep.c sparc64-nat.c sparc64-sol2-tdep.c \ | |
1322 | sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \ | |
1e067c66 | 1323 | sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \ |
566626fa | 1324 | sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \ |
386c036b | 1325 | sun3-nat.c \ |
c906108c | 1326 | symm-tdep.c symm-nat.c \ |
c906108c SS |
1327 | vax-tdep.c \ |
1328 | vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \ | |
1329 | win32-nat.c \ | |
0c884e17 | 1330 | xcoffread.c xcoffsolib.c \ |
a5d61f66 | 1331 | xstormy16-tdep.c |
c906108c | 1332 | |
f92d4a7b AC |
1333 | # Some files need explict build rules (due to -Werror problems) or due |
1334 | # to sub-directory fun 'n' games. | |
1335 | ||
1336 | # Provide explicit rule/dependency - works for more makes. | |
1337 | copying.o: $(srcdir)/copying.c | |
1338 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c | |
1339 | ||
1340 | hpux-thread.o: $(srcdir)/hpux-thread.c | |
1341 | $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \ | |
1342 | -I$(srcdir)/osf-share/HP800 -I/usr/include/dce \ | |
1343 | $(srcdir)/hpux-thread.c | |
1344 | ||
030292b7 DJ |
1345 | # main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR. |
1346 | main.o: main.c | |
1347 | $(CC) -c $(INTERNAL_CFLAGS) $(TARGET_SYSTEM_ROOT_DEFINE) \ | |
1348 | -DBINDIR=\"$(bindir)\" $(srcdir)/main.c | |
1349 | ||
cf6a0e73 AC |
1350 | # FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral |
1351 | # errors. It turns out that that is the least of monitor.c's | |
1352 | # problems. The function print_vsprintf appears to be using | |
1353 | # va_arg(long) to extract CORE_ADDR parameters - something that | |
1354 | # definitly will not work. "monitor.c" needs to be rewritten so that | |
1355 | # it doesn't use format strings and instead uses callbacks. | |
1356 | monitor.o: $(srcdir)/monitor.c | |
1357 | $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/monitor.c | |
1358 | ||
4677b456 AC |
1359 | # FIXME: cagney/2003-08-10: Do not try to build "printcmd.c" with |
1360 | # -Wformat-nonliteral. It needs to be overhauled so that it doesn't | |
1361 | # pass user input strings as the format parameter to host printf | |
1362 | # function calls. | |
1363 | printcmd.o: $(srcdir)/printcmd.c | |
1364 | $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/printcmd.c | |
1365 | ||
f92d4a7b AC |
1366 | # FIXME: Procfs.o gets -Wformat errors because things like pid_t don't |
1367 | # match output format strings. | |
1368 | procfs.o: $(srcdir)/procfs.c | |
1369 | $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/procfs.c | |
1370 | ||
57725d84 EZ |
1371 | # FIXME: Thread-db.o gets warnings because the definitions of the register |
1372 | # sets are different from kernel to kernel. | |
1373 | thread-db.o: $(srcdir)/thread-db.c | |
1374 | $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) \ | |
1375 | $(srcdir)/thread-db.c | |
1376 | ||
f92d4a7b AC |
1377 | v850ice.o: $(srcdir)/v850ice.c |
1378 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ | |
b2a1bd4f | 1379 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ |
f92d4a7b AC |
1380 | $(GDBTK_CFLAGS) \ |
1381 | $(srcdir)/v850ice.c | |
1382 | ||
07978cd8 AC |
1383 | # FIXME: cagney/2003-08-10: Do not try to build "valprint.c" with |
1384 | # -Wformat-nonliteral. It relies on local_hex_format et.al. and | |
1385 | # that's a mess. It needs a serious overhaul. | |
1386 | valprint.o: $(srcdir)/valprint.c | |
1387 | $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $(srcdir)/valprint.c | |
1388 | ||
0e0d15ca | 1389 | # |
1517c6d1 | 1390 | # YACC/LEX dependencies |
0e0d15ca | 1391 | # |
1517c6d1 AC |
1392 | # LANG-exp.tab.c is generated in objdir from LANG-exp.y if it doesn't |
1393 | # exist in srcdir, then compiled in objdir to LANG-exp.tab.o. If we | |
1394 | # said LANG-exp.tab.c rather than ./c-exp.tab.c some makes would | |
1395 | # sometimes re-write it into $(srcdir)/c-exp.tab.c. Remove bogus | |
1396 | # decls for malloc/realloc/free which conflict with everything else. | |
1397 | # Strictly speaking c-exp.tab.c should therefore depend on | |
1398 | # Makefile.in, but that was a pretty big annoyance. | |
0e0d15ca | 1399 | |
1517c6d1 | 1400 | .PRECIOUS: ada-exp.tab.c |
91092ee5 AC |
1401 | ada-exp.tab.o: ada-exp.tab.c $(defs_h) $(expression_h) $(value_h) \ |
1402 | $(parser_defs_h) $(language_h) $(ada_lang_h) $(bfd_h) $(symfile_h) \ | |
1403 | $(objfiles_h) $(frame_h) $(block_h) $(ada_lex_c) | |
1404 | ada-exp.tab.c: ada-exp.y | |
1405 | $(SHELL) $(YLWRAP) "$(YACC)" \ | |
3cf93817 | 1406 | $(srcdir)/ada-exp.y y.tab.c ada-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1407 | -sed -e '/extern.*malloc/d' \ |
1408 | -e '/extern.*realloc/d' \ | |
1409 | -e '/extern.*free/d' \ | |
1410 | -e '/include.*malloc.h/d' \ | |
1411 | -e 's/malloc/xmalloc/g' \ | |
1412 | -e 's/realloc/xrealloc/g' \ | |
91092ee5 AC |
1413 | -e '/^#line.*y.tab.c/d' \ |
1414 | < ada-exp.tmp > ada-exp.new | |
1415 | -rm ada-exp.tmp | |
1517c6d1 AC |
1416 | mv ada-exp.new ./ada-exp.tab.c |
1417 | .PRECIOUS: ada-lex.c | |
1418 | ada-lex.o: ada-lex.c | |
1419 | ada-lex.c: ada-lex.l | |
1420 | @if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \ | |
1421 | echo $(FLEX) -Isit $(srcdir)/ada-lex.l ">" ada-lex.c; \ | |
1422 | $(FLEX) -Isit $(srcdir)/ada-lex.l > ada-lex.c; \ | |
1423 | elif [ ! -f ada-lex.c -a ! -f $(srcdir)/ada-lex.c ]; then \ | |
1424 | echo "ada-lex.c missing and flex not available."; \ | |
1425 | false; \ | |
1426 | elif [ ! -f ada-lex.c ]; then \ | |
1427 | echo "Warning: ada-lex.c older than ada-lex.l and flex not available."; \ | |
1428 | fi | |
1429 | .PRECIOUS: c-exp.tab.c | |
0e0d15ca AC |
1430 | c-exp.tab.o: c-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1431 | $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) $(bfd_h) \ | |
79c2c32d | 1432 | $(symfile_h) $(objfiles_h) $(charset_h) $(block_h) $(cp_support_h) |
1517c6d1 | 1433 | c-exp.tab.c: c-exp.y |
91092ee5 | 1434 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1435 | $(srcdir)/c-exp.y y.tab.c c-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1436 | -sed -e '/extern.*malloc/d' \ |
1437 | -e '/extern.*realloc/d' \ | |
1438 | -e '/extern.*free/d' \ | |
1439 | -e '/include.*malloc.h/d' \ | |
1440 | -e 's/malloc/xmalloc/g' \ | |
1441 | -e 's/realloc/xrealloc/g' \ | |
1442 | -e '/^#line.*y.tab.c/d' \ | |
1443 | < c-exp.tmp > c-exp.new | |
1444 | -rm c-exp.tmp | |
1445 | mv c-exp.new ./c-exp.tab.c | |
1446 | .PRECIOUS: f-exp.tab.c | |
91092ee5 AC |
1447 | f-exp.tab.o: f-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1448 | $(value_h) $(parser_defs_h) $(language_h) $(f_lang_h) $(bfd_h) \ | |
1449 | $(symfile_h) $(objfiles_h) $(block_h) | |
1517c6d1 | 1450 | f-exp.tab.c: f-exp.y |
91092ee5 | 1451 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1452 | $(srcdir)/f-exp.y y.tab.c f-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1453 | -sed -e '/extern.*malloc/d' \ |
1454 | -e '/extern.*realloc/d' \ | |
1455 | -e '/extern.*free/d' \ | |
1456 | -e '/include.*malloc.h/d' \ | |
1457 | -e 's/malloc/xmalloc/g' \ | |
1458 | -e 's/realloc/xrealloc/g' \ | |
1459 | -e '/^#line.*y.tab.c/d' \ | |
1460 | < f-exp.tmp > f-exp.new | |
1461 | -rm f-exp.tmp | |
1462 | mv f-exp.new ./f-exp.tab.c | |
1463 | .PRECIOUS: jv-exp.tab.c | |
91092ee5 AC |
1464 | jv-exp.tab.o: jv-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1465 | $(value_h) $(parser_defs_h) $(language_h) $(jv_lang_h) $(bfd_h) \ | |
1466 | $(symfile_h) $(objfiles_h) $(block_h) | |
1517c6d1 | 1467 | jv-exp.tab.c: jv-exp.y |
91092ee5 | 1468 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1469 | $(srcdir)/jv-exp.y y.tab.c jv-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1470 | -sed -e '/extern.*malloc/d' \ |
1471 | -e '/extern.*realloc/d' \ | |
1472 | -e '/extern.*free/d' \ | |
1473 | -e '/include.*malloc.h/d' \ | |
1474 | -e 's/malloc/xmalloc/g' \ | |
1475 | -e 's/realloc/xrealloc/g' \ | |
1476 | -e '/^#line.*y.tab.c/d' \ | |
1477 | < jv-exp.tmp > jv-exp.new | |
1478 | -rm jv-exp.tmp | |
1479 | mv jv-exp.new ./jv-exp.tab.c | |
1480 | .PRECIOUS: m2-exp.tab.c | |
91092ee5 AC |
1481 | m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1482 | $(language_h) $(value_h) $(parser_defs_h) $(m2_lang_h) $(bfd_h) \ | |
1483 | $(symfile_h) $(objfiles_h) $(block_h) | |
1517c6d1 | 1484 | m2-exp.tab.c: m2-exp.y |
91092ee5 | 1485 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1486 | $(srcdir)/m2-exp.y y.tab.c m2-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1487 | -sed -e '/extern.*malloc/d' \ |
1488 | -e '/extern.*realloc/d' \ | |
1489 | -e '/extern.*free/d' \ | |
1490 | -e '/include.*malloc.h/d' \ | |
1491 | -e 's/malloc/xmalloc/g' \ | |
1492 | -e 's/realloc/xrealloc/g' \ | |
1493 | -e '/^#line.*y.tab.c/d' \ | |
1494 | < m2-exp.tmp > m2-exp.new | |
1495 | -rm m2-exp.tmp | |
1496 | mv m2-exp.new ./m2-exp.tab.c | |
1497 | .PRECIOUS: objc-exp.tab.c | |
91092ee5 AC |
1498 | objc-exp.tab.o: objc-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1499 | $(objc_lang_h) $(value_h) $(parser_defs_h) $(language_h) $(c_lang_h) \ | |
1500 | $(bfd_h) $(symfile_h) $(objfiles_h) $(top_h) $(completer_h) \ | |
1501 | $(block_h) | |
1517c6d1 | 1502 | objc-exp.tab.c: objc-exp.y |
91092ee5 | 1503 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1504 | $(srcdir)/objc-exp.y y.tab.c objc-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1505 | -sed -e '/extern.*malloc/d' \ |
1506 | -e '/extern.*realloc/d' \ | |
1507 | -e '/extern.*free/d' \ | |
1508 | -e '/include.*malloc.h/d' \ | |
1509 | -e 's/malloc/xmalloc/g' \ | |
1510 | -e 's/realloc/xrealloc/g' \ | |
1511 | -e '/^#line.*y.tab.c/d' \ | |
1512 | < objc-exp.tmp > objc-exp.new | |
1513 | -rm objc-exp.tmp | |
1514 | mv objc-exp.new ./objc-exp.tab.c | |
1515 | .PRECIOUS: p-exp.tab.c | |
91092ee5 AC |
1516 | p-exp.tab.o: p-exp.tab.c $(defs_h) $(gdb_string_h) $(expression_h) \ |
1517 | $(value_h) $(parser_defs_h) $(language_h) $(p_lang_h) $(bfd_h) \ | |
1518 | $(symfile_h) $(objfiles_h) $(block_h) | |
1517c6d1 | 1519 | p-exp.tab.c: p-exp.y |
91092ee5 | 1520 | $(SHELL) $(YLWRAP) "$(YACC)" \ |
3cf93817 | 1521 | $(srcdir)/p-exp.y y.tab.c p-exp.tmp -- $(YFLAGS) |
1517c6d1 AC |
1522 | -sed -e '/extern.*malloc/d' \ |
1523 | -e '/extern.*realloc/d' \ | |
1524 | -e '/extern.*free/d' \ | |
1525 | -e '/include.*malloc.h/d' \ | |
1526 | -e 's/malloc/xmalloc/g' \ | |
1527 | -e 's/realloc/xrealloc/g' \ | |
1528 | -e '/^#line.*y.tab.c/d' \ | |
1529 | < p-exp.tmp > p-exp.new | |
1530 | -rm p-exp.tmp | |
1531 | mv p-exp.new ./p-exp.tab.c | |
0e0d15ca | 1532 | |
e822a2a0 | 1533 | # |
1517c6d1 | 1534 | # gdb/ dependencies |
e822a2a0 | 1535 | # |
f92d4a7b | 1536 | |
e822a2a0 | 1537 | abug-rom.o: abug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
32eeb91a | 1538 | $(serial_h) $(regcache_h) $(m68k_tdep_h) |
e822a2a0 AC |
1539 | ada-lang.o: ada-lang.c $(gdb_string_h) $(demangle_h) $(defs_h) $(symtab_h) \ |
1540 | $(gdbtypes_h) $(gdbcmd_h) $(expression_h) $(parser_defs_h) \ | |
1541 | $(language_h) $(c_lang_h) $(inferior_h) $(symfile_h) $(objfiles_h) \ | |
04714b91 | 1542 | $(breakpoint_h) $(gdbcore_h) $(ada_lang_h) $(ui_out_h) $(block_h) \ |
de4f826b | 1543 | $(infcall_h) $(dictionary_h) |
e822a2a0 | 1544 | ada-tasks.o: ada-tasks.c $(defs_h) $(command_h) $(value_h) $(language_h) \ |
91092ee5 AC |
1545 | $(inferior_h) $(symtab_h) $(target_h) $(regcache_h) $(gdbcore_h) \ |
1546 | $(gregset_h) $(ada_lang_h) | |
e822a2a0 AC |
1547 | ada-typeprint.o: ada-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) \ |
1548 | $(symtab_h) $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) \ | |
1549 | $(target_h) $(command_h) $(gdbcmd_h) $(language_h) $(demangle_h) \ | |
1550 | $(c_lang_h) $(typeprint_h) $(ada_lang_h) $(gdb_string_h) | |
1551 | ada-valprint.o: ada-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ | |
1552 | $(expression_h) $(value_h) $(demangle_h) $(valprint_h) $(language_h) \ | |
04714b91 | 1553 | $(annotate_h) $(ada_lang_h) $(c_lang_h) $(infcall_h) |
e822a2a0 AC |
1554 | aix-thread.o: aix-thread.c $(defs_h) $(gdb_assert_h) $(gdbthread_h) \ |
1555 | $(target_h) $(inferior_h) $(regcache_h) $(gdbcmd_h) $(language_h) \ | |
1556 | $(ppc_tdep_h) | |
91092ee5 AC |
1557 | alphabsd-nat.o: alphabsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ |
1558 | $(alpha_tdep_h) $(alphabsd_tdep_h) $(gregset_h) | |
1559 | alphabsd-tdep.o: alphabsd-tdep.c $(defs_h) $(alpha_tdep_h) \ | |
1560 | $(alphabsd_tdep_h) | |
1561 | alphafbsd-tdep.o: alphafbsd-tdep.c $(defs_h) $(value_h) $(osabi_h) \ | |
1562 | $(alpha_tdep_h) | |
baa490c4 | 1563 | alpha-linux-tdep.o: alpha-linux-tdep.c $(defs_h) $(frame_h) $(gdb_assert_h) \ |
91092ee5 | 1564 | $(osabi_h) $(alpha_tdep_h) |
8f285956 RH |
1565 | alpha-mdebug-tdep.o: alpha-mdebug-tdep.c $(defs_h) $(frame_h) \ |
1566 | $(frame_unwind_h) $(frame_base_h) $(symtab_h) $(gdbcore_h) \ | |
1567 | $(block_h) $(gdb_assert_h) $(alpha_tdep_h) | |
91092ee5 AC |
1568 | alpha-nat.o: alpha-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \ |
1569 | $(gdbcore_h) $(target_h) $(regcache_h) $(alpha_tdep_h) $(gregset_h) | |
2ca8ae21 | 1570 | alphanbsd-tdep.o: alphanbsd-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \ |
91092ee5 AC |
1571 | $(regcache_h) $(value_h) $(osabi_h) $(solib_svr4_h) $(alpha_tdep_h) \ |
1572 | $(alphabsd_tdep_h) $(nbsd_tdep_h) | |
1573 | alpha-osf1-tdep.o: alpha-osf1-tdep.c $(defs_h) $(frame_h) $(gdbcore_h) \ | |
1574 | $(value_h) $(osabi_h) $(gdb_string_h) $(objfiles_h) $(alpha_tdep_h) | |
1575 | alpha-tdep.o: alpha-tdep.c $(defs_h) $(doublest_h) $(frame_h) \ | |
1576 | $(frame_unwind_h) $(frame_base_h) $(dwarf2_frame_h) $(inferior_h) \ | |
1577 | $(symtab_h) $(value_h) $(gdbcmd_h) $(gdbcore_h) $(dis_asm_h) \ | |
1578 | $(symfile_h) $(objfiles_h) $(gdb_string_h) $(linespec_h) \ | |
1579 | $(regcache_h) $(reggroups_h) $(arch_utils_h) $(osabi_h) $(block_h) \ | |
1580 | $(elf_bfd_h) $(alpha_tdep_h) | |
cced5e27 MK |
1581 | amd64bsd-nat.o: amd64bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ |
1582 | $(gdb_assert_h) $(x86_64_tdep_h) $(amd64_nat_h) | |
91092ee5 | 1583 | amd64fbsd-nat.o: amd64fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ |
c14a44d5 | 1584 | $(gdb_assert_h) $(gregset_h) $(x86_64_tdep_h) $(amd64_nat_h) |
91092ee5 | 1585 | amd64fbsd-tdep.o: amd64fbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \ |
68cc0bfb MK |
1586 | $(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_string_h) \ |
1587 | $(x86_64_tdep_h) | |
b2100910 AC |
1588 | amd64-nat.o: amd64-nat.c $(defs_h) $(gdbarch_h) $(regcache_h) \ |
1589 | $(gdb_assert_h) $(i386_tdep_h) $(x86_64_tdep_h) | |
1590 | amd64nbsd-nat.o: amd64nbsd-nat.c $(defs_h) $(gdb_assert_h) $(x86_64_tdep_h) \ | |
1591 | $(amd64_nat_h) | |
cced5e27 MK |
1592 | amd64nbsd-tdep.o: amd64nbsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \ |
1593 | $(gdbcore_h) $(osabi_h) $(gdb_assert_h) $(nbsd_tdep_h) \ | |
1594 | $(x86_64_tdep_h) | |
e822a2a0 AC |
1595 | annotate.o: annotate.c $(defs_h) $(annotate_h) $(value_h) $(target_h) \ |
1596 | $(gdbtypes_h) $(breakpoint_h) | |
1bfd8a83 AC |
1597 | arch-utils.o: arch-utils.c $(defs_h) $(arch_utils_h) $(buildsym_h) \ |
1598 | $(gdbcmd_h) $(inferior_h) $(gdb_string_h) $(regcache_h) \ | |
b2100910 AC |
1599 | $(gdb_assert_h) $(sim_regno_h) $(osabi_h) $(version_h) \ |
1600 | $(floatformat_h) | |
ed9a39eb | 1601 | arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ |
b2100910 | 1602 | $(gdb_string_h) $(regcache_h) $(arm_tdep_h) $(gregset_h) |
1b0cad1c | 1603 | arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) $(target_h) $(value_h) \ |
e822a2a0 | 1604 | $(gdbtypes_h) $(floatformat_h) $(gdbcore_h) $(frame_h) $(regcache_h) \ |
b2100910 AC |
1605 | $(doublest_h) $(solib_svr4_h) $(osabi_h) $(arm_tdep_h) \ |
1606 | $(glibc_tdep_h) | |
70f80edf JT |
1607 | armnbsd-nat.o: armnbsd-nat.c $(defs_h) $(arm_tdep_h) $(inferior_h) \ |
1608 | $(regcache_h) $(gdbcore_h) | |
91092ee5 AC |
1609 | armnbsd-tdep.o: armnbsd-tdep.c $(defs_h) $(osabi_h) $(arm_tdep_h) \ |
1610 | $(nbsd_tdep_h) $(solib_svr4_h) | |
1611 | arm-tdep.o: arm-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcmd_h) \ | |
1612 | $(gdbcore_h) $(symfile_h) $(gdb_string_h) $(dis_asm_h) $(regcache_h) \ | |
c14a44d5 AC |
1613 | $(doublest_h) $(value_h) $(arch_utils_h) $(osabi_h) \ |
1614 | $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(arm_tdep_h) \ | |
91092ee5 | 1615 | $(gdb_sim_arm_h) $(elf_bfd_h) $(coff_internal_h) $(elf_arm_h) \ |
c14a44d5 | 1616 | $(gdb_assert_h) $(bfd_in2_h) $(libcoff_h) |
20d286a5 AC |
1617 | auxv.o: auxv.c $(defs_h) $(target_h) $(gdbtypes_h) $(command_h) \ |
1618 | $(inferior_h) $(valprint_h) $(gdb_assert_h) $(auxv_h) \ | |
1619 | $(elf_common_h) | |
91092ee5 AC |
1620 | avr-tdep.o: avr-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |
1621 | $(frame_base_h) $(trad_frame_h) $(gdbcmd_h) $(gdbcore_h) \ | |
1622 | $(inferior_h) $(symfile_h) $(arch_utils_h) $(regcache_h) \ | |
a89aa300 | 1623 | $(gdb_string_h) $(dis_asm_h) |
e822a2a0 AC |
1624 | ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) \ |
1625 | $(value_h) $(expression_h) $(command_h) $(gdbcmd_h) $(frame_h) \ | |
7b83296f AC |
1626 | $(target_h) $(ax_h) $(ax_gdb_h) $(gdb_string_h) $(block_h) \ |
1627 | $(regcache_h) | |
e822a2a0 | 1628 | ax-general.o: ax-general.c $(defs_h) $(ax_h) $(value_h) $(gdb_string_h) |
b2100910 AC |
1629 | bcache.o: bcache.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(gdb_string_h) \ |
1630 | $(gdb_assert_h) | |
bba2d28d AC |
1631 | bfd-target.o: bfd-target.c $(defs_h) $(target_h) $(bfd_target_h) \ |
1632 | $(gdb_assert_h) $(gdb_string_h) | |
9219021c DC |
1633 | block.o: block.c $(defs_h) $(block_h) $(symtab_h) $(symfile_h) \ |
1634 | $(gdb_obstack_h) $(cp_support_h) | |
e822a2a0 AC |
1635 | blockframe.o: blockframe.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \ |
1636 | $(objfiles_h) $(frame_h) $(gdbcore_h) $(value_h) $(target_h) \ | |
9c1412c1 | 1637 | $(inferior_h) $(annotate_h) $(regcache_h) $(gdb_assert_h) \ |
fe898f56 | 1638 | $(dummy_frame_h) $(command_h) $(gdbcmd_h) $(block_h) |
e822a2a0 AC |
1639 | breakpoint.o: breakpoint.c $(defs_h) $(symtab_h) $(frame_h) $(breakpoint_h) \ |
1640 | $(gdbtypes_h) $(expression_h) $(gdbcore_h) $(gdbcmd_h) $(value_h) \ | |
1641 | $(command_h) $(inferior_h) $(gdbthread_h) $(target_h) $(language_h) \ | |
1642 | $(gdb_string_h) $(demangle_h) $(annotate_h) $(symfile_h) \ | |
91092ee5 AC |
1643 | $(objfiles_h) $(source_h) $(linespec_h) $(completer_h) $(gdb_h) \ |
1644 | $(ui_out_h) $(cli_script_h) $(gdb_assert_h) $(block_h) \ | |
1645 | $(gdb_events_h) | |
04ea0df1 | 1646 | buildsym.o: buildsym.c $(defs_h) $(bfd_h) $(gdb_obstack_h) $(symtab_h) \ |
bf4ae8b2 | 1647 | $(symfile_h) $(objfiles_h) $(gdbtypes_h) $(gdb_assert_h) \ |
91092ee5 AC |
1648 | $(complaints_h) $(gdb_string_h) $(expression_h) $(language_h) \ |
1649 | $(bcache_h) $(filenames_h) $(macrotab_h) $(demangle_h) $(block_h) \ | |
1650 | $(cp_support_h) $(dictionary_h) $(buildsym_h) $(stabsread_h) | |
1651 | charset.o: charset.c $(defs_h) $(charset_h) $(gdbcmd_h) $(gdb_assert_h) \ | |
1652 | $(gdb_string_h) | |
e822a2a0 AC |
1653 | c-lang.o: c-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
1654 | $(parser_defs_h) $(language_h) $(c_lang_h) $(valprint_h) \ | |
9a3d7dfd | 1655 | $(macroscope_h) $(gdb_assert_h) $(charset_h) $(gdb_string_h) \ |
91092ee5 | 1656 | $(demangle_h) $(cp_support_h) |
e822a2a0 AC |
1657 | cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h) $(gdb_string_h) \ |
1658 | $(gdb_assert_h) | |
91092ee5 AC |
1659 | coff-pe-read.o: coff-pe-read.c $(coff_pe_read_h) $(bfd_h) $(defs_h) \ |
1660 | $(gdbtypes_h) $(symtab_h) $(symfile_h) $(objfiles_h) | |
04ea0df1 AC |
1661 | coffread.o: coffread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(demangle_h) \ |
1662 | $(breakpoint_h) $(bfd_h) $(gdb_obstack_h) $(gdb_string_h) \ | |
1663 | $(coff_internal_h) $(libcoff_h) $(symfile_h) $(objfiles_h) \ | |
1664 | $(buildsym_h) $(gdb_stabs_h) $(stabsread_h) $(complaints_h) \ | |
de4f826b DC |
1665 | $(target_h) $(gdb_assert_h) $(block_h) $(dictionary_h) \ |
1666 | $(coff_pe_read_h) | |
91092ee5 AC |
1667 | coff-solib.o: coff-solib.c $(defs_h) $(frame_h) $(bfd_h) $(gdbcore_h) \ |
1668 | $(symtab_h) $(symfile_h) $(objfiles_h) | |
b9caf505 AC |
1669 | complaints.o: complaints.c $(defs_h) $(complaints_h) $(gdb_assert_h) \ |
1670 | $(command_h) $(gdbcmd_h) | |
e822a2a0 | 1671 | completer.o: completer.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
b2100910 AC |
1672 | $(filenames_h) $(language_h) $(cli_decode_h) $(gdbcmd_h) \ |
1673 | $(completer_h) | |
e822a2a0 AC |
1674 | copying.o: copying.c $(defs_h) $(command_h) $(gdbcmd_h) |
1675 | core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(regcache_h) \ | |
1676 | $(gdb_dirent_h) $(gdb_stat_h) | |
e822a2a0 AC |
1677 | corefile.o: corefile.c $(defs_h) $(gdb_string_h) $(inferior_h) $(symtab_h) \ |
1678 | $(command_h) $(gdbcmd_h) $(bfd_h) $(target_h) $(gdbcore_h) \ | |
1679 | $(dis_asm_h) $(gdb_stat_h) $(completer_h) | |
b2100910 AC |
1680 | corelow.o: corelow.c $(defs_h) $(arch_utils_h) $(gdb_string_h) $(frame_h) \ |
1681 | $(inferior_h) $(symtab_h) $(command_h) $(bfd_h) $(target_h) \ | |
1682 | $(gdbcore_h) $(gdbthread_h) $(regcache_h) $(regset_h) $(symfile_h) \ | |
1683 | $(exec_h) $(gdb_assert_h) | |
91092ee5 AC |
1684 | core-regset.o: core-regset.c $(defs_h) $(command_h) $(gdbcore_h) \ |
1685 | $(inferior_h) $(target_h) $(gdb_string_h) $(gregset_h) | |
91092ee5 AC |
1686 | cp-abi.o: cp-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(command_h) $(gdbcmd_h) \ |
1687 | $(ui_out_h) $(gdb_string_h) | |
9219021c | 1688 | cp-namespace.o: cp-namespace.c $(defs_h) $(cp_support_h) $(gdb_obstack_h) \ |
5c4e30ca | 1689 | $(symtab_h) $(symfile_h) $(gdb_assert_h) $(block_h) $(objfiles_h) \ |
b368761e | 1690 | $(gdbtypes_h) $(dictionary_h) $(command_h) $(frame_h) |
9219021c | 1691 | cp-support.o: cp-support.c $(defs_h) $(cp_support_h) $(gdb_string_h) \ |
b6429628 | 1692 | $(demangle_h) $(gdb_assert_h) $(gdbcmd_h) $(dictionary_h) \ |
b2100910 AC |
1693 | $(objfiles_h) $(frame_h) $(symtab_h) $(block_h) $(complaints_h) \ |
1694 | $(gdbtypes_h) | |
91092ee5 AC |
1695 | cpu32bug-rom.o: cpu32bug-rom.c $(defs_h) $(gdbcore_h) $(target_h) \ |
1696 | $(monitor_h) $(serial_h) $(regcache_h) $(m68k_tdep_h) | |
04ea0df1 AC |
1697 | cp-valprint.o: cp-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \ |
1698 | $(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \ | |
1699 | $(demangle_h) $(annotate_h) $(gdb_string_h) $(c_lang_h) $(target_h) \ | |
973177d3 | 1700 | $(cp_abi_h) $(valprint_h) |
e822a2a0 AC |
1701 | cris-tdep.o: cris-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(inferior_h) \ |
1702 | $(gdbtypes_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) $(value_h) \ | |
c14a44d5 | 1703 | $(opcode_cris_h) $(arch_utils_h) $(regcache_h) $(gdb_assert_h) \ |
a89aa300 | 1704 | $(symfile_h) $(solib_h) $(solib_svr4_h) $(gdb_string_h) $(dis_asm_h) |
91092ee5 AC |
1705 | c-typeprint.o: c-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ |
1706 | $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \ | |
1707 | $(language_h) $(demangle_h) $(c_lang_h) $(typeprint_h) $(cp_abi_h) \ | |
1708 | $(gdb_string_h) | |
1709 | c-valprint.o: c-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \ | |
b2100910 AC |
1710 | $(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \ |
1711 | $(c_lang_h) $(cp_abi_h) $(target_h) | |
270cb5d6 AC |
1712 | d10v-tdep.o: d10v-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |
1713 | $(frame_base_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \ | |
1714 | $(gdb_string_h) $(value_h) $(inferior_h) $(dis_asm_h) $(symfile_h) \ | |
91092ee5 AC |
1715 | $(objfiles_h) $(language_h) $(arch_utils_h) $(regcache_h) \ |
1716 | $(remote_h) $(floatformat_h) $(gdb_sim_d10v_h) $(sim_regno_h) \ | |
1717 | $(disasm_h) $(trad_frame_h) $(gdb_assert_h) | |
e822a2a0 | 1718 | dbug-rom.o: dbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
32eeb91a | 1719 | $(serial_h) $(regcache_h) $(m68k_tdep_h) |
e822a2a0 AC |
1720 | dbxread.o: dbxread.c $(defs_h) $(gdb_string_h) $(gdb_obstack_h) \ |
1721 | $(gdb_stat_h) $(symtab_h) $(breakpoint_h) $(target_h) $(gdbcore_h) \ | |
1722 | $(libaout_h) $(symfile_h) $(objfiles_h) $(buildsym_h) $(stabsread_h) \ | |
04ea0df1 | 1723 | $(gdb_stabs_h) $(demangle_h) $(language_h) $(complaints_h) \ |
1bfd8a83 | 1724 | $(cp_abi_h) $(gdb_assert_h) $(aout_aout64_h) $(aout_stab_gnu_h) |
e822a2a0 AC |
1725 | dcache.o: dcache.c $(defs_h) $(dcache_h) $(gdbcmd_h) $(gdb_string_h) \ |
1726 | $(gdbcore_h) $(target_h) | |
c906108c | 1727 | delta68-nat.o: delta68-nat.c $(defs_h) |
e822a2a0 AC |
1728 | demangle.o: demangle.c $(defs_h) $(command_h) $(gdbcmd_h) $(demangle_h) \ |
1729 | $(gdb_string_h) | |
de4f826b DC |
1730 | dictionary.o: dictionary.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \ |
1731 | $(buildsym_h) $(gdb_assert_h) $(dictionary_h) | |
e822a2a0 AC |
1732 | dink32-rom.o: dink32-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
1733 | $(serial_h) $(symfile_h) $(inferior_h) $(regcache_h) | |
91092ee5 | 1734 | disasm.o: disasm.c $(defs_h) $(target_h) $(value_h) $(ui_out_h) \ |
a89aa300 | 1735 | $(gdb_string_h) $(disasm_h) $(gdbcore_h) $(dis_asm_h) |
e822a2a0 AC |
1736 | doublest.o: doublest.c $(defs_h) $(doublest_h) $(floatformat_h) \ |
1737 | $(gdb_assert_h) $(gdb_string_h) $(gdbtypes_h) | |
6e0ce711 | 1738 | dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) $(gdb_string_h) |
cdcd5552 AC |
1739 | dsrec.o: dsrec.c $(defs_h) $(serial_h) $(srec_h) $(gdb_assert_h) \ |
1740 | $(gdb_string_h) | |
9c1412c1 | 1741 | dummy-frame.o: dummy-frame.c $(defs_h) $(dummy_frame_h) $(regcache_h) \ |
00905d52 AC |
1742 | $(frame_h) $(inferior_h) $(gdb_assert_h) $(frame_unwind_h) \ |
1743 | $(command_h) $(gdbcmd_h) | |
e822a2a0 | 1744 | dve3900-rom.o: dve3900-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
56cea623 AC |
1745 | $(serial_h) $(inferior_h) $(command_h) $(gdb_string_h) $(regcache_h) \ |
1746 | $(mips_tdep_h) | |
4c2df51b | 1747 | dwarf2expr.o: dwarf2expr.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) \ |
91092ee5 AC |
1748 | $(gdbcore_h) $(elf_dwarf2_h) $(dwarf2expr_h) |
1749 | dwarf2-frame.o: dwarf2-frame.c $(defs_h) $(dwarf2expr_h) $(elf_dwarf2_h) \ | |
1750 | $(frame_h) $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) \ | |
1751 | $(gdbtypes_h) $(symtab_h) $(objfiles_h) $(regcache_h) \ | |
1752 | $(gdb_assert_h) $(gdb_string_h) $(complaints_h) $(dwarf2_frame_h) | |
4c2df51b | 1753 | dwarf2loc.o: dwarf2loc.c $(defs_h) $(ui_out_h) $(value_h) $(frame_h) \ |
91092ee5 AC |
1754 | $(gdbcore_h) $(target_h) $(inferior_h) $(ax_h) $(ax_gdb_h) \ |
1755 | $(regcache_h) $(objfiles_h) $(elf_dwarf2_h) $(dwarf2expr_h) \ | |
1756 | $(dwarf2loc_h) $(gdb_string_h) | |
e822a2a0 AC |
1757 | dwarf2read.o: dwarf2read.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \ |
1758 | $(symfile_h) $(objfiles_h) $(elf_dwarf2_h) $(buildsym_h) \ | |
1759 | $(demangle_h) $(expression_h) $(filenames_h) $(macrotab_h) \ | |
4c2df51b | 1760 | $(language_h) $(complaints_h) $(bcache_h) $(dwarf2expr_h) \ |
9219021c | 1761 | $(dwarf2loc_h) $(cp_support_h) $(gdb_string_h) $(gdb_assert_h) |
e822a2a0 AC |
1762 | dwarfread.o: dwarfread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(symfile_h) \ |
1763 | $(objfiles_h) $(elf_dwarf_h) $(buildsym_h) $(demangle_h) \ | |
1764 | $(expression_h) $(language_h) $(complaints_h) $(gdb_string_h) | |
1765 | elfread.o: elfread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(elf_bfd_h) \ | |
1766 | $(elf_mips_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \ | |
1767 | $(stabsread_h) $(gdb_stabs_h) $(complaints_h) $(demangle_h) | |
1768 | environ.o: environ.c $(defs_h) $(environ_h) $(gdb_string_h) | |
1769 | eval.o: eval.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ | |
1770 | $(value_h) $(expression_h) $(target_h) $(frame_h) $(language_h) \ | |
5f9769d1 PH |
1771 | $(f_lang_h) $(cp_abi_h) $(infcall_h) $(objc_lang_h) $(block_h) \ |
1772 | $(parser_defs_h) | |
e822a2a0 AC |
1773 | event-loop.o: event-loop.c $(defs_h) $(event_loop_h) $(event_top_h) \ |
1774 | $(gdb_string_h) | |
1775 | event-top.o: event-top.c $(defs_h) $(top_h) $(inferior_h) $(target_h) \ | |
4389a95a AC |
1776 | $(terminal_h) $(event_loop_h) $(event_top_h) $(interps_h) \ |
1777 | $(gdbcmd_h) | |
e822a2a0 AC |
1778 | exec.o: exec.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) $(gdbcmd_h) \ |
1779 | $(language_h) $(symfile_h) $(objfiles_h) $(completer_h) $(value_h) \ | |
b2100910 | 1780 | $(exec_h) $(gdb_string_h) $(gdbcore_h) $(gdb_stat_h) $(xcoffsolib_h) |
e822a2a0 | 1781 | expprint.o: expprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
eb8bc282 AC |
1782 | $(value_h) $(language_h) $(parser_defs_h) $(user_regs_h) $(target_h) \ |
1783 | $(gdb_string_h) $(block_h) | |
e822a2a0 AC |
1784 | fbsd-proc.o: fbsd-proc.c $(defs_h) $(gdbcore_h) $(inferior_h) \ |
1785 | $(gdb_string_h) $(elf_bfd_h) $(gregset_h) | |
1786 | findvar.o: findvar.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(frame_h) \ | |
1787 | $(value_h) $(gdbcore_h) $(inferior_h) $(target_h) $(gdb_string_h) \ | |
1788 | $(gdb_assert_h) $(floatformat_h) $(symfile_h) $(regcache_h) \ | |
eb8bc282 | 1789 | $(user_regs_h) $(block_h) |
91092ee5 AC |
1790 | f-lang.o: f-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ |
1791 | $(expression_h) $(parser_defs_h) $(language_h) $(f_lang_h) \ | |
1792 | $(valprint_h) $(value_h) | |
e822a2a0 AC |
1793 | fork-child.o: fork-child.c $(defs_h) $(gdb_string_h) $(frame_h) \ |
1794 | $(inferior_h) $(target_h) $(gdb_wait_h) $(gdb_vfork_h) $(gdbcore_h) \ | |
1795 | $(terminal_h) $(gdbthread_h) $(command_h) | |
91092ee5 | 1796 | frame-base.o: frame-base.c $(defs_h) $(frame_base_h) $(frame_h) |
367e21d8 | 1797 | frame.o: frame.c $(defs_h) $(frame_h) $(target_h) $(value_h) $(inferior_h) \ |
eb8bc282 | 1798 | $(regcache_h) $(gdb_assert_h) $(gdb_string_h) $(user_regs_h) \ |
da62e633 AC |
1799 | $(gdb_obstack_h) $(dummy_frame_h) $(sentinel_frame_h) $(gdbcore_h) \ |
1800 | $(annotate_h) $(language_h) $(frame_unwind_h) $(frame_base_h) \ | |
1801 | $(command_h) $(gdbcmd_h) | |
494cca16 | 1802 | frame-unwind.o: frame-unwind.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |
91092ee5 | 1803 | $(gdb_assert_h) $(dummy_frame_h) |
8baa6f92 | 1804 | frv-tdep.o: frv-tdep.c $(defs_h) $(gdb_string_h) $(inferior_h) $(symfile_h) \ |
c14a44d5 | 1805 | $(gdbcore_h) $(arch_utils_h) $(regcache_h) $(frame_h) \ |
526eef89 | 1806 | $(frame_unwind_h) $(frame_base_h) $(trad_frame_h) $(dis_asm_h) \ |
b2100910 AC |
1807 | $(gdb_assert_h) $(sim_regno_h) $(gdb_sim_frv_h) \ |
1808 | $(opcodes_frv_desc_h) | |
91092ee5 AC |
1809 | f-typeprint.o: f-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ |
1810 | $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \ | |
1811 | $(f_lang_h) $(gdb_string_h) | |
1812 | f-valprint.o: f-valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) \ | |
1813 | $(gdbtypes_h) $(expression_h) $(value_h) $(valprint_h) $(language_h) \ | |
1814 | $(f_lang_h) $(frame_h) $(gdbcore_h) $(command_h) $(block_h) | |
1bfd8a83 AC |
1815 | gcore.o: gcore.c $(defs_h) $(elf_bfd_h) $(infcall_h) $(inferior_h) \ |
1816 | $(gdbcore_h) $(objfiles_h) $(symfile_h) $(cli_decode_h) \ | |
1817 | $(gdb_assert_h) | |
b66d6d2e | 1818 | gdbarch.o: gdbarch.c $(defs_h) $(arch_utils_h) $(gdbcmd_h) $(inferior_h) \ |
c14a44d5 AC |
1819 | $(symcat_h) $(floatformat_h) $(gdb_assert_h) $(gdb_string_h) \ |
1820 | $(gdb_events_h) $(reggroups_h) $(osabi_h) $(symfile_h) \ | |
1821 | $(gdb_obstack_h) | |
91092ee5 AC |
1822 | gdb.o: gdb.c $(defs_h) $(main_h) $(gdb_string_h) $(interps_h) |
1823 | gdb-events.o: gdb-events.c $(defs_h) $(gdb_events_h) $(gdbcmd_h) | |
e822a2a0 AC |
1824 | gdbtypes.o: gdbtypes.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \ |
1825 | $(symfile_h) $(objfiles_h) $(gdbtypes_h) $(expression_h) \ | |
1826 | $(language_h) $(target_h) $(value_h) $(demangle_h) $(complaints_h) \ | |
1827 | $(gdbcmd_h) $(wrapper_h) $(cp_abi_h) $(gdb_assert_h) | |
b2100910 AC |
1828 | glibc-tdep.o: glibc-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \ |
1829 | $(objfiles_h) $(glibc_tdep_h) | |
e822a2a0 AC |
1830 | gnu-nat.o: gnu-nat.c $(gdb_string_h) $(defs_h) $(inferior_h) $(symtab_h) \ |
1831 | $(value_h) $(language_h) $(target_h) $(gdb_wait_h) $(gdbcmd_h) \ | |
91092ee5 AC |
1832 | $(gdbcore_h) $(gdbthread_h) $(gdb_assert_h) $(gdb_obstack_h) \ |
1833 | $(gnu_nat_h) $(exc_request_S_h) $(notify_S_h) $(process_reply_S_h) \ | |
1834 | $(msg_reply_S_h) $(exc_request_U_h) $(msg_U_h) | |
529acb48 | 1835 | gnu-v2-abi.o: gnu-v2-abi.c $(defs_h) $(gdb_string_h) $(symtab_h) \ |
b2100910 AC |
1836 | $(gdbtypes_h) $(value_h) $(demangle_h) $(cp_abi_h) $(cp_support_h) |
1837 | gnu-v3-abi.o: gnu-v3-abi.c $(defs_h) $(value_h) $(cp_abi_h) $(cp_support_h) \ | |
1838 | $(demangle_h) $(gdb_assert_h) $(gdb_string_h) | |
e822a2a0 AC |
1839 | go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) $(gdb_wait_h) $(gdbcore_h) \ |
1840 | $(command_h) $(gdbcmd_h) $(floatformat_h) $(buildsym_h) \ | |
1841 | $(i387_tdep_h) $(i386_tdep_h) $(value_h) $(regcache_h) \ | |
1842 | $(gdb_string_h) | |
91092ee5 AC |
1843 | h8300-tdep.o: h8300-tdep.c $(defs_h) $(value_h) $(inferior_h) $(symfile_h) \ |
1844 | $(arch_utils_h) $(regcache_h) $(gdbcore_h) $(objfiles_h) $(gdbcmd_h) \ | |
a89aa300 | 1845 | $(gdb_assert_h) $(dis_asm_h) |
e822a2a0 AC |
1846 | hpacc-abi.o: hpacc-abi.c $(defs_h) $(value_h) $(gdb_regex_h) $(gdb_string_h) \ |
1847 | $(gdbtypes_h) $(gdbcore_h) $(cp_abi_h) | |
91092ee5 AC |
1848 | hppah-nat.o: hppah-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ |
1849 | $(gdb_wait_h) $(regcache_h) $(gdb_string_h) | |
1850 | hppa-hpux-tdep.o: hppa-hpux-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ | |
1851 | $(osabi_h) $(gdb_string_h) $(frame_h) | |
e822a2a0 | 1852 | hppa-tdep.o: hppa-tdep.c $(defs_h) $(frame_h) $(bfd_h) $(inferior_h) \ |
65e82032 | 1853 | $(value_h) $(regcache_h) $(completer_h) $(language_h) $(osabi_h) \ |
1bfd8a83 | 1854 | $(gdb_assert_h) $(infttrace_h) $(symtab_h) $(infcall_h) $(dis_asm_h) \ |
04714b91 | 1855 | $(a_out_encap_h) $(gdb_stat_h) $(gdb_wait_h) $(gdbcore_h) \ |
1bfd8a83 | 1856 | $(gdbcmd_h) $(target_h) $(symfile_h) $(objfiles_h) $(hppa_tdep_h) |
e822a2a0 AC |
1857 | hpread.o: hpread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(hp_symtab_h) \ |
1858 | $(syms_h) $(symtab_h) $(symfile_h) $(objfiles_h) $(buildsym_h) \ | |
1859 | $(complaints_h) $(gdb_stabs_h) $(gdbtypes_h) $(demangle_h) \ | |
65e82032 | 1860 | $(somsolib_h) $(gdb_assert_h) $(gdb_string_h) |
e822a2a0 | 1861 | hpux-thread.o: hpux-thread.c $(defs_h) $(gdbthread_h) $(target_h) \ |
b8a92b82 | 1862 | $(inferior_h) $(regcache_h) $(gdb_stat_h) $(gdbcore_h) |
91092ee5 AC |
1863 | i386b-nat.o: i386b-nat.c $(defs_h) |
1864 | i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ | |
1865 | $(gdb_assert_h) $(gregset_h) $(i386_tdep_h) $(i387_tdep_h) | |
1866 | i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \ | |
1867 | $(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_string_h) $(i386_tdep_h) | |
1868 | i386-cygwin-tdep.o: i386-cygwin-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ | |
1869 | $(i386_tdep_h) | |
c14a44d5 AC |
1870 | i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ |
1871 | $(i386_tdep_h) | |
8a96bc77 MK |
1872 | i386fbsd-tdep.o: i386fbsd-tdep.c $(defs_h) $(arch_utils_h) $(osabi_h) \ |
1873 | $(i386_tdep_h) $(i387_tdep_h) | |
91092ee5 AC |
1874 | i386gnu-nat.o: i386gnu-nat.c $(defs_h) $(inferior_h) $(floatformat_h) \ |
1875 | $(regcache_h) $(gdb_assert_h) $(i386_tdep_h) $(gnu_nat_h) \ | |
1876 | $(i387_tdep_h) $(gregset_h) | |
1877 | i386gnu-tdep.o: i386gnu-tdep.c $(defs_h) $(osabi_h) $(i386_tdep_h) | |
1878 | i386-interix-nat.o: i386-interix-nat.c $(defs_h) $(gdb_string_h) \ | |
1879 | $(gdbcore_h) $(gregset_h) $(regcache_h) | |
1880 | i386-interix-tdep.o: i386-interix-tdep.c $(defs_h) $(arch_utils_h) \ | |
1881 | $(frame_h) $(gdb_string_h) $(gdb_stabs_h) $(gdbcore_h) $(gdbtypes_h) \ | |
1882 | $(i386_tdep_h) $(inferior_h) $(libbfd_h) $(objfiles_h) $(osabi_h) \ | |
1883 | $(regcache_h) | |
e822a2a0 | 1884 | i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ |
c14a44d5 AC |
1885 | $(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \ |
1886 | $(gregset_h) $(i387_tdep_h) $(i386_tdep_h) $(i386_linux_tdep_h) \ | |
1887 | $(gdb_proc_service_h) | |
e7ee86a9 | 1888 | i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \ |
b2100910 AC |
1889 | $(value_h) $(regcache_h) $(inferior_h) $(osabi_h) $(reggroups_h) \ |
1890 | $(solib_svr4_h) $(gdb_string_h) $(i386_tdep_h) $(i386_linux_tdep_h) \ | |
1891 | $(glibc_tdep_h) | |
91092ee5 AC |
1892 | i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \ |
1893 | $(regcache_h) $(target_h) $(osabi_h) $(i386_tdep_h) | |
e822a2a0 | 1894 | i386-nat.o: i386-nat.c $(defs_h) $(breakpoint_h) $(command_h) $(gdbcmd_h) |
b2100910 AC |
1895 | i386nbsd-tdep.o: i386nbsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ |
1896 | $(regcache_h) $(regset_h) $(osabi_h) $(gdb_assert_h) $(gdb_string_h) \ | |
1897 | $(i386_tdep_h) $(i387_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h) | |
91092ee5 AC |
1898 | i386-nto-tdep.o: i386-nto-tdep.c $(gdb_string_h) $(gdb_assert_h) $(defs_h) \ |
1899 | $(frame_h) $(target_h) $(regcache_h) $(solib_svr4_h) $(i386_tdep_h) \ | |
1900 | $(nto_tdep_h) $(osabi_h) $(i387_tdep_h) | |
c14a44d5 | 1901 | i386obsd-nat.o: i386obsd-nat.c $(defs_h) $(i386_tdep_h) |
91092ee5 | 1902 | i386obsd-tdep.o: i386obsd-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) \ |
b2100910 AC |
1903 | $(regcache_h) $(regset_h) $(osabi_h) $(gdb_assert_h) $(gdb_string_h) \ |
1904 | $(i386_tdep_h) $(i387_tdep_h) | |
91092ee5 AC |
1905 | i386-sol2-tdep.o: i386-sol2-tdep.c $(defs_h) $(value_h) $(osabi_h) \ |
1906 | $(i386_tdep_h) | |
e822a2a0 | 1907 | i386-stub.o: i386-stub.c |
acd5c798 | 1908 | i386-tdep.o: i386-tdep.c $(defs_h) $(arch_utils_h) $(command_h) \ |
6405b0a6 MK |
1909 | $(dummy_frame_h) $(dwarf2_frame_h) $(doublest_h) $(floatformat_h) \ |
1910 | $(frame_h) $(frame_base_h) $(frame_unwind_h) $(inferior_h) \ | |
1911 | $(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(osabi_h) $(regcache_h) \ | |
1bfd8a83 AC |
1912 | $(reggroups_h) $(regset_h) $(symfile_h) $(symtab_h) $(target_h) \ |
1913 | $(value_h) $(dis_asm_h) $(gdb_assert_h) $(gdb_string_h) \ | |
1914 | $(i386_tdep_h) $(i387_tdep_h) | |
e822a2a0 AC |
1915 | i386v4-nat.o: i386v4-nat.c $(defs_h) $(value_h) $(inferior_h) $(regcache_h) \ |
1916 | $(i386_tdep_h) $(i387_tdep_h) $(gregset_h) | |
91092ee5 AC |
1917 | i386v-nat.o: i386v-nat.c $(defs_h) $(frame_h) $(inferior_h) $(language_h) \ |
1918 | $(gdbcore_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \ | |
1919 | $(i386_tdep_h) | |
1920 | i387-tdep.o: i387-tdep.c $(defs_h) $(doublest_h) $(floatformat_h) $(frame_h) \ | |
1921 | $(gdbcore_h) $(inferior_h) $(language_h) $(regcache_h) $(value_h) \ | |
1922 | $(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h) | |
e822a2a0 AC |
1923 | ia64-aix-nat.o: ia64-aix-nat.c $(defs_h) $(inferior_h) $(target_h) \ |
1924 | $(gdbcore_h) $(regcache_h) $(symtab_h) $(bfd_h) $(symfile_h) \ | |
1925 | $(objfiles_h) $(gdb_stat_h) | |
1926 | ia64-aix-tdep.o: ia64-aix-tdep.c $(defs_h) | |
2555fe1a AC |
1927 | ia64-linux-nat.o: ia64-linux-nat.c $(defs_h) $(gdb_string_h) $(inferior_h) \ |
1928 | $(target_h) $(gdbcore_h) $(regcache_h) $(gdb_wait_h) $(gregset_h) | |
b2100910 | 1929 | ia64-linux-tdep.o: ia64-linux-tdep.c $(defs_h) $(arch_utils_h) $(gdbcore_h) |
1b0cad1c | 1930 | ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) $(symfile_h) $(gdbcore_h) \ |
c14a44d5 AC |
1931 | $(arch_utils_h) $(floatformat_h) $(regcache_h) $(reggroups_h) \ |
1932 | $(frame_h) $(frame_base_h) $(frame_unwind_h) $(doublest_h) \ | |
91092ee5 | 1933 | $(value_h) $(gdb_assert_h) $(objfiles_h) $(elf_common_h) \ |
b2100910 AC |
1934 | $(elf_bfd_h) $(elf_h) $(dis_asm_h) $(libunwind_frame_h) \ |
1935 | $(libunwind_ia64_h) | |
04714b91 AC |
1936 | infcall.o: infcall.c $(defs_h) $(breakpoint_h) $(target_h) $(regcache_h) \ |
1937 | $(inferior_h) $(gdb_assert_h) $(block_h) $(gdbcore_h) $(language_h) \ | |
91092ee5 | 1938 | $(symfile_h) $(gdbcmd_h) $(command_h) $(gdb_string_h) $(infcall_h) |
e822a2a0 AC |
1939 | infcmd.o: infcmd.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ |
1940 | $(frame_h) $(inferior_h) $(environ_h) $(value_h) $(gdbcmd_h) \ | |
1941 | $(symfile_h) $(gdbcore_h) $(target_h) $(language_h) $(symfile_h) \ | |
1942 | $(objfiles_h) $(completer_h) $(ui_out_h) $(event_top_h) \ | |
b2100910 AC |
1943 | $(parser_defs_h) $(regcache_h) $(reggroups_h) $(block_h) \ |
1944 | $(gdb_assert_h) | |
91092ee5 AC |
1945 | inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(target_h) $(event_loop_h) \ |
1946 | $(event_top_h) $(inf_loop_h) $(remote_h) | |
e822a2a0 | 1947 | inflow.o: inflow.c $(defs_h) $(frame_h) $(inferior_h) $(command_h) \ |
44270758 AC |
1948 | $(serial_h) $(terminal_h) $(target_h) $(gdbthread_h) $(gdb_string_h) \ |
1949 | $(inflow_h) | |
e822a2a0 AC |
1950 | infptrace.o: infptrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
1951 | $(gdb_string_h) $(regcache_h) $(gdb_wait_h) $(command_h) \ | |
1952 | $(gdb_dirent_h) $(gdbcore_h) $(gdb_stat_h) | |
1953 | infrun.o: infrun.c $(defs_h) $(gdb_string_h) $(symtab_h) $(frame_h) \ | |
1954 | $(inferior_h) $(breakpoint_h) $(gdb_wait_h) $(gdbcore_h) $(gdbcmd_h) \ | |
1955 | $(cli_script_h) $(target_h) $(gdbthread_h) $(annotate_h) \ | |
06600e06 | 1956 | $(symfile_h) $(top_h) $(inf_loop_h) $(regcache_h) $(value_h) \ |
aff6338a | 1957 | $(observer_h) $(language_h) |
e822a2a0 | 1958 | inftarg.o: inftarg.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
44270758 | 1959 | $(gdbcore_h) $(command_h) $(gdb_stat_h) $(gdb_wait_h) $(inflow_h) |
e822a2a0 | 1960 | infttrace.o: infttrace.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
91092ee5 AC |
1961 | $(gdb_string_h) $(gdb_wait_h) $(command_h) $(gdbthread_h) \ |
1962 | $(gdbcore_h) | |
4389a95a AC |
1963 | interps.o: interps.c $(defs_h) $(gdbcmd_h) $(ui_out_h) $(event_loop_h) \ |
1964 | $(event_top_h) $(interps_h) $(completer_h) $(gdb_string_h) \ | |
1965 | $(gdb_events_h) $(gdb_assert_h) $(top_h) | |
1b0cad1c | 1966 | irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \ |
b2100910 | 1967 | $(regcache_h) $(gdb_string_h) $(gregset_h) $(mips_tdep_h) |
e822a2a0 AC |
1968 | jv-lang.o: jv-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
1969 | $(parser_defs_h) $(language_h) $(gdbtypes_h) $(symtab_h) \ | |
1970 | $(symfile_h) $(objfiles_h) $(gdb_string_h) $(value_h) $(c_lang_h) \ | |
de4f826b | 1971 | $(jv_lang_h) $(gdbcore_h) $(block_h) $(demangle_h) $(dictionary_h) |
e822a2a0 AC |
1972 | jv-typeprint.o: jv-typeprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ |
1973 | $(value_h) $(demangle_h) $(jv_lang_h) $(gdb_string_h) $(typeprint_h) \ | |
1974 | $(c_lang_h) $(cp_abi_h) | |
1975 | jv-valprint.o: jv-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ | |
1976 | $(gdbcore_h) $(expression_h) $(value_h) $(demangle_h) $(valprint_h) \ | |
1977 | $(language_h) $(jv_lang_h) $(c_lang_h) $(annotate_h) $(gdb_string_h) | |
17732724 | 1978 | kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) $(target_h) $(gdb_string_h) \ |
e822a2a0 | 1979 | $(kod_h) |
91092ee5 | 1980 | kod-cisco.o: kod-cisco.c $(defs_h) $(gdb_string_h) $(kod_h) |
e822a2a0 AC |
1981 | language.o: language.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ |
1982 | $(value_h) $(gdbcmd_h) $(expression_h) $(language_h) $(target_h) \ | |
9a3d7dfd | 1983 | $(parser_defs_h) $(jv_lang_h) $(demangle_h) |
b2100910 AC |
1984 | libunwind-frame.o: libunwind-frame.c $(defs_h) $(inferior_h) $(frame_h) \ |
1985 | $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) $(gdbtypes_h) \ | |
1986 | $(symtab_h) $(objfiles_h) $(regcache_h) $(gdb_assert_h) \ | |
1987 | $(gdb_string_h) $(libunwind_frame_h) $(complaints_h) | |
91092ee5 AC |
1988 | linespec.o: linespec.c $(defs_h) $(symtab_h) $(frame_h) $(command_h) \ |
1989 | $(symfile_h) $(objfiles_h) $(source_h) $(demangle_h) $(value_h) \ | |
1990 | $(completer_h) $(cp_abi_h) $(parser_defs_h) $(block_h) \ | |
1991 | $(objc_lang_h) $(linespec_h) | |
e822a2a0 | 1992 | lin-lwp.o: lin-lwp.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(gdb_wait_h) \ |
0274a8ce MS |
1993 | $(gdbthread_h) $(inferior_h) $(target_h) $(regcache_h) $(gdbcmd_h) \ |
1994 | $(linux_nat_h) | |
0274a8ce MS |
1995 | linux-nat.o: linux-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdb_wait_h) \ |
1996 | $(linux_nat_h) | |
91092ee5 AC |
1997 | linux-proc.o: linux-proc.c $(defs_h) $(inferior_h) $(gdb_stat_h) \ |
1998 | $(regcache_h) $(gregset_h) $(gdbcore_h) $(gdbthread_h) $(elf_bfd_h) \ | |
0274a8ce | 1999 | $(cli_decode_h) $(gdb_string_h) $(linux_nat_h) |
e822a2a0 AC |
2000 | lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
2001 | $(gdbcore_h) $(regcache_h) | |
2002 | m2-lang.o: m2-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ | |
2003 | $(parser_defs_h) $(language_h) $(m2_lang_h) $(c_lang_h) \ | |
2004 | $(valprint_h) | |
2005 | m2-typeprint.o: m2-typeprint.c $(defs_h) $(bfd_h) $(symtab_h) $(gdbtypes_h) \ | |
2006 | $(expression_h) $(value_h) $(gdbcore_h) $(target_h) $(m2_lang_h) | |
2007 | m2-valprint.o: m2-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ | |
2008 | $(m2_lang_h) | |
e822a2a0 AC |
2009 | m32r-rom.o: m32r-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
2010 | $(serial_h) $(symtab_h) $(command_h) $(gdbcmd_h) $(symfile_h) \ | |
2011 | $(gdb_string_h) $(objfiles_h) $(inferior_h) $(regcache_h) | |
2012 | m32r-stub.o: m32r-stub.c $(syscall_h) | |
91092ee5 AC |
2013 | m32r-tdep.o: m32r-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |
2014 | $(frame_base_h) $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) \ | |
2015 | $(gdb_string_h) $(value_h) $(inferior_h) $(symfile_h) $(objfiles_h) \ | |
2016 | $(language_h) $(arch_utils_h) $(regcache_h) $(trad_frame_h) \ | |
b2100910 | 2017 | $(dis_asm_h) $(gdb_assert_h) |
91092ee5 AC |
2018 | m68hc11-tdep.o: m68hc11-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ |
2019 | $(frame_base_h) $(dwarf2_frame_h) $(trad_frame_h) $(symtab_h) \ | |
e822a2a0 AC |
2020 | $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(gdb_string_h) $(value_h) \ |
2021 | $(inferior_h) $(dis_asm_h) $(symfile_h) $(objfiles_h) \ | |
91092ee5 AC |
2022 | $(arch_utils_h) $(regcache_h) $(reggroups_h) $(target_h) \ |
2023 | $(opcode_m68hc11_h) $(elf_m68hc11_h) $(elf_bfd_h) | |
c906108c | 2024 | m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \ |
d0b45d99 | 2025 | $(language_h) $(gdbcore_h) $(gdb_string_h) $(regcache_h) \ |
91092ee5 AC |
2026 | $(m68k_tdep_h) $(gdb_stat_h) $(floatformat_h) $(target_h) \ |
2027 | $(gregset_h) | |
2028 | m68klinux-tdep.o: m68klinux-tdep.c $(defs_h) $(gdbcore_h) $(doublest_h) \ | |
2029 | $(floatformat_h) $(frame_h) $(target_h) $(gdb_string_h) \ | |
2030 | $(gdbtypes_h) $(osabi_h) $(regcache_h) $(objfiles_h) $(symtab_h) \ | |
2031 | $(m68k_tdep_h) | |
e822a2a0 AC |
2032 | m68knbsd-nat.o: m68knbsd-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ |
2033 | $(regcache_h) | |
2034 | m68knbsd-tdep.o: m68knbsd-tdep.c $(defs_h) $(gdbtypes_h) $(regcache_h) | |
91092ee5 | 2035 | m68k-stub.o: m68k-stub.c |
3f244638 | 2036 | m68k-tdep.o: m68k-tdep.c $(defs_h) $(dwarf2_frame_h) $(frame_h) \ |
1bfd8a83 AC |
2037 | $(frame_base_h) $(frame_unwind_h) $(symtab_h) $(gdbcore_h) \ |
2038 | $(value_h) $(gdb_string_h) $(gdb_assert_h) $(inferior_h) \ | |
2039 | $(regcache_h) $(arch_utils_h) $(osabi_h) $(dis_asm_h) $(m68k_tdep_h) \ | |
2040 | $(gregset_h) | |
e822a2a0 AC |
2041 | macrocmd.o: macrocmd.c $(defs_h) $(macrotab_h) $(macroexp_h) $(macroscope_h) \ |
2042 | $(command_h) $(gdbcmd_h) | |
2043 | macroexp.o: macroexp.c $(defs_h) $(gdb_obstack_h) $(bcache_h) $(macrotab_h) \ | |
2044 | $(macroexp_h) $(gdb_assert_h) | |
91092ee5 AC |
2045 | macroscope.o: macroscope.c $(defs_h) $(macroscope_h) $(symtab_h) $(source_h) \ |
2046 | $(target_h) $(frame_h) $(inferior_h) $(complaints_h) | |
e822a2a0 AC |
2047 | macrotab.o: macrotab.c $(defs_h) $(gdb_obstack_h) $(splay_tree_h) \ |
2048 | $(symtab_h) $(symfile_h) $(objfiles_h) $(macrotab_h) $(gdb_assert_h) \ | |
2049 | $(bcache_h) $(complaints_h) | |
2050 | main.o: main.c $(defs_h) $(top_h) $(target_h) $(inferior_h) $(symfile_h) \ | |
2051 | $(gdbcore_h) $(getopt_h) $(gdb_stat_h) $(gdb_string_h) \ | |
4389a95a | 2052 | $(event_loop_h) $(ui_out_h) $(interps_h) $(main_h) |
e822a2a0 AC |
2053 | maint.o: maint.c $(defs_h) $(command_h) $(gdbcmd_h) $(symtab_h) \ |
2054 | $(gdbtypes_h) $(demangle_h) $(gdbcore_h) $(expression_h) \ | |
2055 | $(language_h) $(symfile_h) $(objfiles_h) $(value_h) $(cli_decode_h) | |
17732724 AC |
2056 | mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
2057 | $(gdb_string_h) $(regcache_h) $(serial_h) | |
e822a2a0 AC |
2058 | mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \ |
2059 | $(gdbcmd_h) $(regcache_h) $(symfile_h) $(gdbcore_h) $(inferior_h) \ | |
a89aa300 | 2060 | $(arch_utils_h) $(gdb_string_h) $(disasm_h) $(dis_asm_h) |
04ea0df1 AC |
2061 | mdebugread.o: mdebugread.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \ |
2062 | $(symfile_h) $(objfiles_h) $(gdb_obstack_h) $(buildsym_h) \ | |
2063 | $(stabsread_h) $(complaints_h) $(demangle_h) $(gdb_assert_h) \ | |
91092ee5 AC |
2064 | $(block_h) $(dictionary_h) $(coff_sym_h) $(coff_symconst_h) \ |
2065 | $(gdb_stat_h) $(gdb_string_h) $(bfd_h) $(coff_ecoff_h) $(libaout_h) \ | |
2066 | $(aout_aout64_h) $(aout_stab_gnu_h) $(expression_h) $(language_h) | |
88fe217c RE |
2067 | memattr.o: memattr.c $(defs_h) $(command_h) $(gdbcmd_h) $(memattr_h) \ |
2068 | $(target_h) $(value_h) $(language_h) $(gdb_string_h) | |
91092ee5 AC |
2069 | mem-break.o: mem-break.c $(defs_h) $(symtab_h) $(breakpoint_h) $(inferior_h) \ |
2070 | $(target_h) | |
e822a2a0 AC |
2071 | minsyms.o: minsyms.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \ |
2072 | $(symfile_h) $(objfiles_h) $(demangle_h) $(value_h) $(cp_abi_h) | |
2073 | mips-irix-tdep.o: mips-irix-tdep.c $(defs_h) $(osabi_h) $(elf_bfd_h) | |
6b753f60 | 2074 | mips-linux-nat.o: mips-linux-nat.c $(defs_h) $(mips_tdep_h) |
d2b57b94 | 2075 | mips-linux-tdep.o: mips-linux-tdep.c $(defs_h) $(gdbcore_h) $(target_h) \ |
91092ee5 | 2076 | $(solib_svr4_h) $(osabi_h) $(mips_tdep_h) $(gdb_string_h) \ |
96f026fc | 2077 | $(gdb_assert_h) |
e822a2a0 | 2078 | mips-nat.o: mips-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(regcache_h) |
257ce470 | 2079 | mipsnbsd-nat.o: mipsnbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ |
e822a2a0 | 2080 | $(mipsnbsd_tdep_h) |
257ce470 | 2081 | mipsnbsd-tdep.o: mipsnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \ |
91092ee5 AC |
2082 | $(target_h) $(value_h) $(osabi_h) $(nbsd_tdep_h) $(mipsnbsd_tdep_h) \ |
2083 | $(solib_svr4_h) | |
e822a2a0 AC |
2084 | mipsread.o: mipsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \ |
2085 | $(symfile_h) $(objfiles_h) $(buildsym_h) $(stabsread_h) \ | |
2086 | $(coff_sym_h) $(coff_internal_h) $(coff_ecoff_h) $(libcoff_h) \ | |
2087 | $(libecoff_h) $(elf_common_h) $(elf_mips_h) | |
91092ee5 AC |
2088 | mips-tdep.o: mips-tdep.c $(defs_h) $(gdb_string_h) $(gdb_assert_h) \ |
2089 | $(frame_h) $(inferior_h) $(symtab_h) $(value_h) $(gdbcmd_h) \ | |
2090 | $(language_h) $(gdbcore_h) $(symfile_h) $(objfiles_h) $(gdbtypes_h) \ | |
2091 | $(target_h) $(arch_utils_h) $(regcache_h) $(osabi_h) $(mips_tdep_h) \ | |
2092 | $(block_h) $(reggroups_h) $(opcode_mips_h) $(elf_mips_h) \ | |
a89aa300 | 2093 | $(elf_bfd_h) $(symcat_h) $(sim_regno_h) $(dis_asm_h) |
e822a2a0 AC |
2094 | mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(target_h) \ |
2095 | $(regcache_h) $(gregset_h) | |
91092ee5 | 2096 | mn10300-tdep.o: mn10300-tdep.c $(defs_h) $(frame_h) $(inferior_h) \ |
e822a2a0 | 2097 | $(target_h) $(value_h) $(bfd_h) $(gdb_string_h) $(gdbcore_h) \ |
a89aa300 AC |
2098 | $(symfile_h) $(regcache_h) $(arch_utils_h) $(gdb_assert_h) \ |
2099 | $(dis_asm_h) | |
e822a2a0 AC |
2100 | monitor.o: monitor.c $(defs_h) $(gdbcore_h) $(target_h) $(gdb_string_h) \ |
2101 | $(command_h) $(serial_h) $(monitor_h) $(gdbcmd_h) $(inferior_h) \ | |
2102 | $(gdb_regex_h) $(srec_h) $(regcache_h) | |
3d9b49b0 | 2103 | nbsd-tdep.o: nbsd-tdep.c $(defs_h) $(gdb_string_h) $(solib_svr4_h) |
e822a2a0 | 2104 | nlmread.o: nlmread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \ |
fe898f56 | 2105 | $(objfiles_h) $(buildsym_h) $(stabsread_h) $(block_h) |
e822a2a0 AC |
2106 | ns32knbsd-nat.o: ns32knbsd-nat.c $(defs_h) $(inferior_h) $(target_h) \ |
2107 | $(gdbcore_h) $(regcache_h) | |
91092ee5 AC |
2108 | ns32knbsd-tdep.o: ns32knbsd-tdep.c $(defs_h) $(osabi_h) $(ns32k_tdep_h) \ |
2109 | $(gdb_string_h) | |
2110 | ns32k-tdep.o: ns32k-tdep.c $(defs_h) $(frame_h) $(gdbtypes_h) $(gdbcore_h) \ | |
2111 | $(inferior_h) $(regcache_h) $(target_h) $(arch_utils_h) $(osabi_h) \ | |
a89aa300 | 2112 | $(dis_asm_h) $(ns32k_tdep_h) $(gdb_string_h) |
91092ee5 AC |
2113 | nto-procfs.o: nto-procfs.c $(defs_h) $(gdb_dirent_h) $(gdb_string_h) \ |
2114 | $(gdbcore_h) $(inferior_h) $(target_h) $(objfiles_h) $(gdbthread_h) \ | |
2115 | $(nto_tdep_h) $(command_h) $(regcache_h) | |
2116 | nto-tdep.o: nto-tdep.c $(gdb_stat_h) $(gdb_string_h) $(nto_tdep_h) $(top_h) \ | |
2117 | $(cli_decode_h) $(cli_cmds_h) $(inferior_h) $(gdbarch_h) $(bfd_h) \ | |
2118 | $(elf_bfd_h) $(solib_svr4_h) $(gdbcore_h) | |
a76c9d72 AF |
2119 | objc-lang.o: objc-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
2120 | $(parser_defs_h) $(language_h) $(c_lang_h) $(objc_lang_h) \ | |
91092ee5 AC |
2121 | $(complaints_h) $(value_h) $(symfile_h) $(objfiles_h) \ |
2122 | $(gdb_string_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(frame_h) \ | |
2123 | $(gdb_regex_h) $(regcache_h) $(block_h) $(infcall_h) $(valprint_h) \ | |
2124 | $(gdb_assert_h) | |
04ea0df1 | 2125 | objfiles.o: objfiles.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \ |
c14a44d5 AC |
2126 | $(objfiles_h) $(gdb_stabs_h) $(target_h) $(bcache_h) $(gdb_assert_h) \ |
2127 | $(gdb_stat_h) $(gdb_obstack_h) $(gdb_string_h) $(hashtab_h) \ | |
9175c9a3 | 2128 | $(breakpoint_h) $(block_h) $(dictionary_h) |
91092ee5 | 2129 | observer.o: observer.c $(defs_h) $(observer_h) |
e822a2a0 AC |
2130 | ocd.o: ocd.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) $(inferior_h) \ |
2131 | $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) $(objfiles_h) \ | |
2132 | $(gdb_stabs_h) $(serial_h) $(ocd_h) $(regcache_h) | |
91092ee5 AC |
2133 | osabi.o: osabi.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(osabi_h) \ |
2134 | $(arch_utils_h) $(gdbcmd_h) $(command_h) $(elf_bfd_h) | |
e822a2a0 AC |
2135 | pa64solib.o: pa64solib.c $(defs_h) $(frame_h) $(bfd_h) $(libhppa_h) \ |
2136 | $(gdbcore_h) $(symtab_h) $(breakpoint_h) $(symfile_h) $(objfiles_h) \ | |
2137 | $(inferior_h) $(gdb_stabs_h) $(gdb_stat_h) $(gdbcmd_h) $(language_h) \ | |
4646aa9d | 2138 | $(regcache_h) $(exec_h) |
e822a2a0 AC |
2139 | parse.o: parse.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ |
2140 | $(frame_h) $(expression_h) $(value_h) $(command_h) $(language_h) \ | |
2141 | $(parser_defs_h) $(gdbcmd_h) $(symfile_h) $(inferior_h) \ | |
91092ee5 AC |
2142 | $(doublest_h) $(gdb_assert_h) $(block_h) |
2143 | p-lang.o: p-lang.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ | |
2144 | $(expression_h) $(parser_defs_h) $(language_h) $(p_lang_h) \ | |
2145 | $(valprint_h) $(value_h) | |
6e0ce711 | 2146 | ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) $(gdb_string_h) $(frame_h) \ |
1b0cad1c | 2147 | $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \ |
e822a2a0 AC |
2148 | $(objfiles_h) $(gdb_stabs_h) $(serial_h) $(ocd_h) $(ppc_tdep_h) \ |
2149 | $(regcache_h) | |
91092ee5 AC |
2150 | ppcbug-rom.o: ppcbug-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
2151 | $(serial_h) $(regcache_h) | |
2555fe1a AC |
2152 | ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdb_string_h) $(frame_h) \ |
2153 | $(inferior_h) $(gdbcore_h) $(regcache_h) $(gdb_wait_h) $(gregset_h) \ | |
2154 | $(ppc_tdep_h) | |
e822a2a0 AC |
2155 | ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(frame_h) $(inferior_h) \ |
2156 | $(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) \ | |
91092ee5 AC |
2157 | $(objfiles_h) $(regcache_h) $(value_h) $(osabi_h) $(solib_svr4_h) \ |
2158 | $(ppc_tdep_h) | |
7b112f9c | 2159 | ppcnbsd-nat.o: ppcnbsd-nat.c $(defs_h) $(inferior_h) $(ppc_tdep_h) \ |
e822a2a0 | 2160 | $(ppcnbsd_tdep_h) |
7b112f9c | 2161 | ppcnbsd-tdep.o: ppcnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) \ |
91092ee5 AC |
2162 | $(target_h) $(breakpoint_h) $(value_h) $(osabi_h) $(ppc_tdep_h) \ |
2163 | $(ppcnbsd_tdep_h) $(nbsd_tdep_h) $(solib_svr4_h) | |
2164 | ppc-sysv-tdep.o: ppc-sysv-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \ | |
6066c3de | 2165 | $(regcache_h) $(value_h) $(gdb_string_h) $(gdb_assert_h) \ |
b2100910 | 2166 | $(ppc_tdep_h) $(target_h) $(objfiles_h) |
e822a2a0 AC |
2167 | printcmd.o: printcmd.c $(defs_h) $(gdb_string_h) $(frame_h) $(symtab_h) \ |
2168 | $(gdbtypes_h) $(value_h) $(language_h) $(expression_h) $(gdbcore_h) \ | |
2169 | $(gdbcmd_h) $(target_h) $(breakpoint_h) $(demangle_h) $(valprint_h) \ | |
2170 | $(annotate_h) $(symfile_h) $(objfiles_h) $(completer_h) $(ui_out_h) \ | |
92bf2b80 | 2171 | $(gdb_assert_h) $(block_h) $(disasm_h) |
2555fe1a AC |
2172 | proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) $(completer_h) $(gdb_wait_h) \ |
2173 | $(proc_utils_h) | |
0fda6bd2 | 2174 | proc-events.o: proc-events.c $(defs_h) |
0fda6bd2 | 2175 | proc-flags.o: proc-flags.c $(defs_h) |
91092ee5 AC |
2176 | procfs.o: procfs.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ |
2177 | $(elf_bfd_h) $(gdbcmd_h) $(gdbthread_h) $(gdb_wait_h) \ | |
20d286a5 AC |
2178 | $(gdb_string_h) $(gdb_assert_h) $(inflow_h) $(auxv_h) \ |
2179 | $(gdb_dirent_h) $(X_OK) $(gdb_stat_h) $(proc_utils_h) $(gregset_h) | |
e822a2a0 AC |
2180 | proc-service.o: proc-service.c $(defs_h) $(gdb_proc_service_h) $(inferior_h) \ |
2181 | $(symtab_h) $(target_h) $(gregset_h) | |
2182 | proc-why.o: proc-why.c $(defs_h) $(proc_utils_h) | |
91092ee5 AC |
2183 | p-typeprint.o: p-typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ |
2184 | $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(target_h) \ | |
2185 | $(language_h) $(p_lang_h) $(typeprint_h) $(gdb_string_h) | |
2186 | p-valprint.o: p-valprint.c $(defs_h) $(gdb_obstack_h) $(symtab_h) \ | |
2187 | $(gdbtypes_h) $(expression_h) $(value_h) $(command_h) $(gdbcmd_h) \ | |
2188 | $(gdbcore_h) $(demangle_h) $(valprint_h) $(typeprint_h) \ | |
2189 | $(language_h) $(target_h) $(annotate_h) $(p_lang_h) $(cp_abi_h) | |
e822a2a0 | 2190 | regcache.o: regcache.c $(defs_h) $(inferior_h) $(target_h) $(gdbarch_h) \ |
b59ff9d5 AC |
2191 | $(gdbcmd_h) $(regcache_h) $(reggroups_h) $(gdb_assert_h) \ |
2192 | $(gdb_string_h) $(gdbcmd_h) | |
2193 | reggroups.o: reggroups.c $(defs_h) $(reggroups_h) $(gdbtypes_h) \ | |
2194 | $(gdb_assert_h) $(regcache_h) $(command_h) $(gdbcmd_h) | |
91092ee5 AC |
2195 | remote.o: remote.c $(defs_h) $(gdb_string_h) $(inferior_h) $(bfd_h) \ |
2196 | $(symfile_h) $(target_h) $(gdbcmd_h) $(objfiles_h) $(gdb_stabs_h) \ | |
2197 | $(gdbthread_h) $(remote_h) $(regcache_h) $(value_h) $(gdb_assert_h) \ | |
2198 | $(event_loop_h) $(event_top_h) $(inf_loop_h) $(serial_h) \ | |
2199 | $(gdbcore_h) $(remote_fileio_h) | |
e822a2a0 AC |
2200 | remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) $(gdbarch_h) \ |
2201 | $(inferior_h) $(target_h) $(value_h) $(command_h) $(gdb_string_h) \ | |
2202 | $(gdbcmd_h) $(serial_h) $(remote_utils_h) $(symfile_h) $(regcache_h) | |
e822a2a0 | 2203 | remote-est.o: remote-est.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
32eeb91a | 2204 | $(serial_h) $(regcache_h) $(m68k_tdep_h) |
91092ee5 AC |
2205 | remote-fileio.o: remote-fileio.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \ |
2206 | $(remote_h) $(gdb_fileio_h) $(gdb_wait_h) $(gdb_stat_h) \ | |
2207 | $(remote_fileio_h) | |
e822a2a0 AC |
2208 | remote-hms.o: remote-hms.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
2209 | $(serial_h) $(regcache_h) | |
b4b4b794 KI |
2210 | remote-m32r-sdi.o: remote-m32r-sdi.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ |
2211 | $(inferior_h) $(target_h) $(regcache_h) $(gdb_string_h) $(serial_h) | |
e822a2a0 AC |
2212 | remote-mips.o: remote-mips.c $(defs_h) $(inferior_h) $(bfd_h) $(symfile_h) \ |
2213 | $(gdbcmd_h) $(gdbcore_h) $(serial_h) $(target_h) $(remote_utils_h) \ | |
56cea623 | 2214 | $(gdb_string_h) $(gdb_stat_h) $(regcache_h) $(mips_tdep_h) |
e822a2a0 AC |
2215 | remote-rdi.o: remote-rdi.c $(defs_h) $(gdb_string_h) $(frame_h) \ |
2216 | $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \ | |
2217 | $(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \ | |
2218 | $(breakpoint_h) $(completer_h) $(regcache_h) $(arm_tdep_h) \ | |
2219 | $(rdi_share_ardi_h) $(rdi_share_adp_h) $(rdi_share_hsys_h) | |
2220 | remote-rdp.o: remote-rdp.c $(defs_h) $(inferior_h) $(value_h) \ | |
2221 | $(gdb_callback_h) $(command_h) $(symfile_h) $(remote_utils_h) \ | |
2222 | $(gdb_string_h) $(gdbcore_h) $(regcache_h) $(serial_h) $(arm_tdep_h) | |
2223 | remote-sds.o: remote-sds.c $(defs_h) $(gdb_string_h) $(frame_h) \ | |
2224 | $(inferior_h) $(bfd_h) $(symfile_h) $(target_h) $(gdbcmd_h) \ | |
2225 | $(objfiles_h) $(gdb_stabs_h) $(gdbthread_h) $(gdbcore_h) \ | |
2226 | $(regcache_h) $(serial_h) | |
2227 | remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) \ | |
2228 | $(gdb_string_h) $(terminal_h) $(target_h) $(gdbcore_h) \ | |
2229 | $(gdb_callback_h) $(gdb_remote_sim_h) $(remote_utils_h) $(command_h) \ | |
b2100910 | 2230 | $(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h) |
e822a2a0 AC |
2231 | remote-st.o: remote-st.c $(defs_h) $(gdbcore_h) $(target_h) $(gdb_string_h) \ |
2232 | $(serial_h) $(regcache_h) | |
2233 | remote-utils.o: remote-utils.c $(defs_h) $(gdb_string_h) $(gdbcmd_h) \ | |
2234 | $(target_h) $(serial_h) $(gdbcore_h) $(inferior_h) $(remote_utils_h) \ | |
17732724 | 2235 | $(regcache_h) |
e822a2a0 AC |
2236 | remote-vx68.o: remote-vx68.c $(defs_h) $(vx_share_regPacket_h) $(frame_h) \ |
2237 | $(inferior_h) $(target_h) $(gdbcore_h) $(command_h) $(symtab_h) \ | |
2238 | $(symfile_h) $(regcache_h) $(gdb_string_h) $(vx_share_ptrace_h) \ | |
2239 | $(vx_share_xdr_ptrace_h) $(vx_share_xdr_ld_h) $(vx_share_xdr_rdb_h) \ | |
2240 | $(vx_share_dbgRpcLib_h) | |
91092ee5 AC |
2241 | remote-vx.o: remote-vx.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
2242 | $(gdbcore_h) $(command_h) $(symtab_h) $(complaints_h) $(gdbcmd_h) \ | |
2243 | $(bfd_h) $(symfile_h) $(objfiles_h) $(gdb_stabs_h) $(regcache_h) \ | |
2244 | $(gdb_string_h) $(vx_share_ptrace_h) $(vx_share_xdr_ptrace_h) \ | |
2245 | $(vx_share_xdr_ld_h) $(vx_share_xdr_rdb_h) $(vx_share_dbgRpcLib_h) | |
e822a2a0 AC |
2246 | remote-vxmips.o: remote-vxmips.c $(defs_h) $(vx_share_regPacket_h) \ |
2247 | $(frame_h) $(inferior_h) $(target_h) $(gdbcore_h) $(command_h) \ | |
2248 | $(symtab_h) $(symfile_h) $(regcache_h) $(gdb_string_h) \ | |
2249 | $(vx_share_ptrace_h) $(vx_share_xdr_ptrace_h) $(vx_share_xdr_ld_h) \ | |
2250 | $(vx_share_xdr_rdb_h) $(vx_share_dbgRpcLib_h) | |
b2100910 AC |
2251 | remote-vxsparc.o: remote-vxsparc.c $(defs_h) $(regcache_h) $(gdb_string_h) \ |
2252 | $(sparc_tdep_h) $(vx_share_ptrace_h) $(vx_share_regPacket_h) | |
e822a2a0 | 2253 | rom68k-rom.o: rom68k-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
32eeb91a | 2254 | $(serial_h) $(regcache_h) $(value_h) $(m68k_tdep_h) |
e822a2a0 AC |
2255 | rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ |
2256 | $(xcoffsolib_h) $(symfile_h) $(objfiles_h) $(libbfd_h) $(bfd_h) \ | |
c41669e0 | 2257 | $(gdb_stabs_h) $(regcache_h) $(arch_utils_h) $(language_h) \ |
b2100910 | 2258 | $(ppc_tdep_h) $(exec_h) $(gdb_stat_h) |
e822a2a0 AC |
2259 | rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(symtab_h) \ |
2260 | $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) $(objfiles_h) \ | |
2261 | $(arch_utils_h) $(regcache_h) $(doublest_h) $(value_h) \ | |
91092ee5 AC |
2262 | $(parser_defs_h) $(osabi_h) $(libbfd_h) $(coff_internal_h) \ |
2263 | $(libcoff_h) $(coff_xcoff_h) $(libxcoff_h) $(elf_bfd_h) \ | |
a89aa300 | 2264 | $(solib_svr4_h) $(ppc_tdep_h) $(gdb_assert_h) $(dis_asm_h) |
e822a2a0 AC |
2265 | s390-nat.o: s390-nat.c $(defs_h) $(tm_h) $(regcache_h) |
2266 | s390-tdep.o: s390-tdep.c $(arch_utils_h) $(frame_h) $(inferior_h) \ | |
e81b020b | 2267 | $(symtab_h) $(target_h) $(gdbcore_h) $(gdbcmd_h) $(symfile_h) \ |
e822a2a0 | 2268 | $(objfiles_h) $(tm_h) $(__bfd_bfd_h) $(floatformat_h) $(regcache_h) \ |
a89aa300 | 2269 | $(value_h) $(gdb_assert_h) $(dis_asm_h) |
e822a2a0 AC |
2270 | scm-exp.o: scm-exp.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ |
2271 | $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \ | |
2272 | $(scm_tags_h) | |
2273 | scm-lang.o: scm-lang.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(expression_h) \ | |
2274 | $(parser_defs_h) $(language_h) $(value_h) $(c_lang_h) $(scm_lang_h) \ | |
04714b91 | 2275 | $(scm_tags_h) $(source_h) $(gdb_string_h) $(gdbcore_h) $(infcall_h) |
e822a2a0 AC |
2276 | scm-valprint.o: scm-valprint.c $(defs_h) $(symtab_h) $(gdbtypes_h) \ |
2277 | $(expression_h) $(parser_defs_h) $(language_h) $(value_h) \ | |
2278 | $(scm_lang_h) $(valprint_h) $(gdbcore_h) | |
a94dd1fd AC |
2279 | sentinel-frame.o: sentinel-frame.c $(defs_h) $(regcache_h) \ |
2280 | $(sentinel_frame_h) $(inferior_h) $(frame_unwind_h) | |
e822a2a0 AC |
2281 | ser-e7kpc.o: ser-e7kpc.c $(defs_h) $(serial_h) $(gdb_string_h) |
2282 | ser-go32.o: ser-go32.c $(defs_h) $(gdbcmd_h) $(serial_h) $(gdb_string_h) | |
91092ee5 | 2283 | serial.o: serial.c $(defs_h) $(serial_h) $(gdb_string_h) $(gdbcmd_h) |
e822a2a0 AC |
2284 | ser-pipe.o: ser-pipe.c $(defs_h) $(serial_h) $(ser_unix_h) $(gdb_vfork_h) \ |
2285 | $(gdb_string_h) | |
2286 | ser-tcp.o: ser-tcp.c $(defs_h) $(serial_h) $(ser_unix_h) $(gdb_string_h) | |
2287 | ser-unix.o: ser-unix.c $(defs_h) $(serial_h) $(ser_unix_h) $(terminal_h) \ | |
2288 | $(gdb_string_h) $(event_loop_h) | |
e822a2a0 | 2289 | sh3-rom.o: sh3-rom.c $(defs_h) $(gdbcore_h) $(target_h) $(monitor_h) \ |
9bbe19fb DC |
2290 | $(serial_h) $(srec_h) $(arch_utils_h) $(regcache_h) $(gdb_string_h) \ |
2291 | $(sh_tdep_h) | |
1bfd8a83 AC |
2292 | sh64-tdep.o: sh64-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(symfile_h) \ |
2293 | $(gdbtypes_h) $(gdbcmd_h) $(gdbcore_h) $(value_h) $(dis_asm_h) \ | |
2294 | $(inferior_h) $(gdb_string_h) $(arch_utils_h) $(floatformat_h) \ | |
2295 | $(regcache_h) $(doublest_h) $(osabi_h) $(elf_bfd_h) $(solib_svr4_h) \ | |
2296 | $(elf_sh_h) $(gdb_sim_sh_h) | |
91092ee5 AC |
2297 | shnbsd-nat.o: shnbsd-nat.c $(defs_h) $(inferior_h) $(sh_tdep_h) \ |
2298 | $(shnbsd_tdep_h) | |
e822a2a0 | 2299 | shnbsd-tdep.o: shnbsd-tdep.c $(defs_h) $(gdbcore_h) $(regcache_h) $(value_h) \ |
91092ee5 AC |
2300 | $(osabi_h) $(solib_svr4_h) $(nbsd_tdep_h) $(sh_tdep_h) \ |
2301 | $(shnbsd_tdep_h) | |
2302 | sh-stub.o: sh-stub.c | |
1bfd8a83 AC |
2303 | sh-tdep.o: sh-tdep.c $(defs_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \ |
2304 | $(dwarf2_frame_h) $(symtab_h) $(symfile_h) $(gdbtypes_h) $(gdbcmd_h) \ | |
2305 | $(gdbcore_h) $(value_h) $(dis_asm_h) $(inferior_h) $(gdb_string_h) \ | |
2306 | $(gdb_assert_h) $(arch_utils_h) $(floatformat_h) $(regcache_h) \ | |
2307 | $(doublest_h) $(osabi_h) $(sh_tdep_h) $(elf_bfd_h) $(solib_svr4_h) \ | |
2308 | $(elf_sh_h) $(gdb_sim_sh_h) | |
e822a2a0 AC |
2309 | solib-aix5.o: solib-aix5.c $(defs_h) $(gdb_string_h) $(elf_external_h) \ |
2310 | $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(gdbcore_h) \ | |
2311 | $(command_h) $(target_h) $(frame_h) $(gdb_regex_h) $(inferior_h) \ | |
2312 | $(environ_h) $(language_h) $(gdbcmd_h) $(solist_h) | |
91092ee5 AC |
2313 | solib.o: solib.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) $(symfile_h) \ |
2314 | $(objfiles_h) $(gdbcore_h) $(command_h) $(target_h) $(frame_h) \ | |
2315 | $(gdb_regex_h) $(inferior_h) $(environ_h) $(language_h) $(gdbcmd_h) \ | |
b2100910 | 2316 | $(completer_h) $(filenames_h) $(exec_h) $(solist_h) |
e822a2a0 AC |
2317 | solib-irix.o: solib-irix.c $(defs_h) $(symtab_h) $(bfd_h) $(symfile_h) \ |
2318 | $(objfiles_h) $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h) | |
2319 | solib-legacy.o: solib-legacy.c $(defs_h) $(gdbcore_h) $(solib_svr4_h) | |
2320 | solib-osf.o: solib-osf.c $(defs_h) $(gdb_string_h) $(bfd_h) $(symtab_h) \ | |
2321 | $(symfile_h) $(objfiles_h) $(target_h) $(inferior_h) $(solist_h) | |
2322 | solib-sunos.o: solib-sunos.c $(defs_h) $(gdb_string_h) $(symtab_h) $(bfd_h) \ | |
03cc47f7 MK |
2323 | $(symfile_h) $(objfiles_h) $(gdbcore_h) $(inferior_h) $(solist_h) \ |
2324 | $(bcache_h) $(regcache_h) | |
e822a2a0 AC |
2325 | solib-svr4.o: solib-svr4.c $(defs_h) $(elf_external_h) $(elf_common_h) \ |
2326 | $(elf_mips_h) $(symtab_h) $(bfd_h) $(symfile_h) $(objfiles_h) \ | |
2f4950cd AC |
2327 | $(gdbcore_h) $(target_h) $(inferior_h) $(solist_h) $(solib_svr4_h) \ |
2328 | $(bfd_target_h) $(exec_h) | |
91092ee5 AC |
2329 | sol-thread.o: sol-thread.c $(defs_h) $(gdbthread_h) $(target_h) \ |
2330 | $(inferior_h) $(gdb_stat_h) $(gdbcmd_h) $(gdbcore_h) $(regcache_h) \ | |
1bfd8a83 | 2331 | $(symfile_h) $(gdb_string_h) $(gregset_h) |
e822a2a0 AC |
2332 | somread.o: somread.c $(defs_h) $(bfd_h) $(symtab_h) $(symfile_h) \ |
2333 | $(objfiles_h) $(buildsym_h) $(stabsread_h) $(gdb_stabs_h) \ | |
2334 | $(complaints_h) $(gdb_string_h) $(demangle_h) $(som_h) $(libhppa_h) | |
2335 | somsolib.o: somsolib.c $(defs_h) $(frame_h) $(bfd_h) $(som_h) $(libhppa_h) \ | |
2336 | $(gdbcore_h) $(symtab_h) $(breakpoint_h) $(symfile_h) $(objfiles_h) \ | |
2337 | $(inferior_h) $(gdb_stabs_h) $(gdb_stat_h) $(gdbcmd_h) $(language_h) \ | |
4646aa9d | 2338 | $(regcache_h) $(gdb_assert_h) $(exec_h) |
e822a2a0 AC |
2339 | source.o: source.c $(defs_h) $(symtab_h) $(expression_h) $(language_h) \ |
2340 | $(command_h) $(source_h) $(gdbcmd_h) $(frame_h) $(value_h) \ | |
2341 | $(gdb_string_h) $(gdb_stat_h) $(gdbcore_h) $(gdb_regex_h) \ | |
2342 | $(symfile_h) $(objfiles_h) $(annotate_h) $(gdbtypes_h) $(linespec_h) \ | |
91092ee5 | 2343 | $(filenames_h) $(completer_h) $(ui_out_h) |
b2100910 AC |
2344 | sparc64fbsd-nat.o: sparc64fbsd-nat.c $(defs_h) $(sparc64_tdep_h) \ |
2345 | $(sparc_nat_h) | |
2346 | sparc64fbsd-tdep.o: sparc64fbsd-tdep.c $(defs_h) $(frame_h) \ | |
2347 | $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \ | |
2348 | $(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \ | |
2349 | $(sparc64_tdep_h) | |
2350 | sparc64-linux-nat.o: sparc64-linux-nat.c $(defs_h) $(sparc64_tdep_h) \ | |
2351 | $(sparc_nat_h) | |
2352 | sparc64-linux-tdep.o: sparc64-linux-tdep.c $(defs_h) $(gdbarch_h) $(osabi_h) \ | |
2353 | $(solib_svr4_h) $(sparc64_tdep_h) | |
2354 | sparc64-nat.o: sparc64-nat.c $(defs_h) $(gdbarch_h) $(sparc64_tdep_h) \ | |
2355 | $(sparc_nat_h) | |
2356 | sparc64nbsd-nat.o: sparc64nbsd-nat.c $(defs_h) $(sparc64_tdep_h) \ | |
2357 | $(sparc_nat_h) | |
2358 | sparc64nbsd-tdep.o: sparc64nbsd-tdep.c $(defs_h) $(frame_h) \ | |
2359 | $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \ | |
2360 | $(symtab_h) $(solib_svr4_h) $(trad_frame_h) $(gdb_assert_h) \ | |
2361 | $(gdb_string_h) $(sparc64_tdep_h) $(nbsd_tdep_h) | |
1e067c66 | 2362 | sparc64obsd-tdep.o: sparc64obsd-tdep.c $(defs_h) $(frame_h) \ |
20d286a5 AC |
2363 | $(frame_unwind_h) $(osabi_h) $(regset_h) $(symtab_h) $(solib_svr4_h) \ |
2364 | $(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h) $(nbsd_tdep_h) | |
b2100910 AC |
2365 | sparc64-sol2-tdep.o: sparc64-sol2-tdep.c $(defs_h) $(frame_h) \ |
2366 | $(frame_unwind_h) $(gdbarch_h) $(symtab_h) $(objfiles_h) $(osabi_h) \ | |
2367 | $(trad_frame_h) $(gdb_assert_h) $(sparc64_tdep_h) | |
2368 | sparc64-tdep.o: sparc64-tdep.c $(defs_h) $(arch_utils_h) $(floatformat_h) \ | |
2369 | $(frame_h) $(frame_base_h) $(frame_unwind_h) $(gdbcore_h) \ | |
2370 | $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) $(osabi_h) \ | |
2371 | $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) $(gdb_string_h) \ | |
2372 | $(sparc64_tdep_h) | |
386c036b MK |
2373 | sparc-linux-tdep.o: sparc-linux-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \ |
2374 | $(frame_unwind_h) $(gdbarch_h) $(gdbcore_h) $(osabi_h) $(regcache_h) \ | |
2375 | $(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \ | |
2376 | $(gdb_string_h) $(sparc_tdep_h) | |
baf92889 MK |
2377 | sparc-nat.o: sparc-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \ |
2378 | $(gdb_assert_h) $(gdb_string_h) $(gdb_wait_h) $(sparc_tdep_h) \ | |
2379 | $(sparc_nat_h) | |
b2100910 AC |
2380 | sparcnbsd-nat.o: sparcnbsd-nat.c $(defs_h) $(sparc_tdep_h) $(sparc_nat_h) |
2381 | sparcnbsd-tdep.o: sparcnbsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \ | |
2382 | $(frame_unwind_h) $(gdbcore_h) $(osabi_h) $(regcache_h) $(regset_h) \ | |
2383 | $(solib_svr4_h) $(symtab_h) $(trad_frame_h) $(gdb_assert_h) \ | |
2384 | $(gdb_string_h) $(sparc_tdep_h) $(nbsd_tdep_h) | |
566626fa MK |
2385 | sparcobsd-tdep.o: sparcobsd-tdep.c $(defs_h) $(floatformat_h) $(frame_h) \ |
2386 | $(frame_unwind_h) $(osabi_h) $(solib_svr4_h) $(symtab_h) \ | |
2387 | $(trad_frame_h) $(gdb_assert_h) $(sparc_tdep_h) $(nbsd_tdep_h) | |
386c036b MK |
2388 | sparc-sol2-nat.o: sparc-sol2-nat.c $(defs_h) $(regcache_h) $(gregset_h) \ |
2389 | $(sparc_tdep_h) $(sparc64_tdep_h) | |
2390 | sparc-sol2-tdep.o: sparc-sol2-tdep.c $(defs_h) $(frame_h) $(frame_unwind_h) \ | |
2391 | $(gdbcore_h) $(symtab_h) $(objfiles_h) $(osabi_h) $(regcache_h) \ | |
2392 | $(target_h) $(trad_frame_h) $(gdb_assert_h) $(gdb_string_h) \ | |
2393 | $(sparc_tdep_h) | |
b2100910 | 2394 | sparc-stub.o: sparc-stub.c |
386c036b | 2395 | sparc-tdep.o: sparc-tdep.c $(defs_h) $(arch_utils_h) $(dis_asm_h) \ |
b2100910 | 2396 | $(floatformat_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \ |
386c036b MK |
2397 | $(gdbcore_h) $(gdbtypes_h) $(inferior_h) $(symtab_h) $(objfiles_h) \ |
2398 | $(osabi_h) $(regcache_h) $(target_h) $(value_h) $(gdb_assert_h) \ | |
2399 | $(gdb_string_h) $(sparc_tdep_h) | |
04ea0df1 AC |
2400 | stabsread.o: stabsread.c $(defs_h) $(gdb_string_h) $(bfd_h) $(gdb_obstack_h) \ |
2401 | $(symtab_h) $(gdbtypes_h) $(expression_h) $(symfile_h) $(objfiles_h) \ | |
2402 | $(aout_stab_gnu_h) $(libaout_h) $(aout_aout64_h) $(gdb_stabs_h) \ | |
2403 | $(buildsym_h) $(complaints_h) $(demangle_h) $(language_h) \ | |
91092ee5 | 2404 | $(doublest_h) $(cp_abi_h) $(cp_support_h) $(stabsread_h) |
e822a2a0 AC |
2405 | stack.o: stack.c $(defs_h) $(gdb_string_h) $(value_h) $(symtab_h) \ |
2406 | $(gdbtypes_h) $(expression_h) $(language_h) $(frame_h) $(gdbcmd_h) \ | |
b9362cc7 | 2407 | $(gdbcore_h) $(target_h) $(source_h) $(breakpoint_h) $(demangle_h) \ |
8d3b0994 | 2408 | $(inferior_h) $(annotate_h) $(ui_out_h) $(block_h) $(stack_h) \ |
fc70c2a0 | 2409 | $(gdb_assert_h) $(dictionary_h) $(reggroups_h) $(regcache_h) |
e822a2a0 AC |
2410 | standalone.o: standalone.c $(gdb_stat_h) $(defs_h) $(symtab_h) $(frame_h) \ |
2411 | $(inferior_h) $(gdb_wait_h) | |
eb8bc282 | 2412 | std-regs.o: std-regs.c $(defs_h) $(user_regs_h) $(frame_h) $(gdbtypes_h) \ |
e822a2a0 AC |
2413 | $(value_h) $(gdb_string_h) |
2414 | stop-gdb.o: stop-gdb.c $(defs_h) | |
2415 | sun3-nat.o: sun3-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) $(regcache_h) | |
91092ee5 AC |
2416 | symfile.o: symfile.c $(defs_h) $(bfdlink_h) $(symtab_h) $(gdbtypes_h) \ |
2417 | $(gdbcore_h) $(frame_h) $(target_h) $(value_h) $(symfile_h) \ | |
2418 | $(objfiles_h) $(source_h) $(gdbcmd_h) $(breakpoint_h) $(language_h) \ | |
2419 | $(complaints_h) $(demangle_h) $(inferior_h) $(filenames_h) \ | |
2420 | $(gdb_stabs_h) $(gdb_obstack_h) $(completer_h) $(bcache_h) \ | |
2421 | $(hashtab_h) $(gdb_assert_h) $(block_h) $(gdb_string_h) \ | |
2422 | $(gdb_stat_h) | |
04ea0df1 AC |
2423 | symmisc.o: symmisc.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(bfd_h) \ |
2424 | $(symfile_h) $(objfiles_h) $(breakpoint_h) $(command_h) \ | |
91092ee5 AC |
2425 | $(gdb_obstack_h) $(language_h) $(bcache_h) $(block_h) $(gdb_regex_h) \ |
2426 | $(dictionary_h) $(gdb_string_h) | |
04ea0df1 AC |
2427 | symtab.o: symtab.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(gdbcore_h) \ |
2428 | $(frame_h) $(target_h) $(value_h) $(symfile_h) $(objfiles_h) \ | |
2429 | $(gdbcmd_h) $(call_cmds_h) $(gdb_regex_h) $(expression_h) \ | |
91092ee5 AC |
2430 | $(language_h) $(demangle_h) $(inferior_h) $(linespec_h) $(source_h) \ |
2431 | $(filenames_h) $(objc_lang_h) $(hashtab_h) $(gdb_obstack_h) \ | |
2432 | $(block_h) $(dictionary_h) $(gdb_string_h) $(gdb_stat_h) $(cp_abi_h) | |
e822a2a0 AC |
2433 | target.o: target.c $(defs_h) $(gdb_string_h) $(target_h) $(gdbcmd_h) \ |
2434 | $(symtab_h) $(inferior_h) $(bfd_h) $(symfile_h) $(objfiles_h) \ | |
b2100910 | 2435 | $(gdb_wait_h) $(dcache_h) $(regcache_h) $(gdb_assert_h) $(gdbcore_h) |
b66d6d2e AC |
2436 | thread.o: thread.c $(defs_h) $(symtab_h) $(frame_h) $(inferior_h) \ |
2437 | $(environ_h) $(value_h) $(target_h) $(gdbthread_h) $(command_h) \ | |
e822a2a0 | 2438 | $(gdbcmd_h) $(regcache_h) $(gdb_h) $(gdb_string_h) $(ui_out_h) |
91092ee5 AC |
2439 | thread-db.o: thread-db.c $(defs_h) $(gdb_assert_h) $(gdb_proc_service_h) \ |
2440 | $(gdb_thread_db_h) $(bfd_h) $(gdbthread_h) $(inferior_h) \ | |
2441 | $(symfile_h) $(objfiles_h) $(target_h) $(regcache_h) $(solib_svr4_h) | |
e822a2a0 AC |
2442 | top.o: top.c $(defs_h) $(gdbcmd_h) $(call_cmds_h) $(cli_cmds_h) \ |
2443 | $(cli_script_h) $(cli_setshow_h) $(cli_decode_h) $(symtab_h) \ | |
2444 | $(inferior_h) $(target_h) $(breakpoint_h) $(gdbtypes_h) \ | |
2445 | $(expression_h) $(value_h) $(language_h) $(terminal_h) $(annotate_h) \ | |
2446 | $(completer_h) $(top_h) $(version_h) $(serial_h) $(doublest_h) \ | |
2447 | $(gdb_assert_h) $(event_top_h) $(gdb_string_h) $(gdb_stat_h) \ | |
91092ee5 | 2448 | $(ui_out_h) $(cli_out_h) |
e822a2a0 AC |
2449 | tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(gdbtypes_h) \ |
2450 | $(expression_h) $(gdbcmd_h) $(value_h) $(target_h) $(language_h) \ | |
2451 | $(gdb_string_h) $(inferior_h) $(tracepoint_h) $(remote_h) \ | |
fe898f56 | 2452 | $(linespec_h) $(regcache_h) $(completer_h) $(gdb_events_h) \ |
91092ee5 AC |
2453 | $(block_h) $(dictionary_h) $(ax_h) $(ax_gdb_h) |
2454 | trad-frame.o: trad-frame.c $(defs_h) $(frame_h) $(trad_frame_h) \ | |
2455 | $(regcache_h) | |
04ea0df1 AC |
2456 | typeprint.o: typeprint.c $(defs_h) $(gdb_obstack_h) $(bfd_h) $(symtab_h) \ |
2457 | $(gdbtypes_h) $(expression_h) $(value_h) $(gdbcore_h) $(command_h) \ | |
b9362cc7 AC |
2458 | $(gdbcmd_h) $(target_h) $(language_h) $(cp_abi_h) $(typeprint_h) \ |
2459 | $(gdb_string_h) | |
e822a2a0 AC |
2460 | ui-file.o: ui-file.c $(defs_h) $(ui_file_h) $(gdb_string_h) |
2461 | ui-out.o: ui-out.c $(defs_h) $(gdb_string_h) $(expression_h) $(language_h) \ | |
2462 | $(ui_out_h) $(gdb_assert_h) | |
eb8bc282 AC |
2463 | user-regs.o: user-regs.c $(defs_h) $(user_regs_h) $(gdbtypes_h) \ |
2464 | $(gdb_string_h) $(gdb_assert_h) $(frame_h) | |
91092ee5 AC |
2465 | utils.o: utils.c $(defs_h) $(gdb_assert_h) $(gdb_string_h) $(event_top_h) \ |
2466 | $(gdbcmd_h) $(serial_h) $(bfd_h) $(target_h) $(demangle_h) \ | |
2467 | $(expression_h) $(language_h) $(charset_h) $(annotate_h) \ | |
9175c9a3 | 2468 | $(filenames_h) $(inferior_h) |
e822a2a0 AC |
2469 | uw-thread.o: uw-thread.c $(defs_h) $(gdbthread_h) $(target_h) $(inferior_h) \ |
2470 | $(regcache_h) $(gregset_h) | |
e822a2a0 AC |
2471 | v850ice.o: v850ice.c $(defs_h) $(gdb_string_h) $(frame_h) $(symtab_h) \ |
2472 | $(inferior_h) $(breakpoint_h) $(symfile_h) $(target_h) $(objfiles_h) \ | |
2473 | $(gdbcore_h) $(value_h) $(command_h) $(regcache_h) | |
91092ee5 AC |
2474 | v850-tdep.o: v850-tdep.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
2475 | $(value_h) $(bfd_h) $(gdb_string_h) $(gdbcore_h) $(symfile_h) \ | |
a89aa300 | 2476 | $(arch_utils_h) $(regcache_h) $(symtab_h) $(dis_asm_h) |
e822a2a0 AC |
2477 | valarith.o: valarith.c $(defs_h) $(value_h) $(symtab_h) $(gdbtypes_h) \ |
2478 | $(expression_h) $(target_h) $(language_h) $(gdb_string_h) \ | |
04714b91 | 2479 | $(doublest_h) $(infcall_h) |
e822a2a0 AC |
2480 | valops.o: valops.c $(defs_h) $(symtab_h) $(gdbtypes_h) $(value_h) $(frame_h) \ |
2481 | $(inferior_h) $(gdbcore_h) $(target_h) $(demangle_h) $(language_h) \ | |
91092ee5 | 2482 | $(gdbcmd_h) $(regcache_h) $(cp_abi_h) $(block_h) $(infcall_h) \ |
79c2c32d DC |
2483 | $(dictionary_h) $(cp_support_h) $(gdb_string_h) $(gdb_assert_h) \ |
2484 | $(cp_support_h) | |
e822a2a0 AC |
2485 | valprint.o: valprint.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ |
2486 | $(value_h) $(gdbcore_h) $(gdbcmd_h) $(target_h) $(language_h) \ | |
2487 | $(annotate_h) $(valprint_h) $(floatformat_h) $(doublest_h) | |
2488 | values.o: values.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ | |
2489 | $(value_h) $(gdbcore_h) $(command_h) $(gdbcmd_h) $(target_h) \ | |
2490 | $(language_h) $(scm_lang_h) $(demangle_h) $(doublest_h) \ | |
fe898f56 | 2491 | $(gdb_assert_h) $(regcache_h) $(block_h) |
b66d6d2e AC |
2492 | varobj.o: varobj.c $(defs_h) $(value_h) $(expression_h) $(frame_h) \ |
2493 | $(language_h) $(wrapper_h) $(gdbcmd_h) $(gdb_string_h) $(varobj_h) | |
e822a2a0 AC |
2494 | vax-tdep.o: vax-tdep.c $(defs_h) $(symtab_h) $(opcode_vax_h) $(gdbcore_h) \ |
2495 | $(inferior_h) $(regcache_h) $(frame_h) $(value_h) $(arch_utils_h) \ | |
a89aa300 | 2496 | $(gdb_string_h) $(osabi_h) $(dis_asm_h) $(vax_tdep_h) |
1bfd8a83 AC |
2497 | win32-nat.o: win32-nat.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) \ |
2498 | $(gdbcore_h) $(command_h) $(completer_h) $(regcache_h) $(top_h) \ | |
b2100910 AC |
2499 | $(buildsym_h) $(symfile_h) $(objfiles_h) $(gdb_string_h) \ |
2500 | $(gdbthread_h) $(gdbcmd_h) $(exec_h) $(i386_tdep_h) $(i387_tdep_h) | |
e822a2a0 | 2501 | wince.o: wince.c $(defs_h) $(frame_h) $(inferior_h) $(target_h) $(gdbcore_h) \ |
91092ee5 AC |
2502 | $(command_h) $(buildsym_h) $(symfile_h) $(objfiles_h) \ |
2503 | $(gdb_string_h) $(gdbthread_h) $(gdbcmd_h) $(wince_stub_h) \ | |
2504 | $(regcache_h) $(mips_tdep_h) | |
2505 | wince-stub.o: wince-stub.c $(wince_stub_h) | |
e822a2a0 AC |
2506 | wrapper.o: wrapper.c $(defs_h) $(value_h) $(wrapper_h) |
2507 | x86-64-linux-nat.o: x86-64-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \ | |
c14a44d5 AC |
2508 | $(regcache_h) $(linux_nat_h) $(gdb_assert_h) $(gdb_string_h) \ |
2509 | $(gdb_proc_service_h) $(gregset_h) $(x86_64_tdep_h) \ | |
2510 | $(x86_64_linux_tdep_h) $(i386_linux_tdep_h) $(amd64_nat_h) | |
91092ee5 AC |
2511 | x86-64-linux-tdep.o: x86-64-linux-tdep.c $(defs_h) $(inferior_h) \ |
2512 | $(gdbcore_h) $(regcache_h) $(osabi_h) $(gdb_string_h) \ | |
2513 | $(x86_64_tdep_h) $(x86_64_linux_tdep_h) | |
2514 | x86-64-tdep.o: x86-64-tdep.c $(defs_h) $(arch_utils_h) $(block_h) \ | |
c4f35dd8 | 2515 | $(dummy_frame_h) $(frame_h) $(frame_base_h) $(frame_unwind_h) \ |
91092ee5 | 2516 | $(inferior_h) $(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(regcache_h) \ |
1bfd8a83 AC |
2517 | $(regset_h) $(symfile_h) $(gdb_assert_h) $(x86_64_tdep_h) \ |
2518 | $(i387_tdep_h) | |
e822a2a0 AC |
2519 | xcoffread.o: xcoffread.c $(defs_h) $(bfd_h) $(gdb_string_h) $(gdb_stat_h) \ |
2520 | $(coff_internal_h) $(libcoff_h) $(coff_xcoff_h) $(libxcoff_h) \ | |
2521 | $(coff_rs6000_h) $(symtab_h) $(gdbtypes_h) $(symfile_h) \ | |
2522 | $(objfiles_h) $(buildsym_h) $(stabsread_h) $(expression_h) \ | |
2523 | $(complaints_h) $(gdb_stabs_h) $(aout_stab_gnu_h) | |
2524 | xcoffsolib.o: xcoffsolib.c $(defs_h) $(bfd_h) $(xcoffsolib_h) $(inferior_h) \ | |
2525 | $(gdbcmd_h) $(symfile_h) $(frame_h) $(gdb_regex_h) | |
2526 | xmodem.o: xmodem.c $(defs_h) $(serial_h) $(target_h) $(xmodem_h) | |
2527 | xstormy16-tdep.o: xstormy16-tdep.c $(defs_h) $(value_h) $(inferior_h) \ | |
2528 | $(symfile_h) $(arch_utils_h) $(regcache_h) $(gdbcore_h) \ | |
a89aa300 | 2529 | $(objfiles_h) $(dis_asm_h) |
8b93c638 | 2530 | |
d318976c | 2531 | # |
72acd513 | 2532 | # gdb/cli/ dependencies |
d318976c FN |
2533 | # |
2534 | # Need to explicitly specify the compile rule as make will do nothing | |
1517c6d1 | 2535 | # or try to compile the object file into the sub-directory. |
d318976c | 2536 | |
5f8a3188 | 2537 | cli-cmds.o: $(srcdir)/cli/cli-cmds.c $(defs_h) $(completer_h) $(target_h) \ |
91092ee5 AC |
2538 | $(gdb_wait_h) $(gdb_regex_h) $(gdb_string_h) $(gdb_vfork_h) \ |
2539 | $(linespec_h) $(expression_h) $(frame_h) $(value_h) $(language_h) \ | |
2540 | $(filenames_h) $(objfiles_h) $(source_h) $(disasm_h) $(ui_out_h) \ | |
2541 | $(top_h) $(cli_decode_h) $(cli_script_h) $(cli_setshow_h) \ | |
20d286a5 | 2542 | $(cli_cmds_h) |
f02df580 | 2543 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-cmds.c |
72acd513 AC |
2544 | cli-decode.o: $(srcdir)/cli/cli-decode.c $(defs_h) $(symtab_h) \ |
2545 | $(gdb_regex_h) $(gdb_string_h) $(ui_out_h) $(cli_cmds_h) \ | |
2546 | $(cli_decode_h) $(gdb_assert_h) | |
d318976c | 2547 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-decode.c |
72acd513 AC |
2548 | cli-dump.o: $(srcdir)/cli/cli-dump.c $(defs_h) $(gdb_string_h) \ |
2549 | $(cli_decode_h) $(cli_cmds_h) $(value_h) $(completer_h) \ | |
91092ee5 | 2550 | $(cli_dump_h) $(gdb_assert_h) $(target_h) |
f02df580 | 2551 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-dump.c |
4389a95a AC |
2552 | cli-interp.o: $(srcdir)/cli/cli-interp.c $(defs_h) $(interps_h) $(wrapper_h) \ |
2553 | $(event_top_h) $(ui_out_h) $(cli_out_h) $(top_h) $(gdb_string_h) | |
2554 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-interp.c | |
91092ee5 AC |
2555 | cli-logging.o: $(srcdir)/cli/cli-logging.c $(defs_h) $(gdbcmd_h) $(ui_out_h) \ |
2556 | $(gdb_string_h) | |
0fac0b41 | 2557 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-logging.c |
72acd513 AC |
2558 | cli-script.o: $(srcdir)/cli/cli-script.c $(defs_h) $(value_h) $(language_h) \ |
2559 | $(ui_out_h) $(gdb_string_h) $(top_h) $(cli_cmds_h) $(cli_decode_h) \ | |
2560 | $(cli_script_h) | |
2561 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-script.c | |
5f8a3188 | 2562 | cli-setshow.o: $(srcdir)/cli/cli-setshow.c $(defs_h) $(value_h) \ |
72acd513 AC |
2563 | $(gdb_string_h) $(ui_out_h) $(cli_decode_h) $(cli_cmds_h) \ |
2564 | $(cli_setshow_h) | |
d318976c | 2565 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-setshow.c |
72acd513 | 2566 | cli-utils.o: $(srcdir)/cli/cli-utils.c $(defs_h) $(cli_utils_h) |
12cf3f1b ND |
2567 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/cli/cli-utils.c |
2568 | ||
541a7aac AC |
2569 | # |
2570 | # GDBTK sub-directory | |
2571 | # | |
72acd513 AC |
2572 | # Need to explicitly specify the compile rule as make will do nothing |
2573 | # or try to compile the object file into the mi directory. | |
541a7aac | 2574 | |
f15ab4a7 AC |
2575 | all-gdbtk: insight$(EXEEXT) |
2576 | ||
2577 | install-gdbtk: | |
2578 | transformed_name=`t='$(program_transform_name)'; \ | |
2579 | echo insight | sed -e $$t` ; \ | |
2580 | if test "x$$transformed_name" = x; then \ | |
2581 | transformed_name=insight ; \ | |
2582 | else \ | |
2583 | true ; \ | |
2584 | fi ; \ | |
c938e9b0 | 2585 | $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \ |
72bdd927 AC |
2586 | $(INSTALL_PROGRAM) insight$(EXEEXT) \ |
2587 | $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \ | |
2588 | $(SHELL) $(srcdir)/../mkinstalldirs \ | |
2589 | $(DESTDIR)$(GDBTK_LIBRARY) ; \ | |
2590 | $(SHELL) $(srcdir)/../mkinstalldirs \ | |
2591 | $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \ | |
2592 | $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \ | |
2593 | $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \ | |
2594 | $(SHELL) $(srcdir)/../mkinstalldirs \ | |
2595 | $(DESTDIR)$(GDBTK_LIBRARY)/images \ | |
2596 | $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \ | |
f15ab4a7 | 2597 | $(SHELL) $(srcdir)/../mkinstalldirs \ |
72bdd927 AC |
2598 | $(DESTDIR)$(GDBTK_LIBRARY)/help \ |
2599 | $(DESTDIR)$(GDBTK_LIBRARY)/help/images \ | |
2600 | $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \ | |
f15ab4a7 | 2601 | cd $(srcdir)/gdbtk/library ; \ |
df21e465 | 2602 | for i in *.tcl *.itcl *.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 help/images/*.png; \ |
f15ab4a7 | 2603 | do \ |
72bdd927 | 2604 | $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \ |
f15ab4a7 AC |
2605 | done ; |
2606 | ||
2607 | uninstall-gdbtk: | |
2608 | transformed_name=`t='$(program_transform_name)'; \ | |
2609 | echo insight | sed -e $$t` ; \ | |
2610 | if test "x$$transformed_name" = x; then \ | |
2611 | transformed_name=insight ; \ | |
2612 | else \ | |
2613 | true ; \ | |
2614 | fi ; \ | |
72bdd927 AC |
2615 | rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \ |
2616 | rm -rf $(DESTDIR)$(GDBTK_LIBRARY) | |
f15ab4a7 AC |
2617 | |
2618 | clean-gdbtk: | |
2619 | rm -f insight$(EXEEXT) | |
2620 | ||
2621 | # Removing the old gdb first works better if it is running, at least on SunOS. | |
d836ee13 | 2622 | insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \ |
f15ab4a7 AC |
2623 | $(CDEPS) $(TDEPLIBS) |
2624 | rm -f insight$(EXEEXT) | |
72cfdc76 | 2625 | $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \ |
d836ee13 | 2626 | -o insight$(EXEEXT) gdbtk-main.o libgdb.a \ |
f15ab4a7 AC |
2627 | $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES) |
2628 | ||
541a7aac AC |
2629 | gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico |
2630 | $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o | |
2631 | ||
2632 | gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c \ | |
2633 | $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \ | |
2634 | $(symtab_h) $(inferior_h) $(command_h) \ | |
2635 | $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \ | |
3cf93817 | 2636 | $(tracepoint_h) $(top_h) |
541a7aac | 2637 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
b2a1bd4f | 2638 | $(ITK_CFLAGS) \ |
541a7aac AC |
2639 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\ |
2640 | $(srcdir)/gdbtk/generic/gdbtk.c \ | |
2641 | -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" -DSRC_DIR=\"$(GDBTK_SRC_DIR)\" | |
2642 | ||
2643 | gdbtk-bp.o: $(srcdir)/gdbtk/generic/gdbtk-bp.c \ | |
2644 | $(srcdir)/gdbtk/generic/gdbtk.h \ | |
2645 | $(srcdir)/gdbtk/generic/gdbtk-cmds.h \ | |
2646 | $(defs_h) $(breakpoint_h) $(tracepoint_h) \ | |
2647 | $(symfile_h) $(symtab_h) $(gdb_string_h) | |
2648 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ | |
b2a1bd4f | 2649 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ |
541a7aac AC |
2650 | $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-bp.c \ |
2651 | -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2652 | ||
2653 | gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c \ | |
2654 | $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \ | |
de4f826b DC |
2655 | $(defs_h) $(inferior_h) $(source_h) $(symfile_h) $(objfiles_h) \ |
2656 | $(gdbcore_h) $(demangle_h) $(linespec_h) $(tui_file_h) $(top_h) \ | |
2657 | $(annotate_h) $(block_h) $(dictionary_h) $(gdb_string_h) \ | |
2658 | $(dis_asm_h) $(gdbcmd_h) | |
541a7aac | 2659 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
b2a1bd4f | 2660 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ |
541a7aac AC |
2661 | $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-cmds.c \ |
2662 | -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2663 | ||
2664 | gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c \ | |
2665 | $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \ | |
2666 | $(symtab_h) $(inferior_h) $(command_h) \ | |
2667 | $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) $(gdb_string_h) \ | |
2668 | $(tracepoint_h) | |
b2a1bd4f | 2669 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
541a7aac AC |
2670 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\ |
2671 | $(srcdir)/gdbtk/generic/gdbtk-hooks.c -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2672 | ||
5412f5f3 KS |
2673 | gdbtk-interp.o: $(srcdir)/gdbtk/generic/gdbtk-interp.c \ |
2674 | $(defs_h) $(interps_h) $(ui_out_h) $(ui_file_h) \ | |
2675 | $(cli_out_h) $(gdb_string_h) $(cli_cmds_h) $(cli_decode_h) \ | |
2676 | $(srcdir)/gdbtk/generic/gdbtk.h | |
2677 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ | |
2678 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS) \ | |
2679 | $(srcdir)/gdbtk/generic/gdbtk-interp.c | |
2680 | ||
f15ab4a7 AC |
2681 | gdbtk-main.o: $(srcdir)/gdbtk/generic/gdbtk-main.c $(defs_h) $(main_h) \ |
2682 | $(gdb_string_h) | |
b2a1bd4f | 2683 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
f15ab4a7 AC |
2684 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\ |
2685 | $(srcdir)/gdbtk/generic/gdbtk-main.c -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2686 | ||
541a7aac AC |
2687 | gdbtk-register.o: $(srcdir)/gdbtk/generic/gdbtk-register.c \ |
2688 | $(srcdir)/gdbtk/generic/gdbtk.h \ | |
2689 | $(srcdir)/gdbtk/generic/gdbtk-cmds.h \ | |
2690 | $(defs_h) $(frame_h) $(value_h) $(gdb_string_h) | |
2691 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ | |
b2a1bd4f | 2692 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ |
541a7aac AC |
2693 | $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-register.c \ |
2694 | -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2695 | ||
2696 | gdbtk-stack.o: $(srcdir)/gdbtk/generic/gdbtk-stack.c \ | |
2697 | $(srcdir)/gdbtk/generic/gdbtk.h $(srcdir)/gdbtk/generic/gdbtk-cmds.h \ | |
2698 | $(srcdir)/gdbtk/generic/gdbtk-wrapper.h \ | |
de4f826b DC |
2699 | $(defs_h) $(target_h) $(breakpoint_h) $(linespec_h) \ |
2700 | $(block_h) $(dictionary_h) | |
541a7aac | 2701 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
b2a1bd4f | 2702 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ |
541a7aac AC |
2703 | $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-stack.c \ |
2704 | -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" | |
2705 | ||
2706 | gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c \ | |
2707 | $(srcdir)/gdbtk/generic/gdbtk.h \ | |
2708 | $(defs_h) $(value_h) $(varobj_h) $(gdb_string_h) | |
b2a1bd4f | 2709 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \ |
541a7aac AC |
2710 | $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\ |
2711 | $(srcdir)/gdbtk/generic/gdbtk-varobj.c | |
2712 | ||
2713 | gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c \ | |
2714 | $(srcdir)/gdbtk/generic/gdbtk-wrapper.h \ | |
2715 | $(defs_h) $(frame_h) $(value_h) | |
2716 | $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(GDBTK_CFLAGS)\ | |
2717 | $(srcdir)/gdbtk/generic/gdbtk-wrapper.c | |
2718 | ||
fb40c209 | 2719 | # |
72acd513 | 2720 | # gdb/mi/ dependencies |
fb40c209 AC |
2721 | # |
2722 | # Need to explicitly specify the compile rule as make will do nothing | |
1517c6d1 | 2723 | # or try to compile the object file into the sub-directory. |
fb40c209 | 2724 | |
fb40c209 | 2725 | mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c $(defs_h) $(mi_cmds_h) \ |
72acd513 AC |
2726 | $(ui_out_h) $(mi_out_h) $(breakpoint_h) $(gdb_string_h) \ |
2727 | $(mi_getopt_h) $(gdb_events_h) $(gdb_h) | |
fb40c209 | 2728 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-break.c |
5f8a3188 | 2729 | mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c $(defs_h) $(target_h) $(value_h) \ |
91092ee5 | 2730 | $(mi_cmds_h) $(mi_getopt_h) $(gdb_string_h) $(ui_out_h) $(disasm_h) |
fb40c209 | 2731 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-disas.c |
4ef3f3be AC |
2732 | mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c $(defs_h) $(inferior_h) $(value_h) \ |
2733 | $(mi_out_h) $(mi_cmds_h) $(mi_getopt_h) $(symtab_h) $(target_h) \ | |
91092ee5 AC |
2734 | $(environ_h) $(command_h) $(ui_out_h) $(top_h) $(gdb_string_h) \ |
2735 | $(gdb_stat_h) | |
c04e0a08 | 2736 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-env.c |
91092ee5 AC |
2737 | mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c $(defs_h) $(mi_cmds_h) \ |
2738 | $(mi_getopt_h) $(ui_out_h) $(symtab_h) $(source_h) | |
2739 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-file.c | |
2740 | mi-cmds.o: $(srcdir)/mi/mi-cmds.c $(defs_h) $(top_h) $(mi_cmds_h) \ | |
2741 | $(gdb_string_h) | |
2742 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmds.c | |
72acd513 | 2743 | mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c $(defs_h) $(target_h) $(frame_h) \ |
91092ee5 | 2744 | $(value_h) $(mi_cmds_h) $(ui_out_h) $(symtab_h) $(block_h) \ |
20d286a5 | 2745 | $(stack_h) $(dictionary_h) $(gdb_string_h) |
72acd513 AC |
2746 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-stack.c |
2747 | mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c $(defs_h) $(mi_cmds_h) $(ui_out_h) \ | |
2748 | $(mi_out_h) $(varobj_h) $(value_h) $(gdb_string_h) | |
2749 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-var.c | |
72acd513 AC |
2750 | mi-console.o: $(srcdir)/mi/mi-console.c $(defs_h) $(mi_console_h) \ |
2751 | $(gdb_string_h) | |
2752 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-console.c | |
2753 | mi-getopt.o: $(srcdir)/mi/mi-getopt.c $(defs_h) $(mi_getopt_h) \ | |
2754 | $(gdb_string_h) | |
2755 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-getopt.c | |
4389a95a AC |
2756 | mi-interp.o: $(srcdir)/mi/mi-interp.c $(defs_h) $(gdb_string_h) $(interps_h) \ |
2757 | $(event_top_h) $(event_loop_h) $(inferior_h) $(ui_out_h) $(top_h) \ | |
2758 | $(mi_main_h) $(mi_cmds_h) $(mi_out_h) $(mi_console_h) | |
2759 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-interp.c | |
72acd513 AC |
2760 | mi-main.o: $(srcdir)/mi/mi-main.c $(defs_h) $(target_h) $(inferior_h) \ |
2761 | $(gdb_string_h) $(top_h) $(gdbthread_h) $(mi_cmds_h) $(mi_parse_h) \ | |
4389a95a | 2762 | $(mi_getopt_h) $(mi_console_h) $(ui_out_h) $(mi_out_h) $(interps_h) \ |
72acd513 | 2763 | $(event_loop_h) $(event_top_h) $(gdbcore_h) $(value_h) $(regcache_h) \ |
91092ee5 | 2764 | $(gdb_h) $(frame_h) $(mi_main_h) |
6311b07d | 2765 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-main.c |
72acd513 | 2766 | mi-out.o: $(srcdir)/mi/mi-out.c $(defs_h) $(ui_out_h) $(mi_out_h) |
fb40c209 | 2767 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-out.c |
72acd513 AC |
2768 | mi-parse.o: $(srcdir)/mi/mi-parse.c $(defs_h) $(mi_cmds_h) $(mi_parse_h) \ |
2769 | $(gdb_string_h) | |
fb40c209 | 2770 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-parse.c |
91092ee5 AC |
2771 | mi-symbol-cmds.o: $(srcdir)/mi/mi-symbol-cmds.c $(defs_h) $(mi_cmds_h) \ |
2772 | $(symtab_h) $(ui_out_h) | |
30e221b4 | 2773 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-symbol-cmds.c |
fb40c209 | 2774 | |
6d39a69f AC |
2775 | # |
2776 | # rdi-share sub-directory | |
2777 | # | |
72acd513 AC |
2778 | # Need to explicitly specify the compile rule as make will do nothing |
2779 | # or try to compile the object file into the mi directory. | |
6d39a69f AC |
2780 | |
2781 | rdi-share/libangsd.a: force | |
2782 | @dir=rdi-share; \ | |
2783 | if [ -f ./$${dir}/Makefile ] ; then \ | |
2784 | r=`pwd`; export r; \ | |
2785 | srcroot=`cd $(srcdir); pwd`; export srcroot; \ | |
2786 | (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \ | |
2787 | else \ | |
2788 | true; \ | |
2789 | fi | |
2790 | ||
f92d4a7b | 2791 | # |
1517c6d1 | 2792 | # gdb/signals/ dependencies |
f92d4a7b | 2793 | # |
72acd513 | 2794 | # Need to explicitly specify the compile rule as make will do nothing |
1517c6d1 | 2795 | # or try to compile the object file into the sub-directory. |
f92d4a7b | 2796 | |
91092ee5 AC |
2797 | signals.o: $(srcdir)/signals/signals.c $(server_h) $(defs_h) $(target_h) \ |
2798 | $(gdb_string_h) | |
f92d4a7b AC |
2799 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/signals/signals.c |
2800 | ||
ed952ac5 | 2801 | # |
1517c6d1 | 2802 | # gdb/tui/ dependencies |
ed952ac5 AC |
2803 | # |
2804 | # Need to explicitly specify the compile rule as make will do nothing | |
1517c6d1 | 2805 | # or try to compile the object file into the sub-directory. |
ed952ac5 | 2806 | |
d7b2e967 AC |
2807 | tui.o: $(srcdir)/tui/tui.c $(defs_h) $(gdbcmd_h) $(tui_h) $(tui_data_h) \ |
2808 | $(tui_layout_h) $(tui_io_h) $(tui_regs_h) $(tui_stack_h) \ | |
2809 | $(tui_win_h) $(tui_winsource_h) $(tui_windata_h) $(readline_h) \ | |
2810 | $(target_h) $(frame_h) $(breakpoint_h) $(inferior_h) $(symtab_h) \ | |
2811 | $(source_h) | |
91092ee5 | 2812 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui.c |
d7b2e967 AC |
2813 | tui-command.o: $(srcdir)/tui/tui-command.c $(defs_h) $(tui_h) $(tui_data_h) \ |
2814 | $(tui_win_h) $(tui_io_h) | |
2815 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-command.c | |
2816 | tui-data.o: $(srcdir)/tui/tui-data.c $(defs_h) $(symtab_h) $(tui_h) \ | |
20d286a5 | 2817 | $(tui_data_h) $(tui_wingeneral_h) $(gdb_string_h) |
d7b2e967 AC |
2818 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-data.c |
2819 | tui-disasm.o: $(srcdir)/tui/tui-disasm.c $(defs_h) $(symtab_h) \ | |
2820 | $(breakpoint_h) $(frame_h) $(value_h) $(source_h) $(disasm_h) \ | |
20d286a5 | 2821 | $(gdb_string_h) $(tui_h) $(tui_data_h) $(tui_win_h) $(tui_layout_h) \ |
d7b2e967 AC |
2822 | $(tui_winsource_h) $(tui_stack_h) $(tui_file_h) |
2823 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-disasm.c | |
91092ee5 | 2824 | tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(ui_file_h) $(tui_file_h) \ |
20d286a5 | 2825 | $(tui_io_h) $(tui_h) $(gdb_string_h) |
91092ee5 AC |
2826 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c |
2827 | tui-hooks.o: $(srcdir)/tui/tui-hooks.c $(defs_h) $(symtab_h) $(inferior_h) \ | |
2828 | $(command_h) $(bfd_h) $(symfile_h) $(objfiles_h) $(target_h) \ | |
2829 | $(gdbcore_h) $(event_loop_h) $(event_top_h) $(frame_h) \ | |
2830 | $(breakpoint_h) $(gdb_events_h) $(ui_out_h) $(top_h) $(tui_h) \ | |
d7b2e967 AC |
2831 | $(tui_data_h) $(tui_layout_h) $(tui_io_h) $(tui_regs_h) $(tui_win_h) \ |
2832 | $(tui_stack_h) $(tui_windata_h) $(tui_winsource_h) | |
91092ee5 AC |
2833 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-hooks.c |
2834 | tui-interp.o: $(srcdir)/tui/tui-interp.c $(defs_h) $(interps_h) $(top_h) \ | |
c14a44d5 | 2835 | $(event_top_h) $(event_loop_h) $(ui_out_h) $(cli_out_h) \ |
d7b2e967 | 2836 | $(tui_data_h) $(readline_h) $(tui_win_h) $(tui_h) $(tui_io_h) |
91092ee5 | 2837 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-interp.c |
d7b2e967 AC |
2838 | tui-io.o: $(srcdir)/tui/tui-io.c $(defs_h) $(terminal_h) $(target_h) \ |
2839 | $(event_loop_h) $(event_top_h) $(command_h) $(top_h) $(readline_h) \ | |
2840 | $(tui_h) $(tui_data_h) $(tui_io_h) $(tui_command_h) $(tui_win_h) \ | |
2841 | $(tui_wingeneral_h) $(tui_file_h) $(ui_out_h) $(cli_out_h) | |
2842 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-io.c | |
2843 | tui-layout.o: $(srcdir)/tui/tui-layout.c $(defs_h) $(command_h) $(symtab_h) \ | |
2844 | $(frame_h) $(source_h) $(tui_h) $(tui_data_h) $(tui_windata_h) \ | |
2845 | $(tui_wingeneral_h) $(tui_stack_h) $(tui_regs_h) $(tui_win_h) \ | |
2846 | $(tui_winsource_h) $(tui_disasm_h) | |
2847 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-layout.c | |
91092ee5 AC |
2848 | tui-out.o: $(srcdir)/tui/tui-out.c $(defs_h) $(ui_out_h) $(tui_h) \ |
2849 | $(gdb_string_h) $(gdb_assert_h) | |
2850 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-out.c | |
d7b2e967 AC |
2851 | tui-regs.o: $(srcdir)/tui/tui-regs.c $(defs_h) $(tui_h) $(tui_data_h) \ |
2852 | $(symtab_h) $(gdbtypes_h) $(gdbcmd_h) $(frame_h) $(regcache_h) \ | |
20d286a5 AC |
2853 | $(inferior_h) $(target_h) $(gdb_string_h) $(tui_layout_h) \ |
2854 | $(tui_win_h) $(tui_windata_h) $(tui_wingeneral_h) $(tui_file_h) | |
d7b2e967 AC |
2855 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-regs.c |
2856 | tui-source.o: $(srcdir)/tui/tui-source.c $(defs_h) $(symtab_h) $(frame_h) \ | |
2857 | $(breakpoint_h) $(source_h) $(symtab_h) $(tui_h) $(tui_data_h) \ | |
2858 | $(tui_stack_h) $(tui_winsource_h) $(tui_source_h) | |
2859 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-source.c | |
2860 | tui-stack.o: $(srcdir)/tui/tui-stack.c $(defs_h) $(symtab_h) $(breakpoint_h) \ | |
20d286a5 AC |
2861 | $(frame_h) $(command_h) $(inferior_h) $(target_h) $(top_h) \ |
2862 | $(gdb_string_h) $(tui_h) $(tui_data_h) $(tui_stack_h) \ | |
2863 | $(tui_wingeneral_h) $(tui_source_h) $(tui_winsource_h) $(tui_file_h) | |
d7b2e967 AC |
2864 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-stack.c |
2865 | tui-win.o: $(srcdir)/tui/tui-win.c $(defs_h) $(command_h) $(symtab_h) \ | |
2866 | $(breakpoint_h) $(frame_h) $(cli_cmds_h) $(top_h) $(source_h) \ | |
2867 | $(tui_h) $(tui_data_h) $(tui_wingeneral_h) $(tui_stack_h) \ | |
2868 | $(tui_regs_h) $(tui_disasm_h) $(tui_source_h) $(tui_winsource_h) \ | |
20d286a5 | 2869 | $(tui_windata_h) $(gdb_string_h) |
d7b2e967 AC |
2870 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-win.c |
2871 | tui-windata.o: $(srcdir)/tui/tui-windata.c $(defs_h) $(tui_h) $(tui_data_h) \ | |
2872 | $(tui_wingeneral_h) $(tui_regs_h) | |
2873 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-windata.c | |
2874 | tui-wingeneral.o: $(srcdir)/tui/tui-wingeneral.c $(defs_h) $(tui_h) \ | |
2875 | $(tui_data_h) $(tui_wingeneral_h) $(tui_win_h) | |
2876 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-wingeneral.c | |
2877 | tui-winsource.o: $(srcdir)/tui/tui-winsource.c $(defs_h) $(symtab_h) \ | |
2878 | $(frame_h) $(breakpoint_h) $(value_h) $(source_h) $(tui_h) \ | |
2879 | $(tui_data_h) $(tui_stack_h) $(tui_win_h) $(tui_wingeneral_h) \ | |
2880 | $(tui_winsource_h) $(tui_source_h) $(tui_disasm_h) | |
2881 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-winsource.c | |
ed952ac5 | 2882 | |
72acd513 | 2883 | # |
f92d4a7b | 2884 | # vx-share sub-directory |
72acd513 | 2885 | # |
f92d4a7b AC |
2886 | |
2887 | xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \ | |
2888 | vx-share/vxWorks.h vx-share/xdr_ld.h | |
2889 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c | |
2890 | ||
2891 | xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \ | |
2892 | vx-share/vxWorks.h vx-share/xdr_ptrace.h | |
2893 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c | |
2894 | ||
2895 | xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \ | |
2896 | vx-share/vxWorks.h vx-share/xdr_rdb.h | |
2897 | $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c | |
2898 | ||
c906108c | 2899 | ### end of the gdb Makefile.in. |