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