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