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