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