* Make-common.in: Change clean targets to use :: so that other
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
7a9eb4c4 1# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
2592eef8 2# Free Software Foundation, Inc.
33cf356a
SG
3
4# This file is part of GDB.
5
6# This program is free software; you can redistribute it and/or modify
3e5afc2c
RP
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
c61c48c0 18# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
3e5afc2c 19
5436fc65
C
20prefix = @prefix@
21exec_prefix = @exec_prefix@
3e5afc2c 22
5436fc65
C
23host_alias = @host_alias@
24target_alias = @target_alias@
25program_transform_name = @program_transform_name@
5d8b7982
JM
26bindir = @bindir@
27libdir = @libdir@
6a1f93f6 28tooldir = $(libdir)/$(target_alias)
4db3902a 29
5d8b7982
JM
30datadir = @datadir@
31mandir = @mandir@
3e5afc2c
RP
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
5d8b7982
JM
41infodir = @infodir@
42includedir = @includedir@
3e5afc2c
RP
43
44SHELL = /bin/sh
45
5436fc65
C
46INSTALL = @INSTALL@
47INSTALL_PROGRAM = @INSTALL_PROGRAM@
48INSTALL_DATA = @INSTALL_DATA@
3e5afc2c 49
d8efbc66 50AR = @AR@
33cf356a 51AR_FLAGS = qv
5436fc65 52RANLIB = @RANLIB@
d8efbc66 53AWK = @AWK@
3e5afc2c 54
33cf356a
SG
55# Flags that describe where you can find the termcap library.
56# This can be overridden in the host Makefile fragment file.
57TERMCAP = -ltermcap
58
7ae7b919
RP
59# If you are compiling with GCC, make sure that either 1) You have the
60# fixed include files where GCC can reach them, or 2) You use the
61# -traditional flag. Otherwise the ioctl calls in inflow.c
33cf356a
SG
62# will be incorrectly compiled. The "fixincludes" script in the gcc
63# distribution will fix your include files up.
5436fc65 64CC=@CC@
33cf356a 65
5436fc65
C
66# Directory containing source files.
67srcdir = @srcdir@
68VPATH = @srcdir@
d941d8c3 69
9c2c8c34 70YACC=@YACC@
33cf356a 71
33cf356a
SG
72# where to find makeinfo, preferably one designed for texinfo-2
73MAKEINFO=makeinfo
74
75# Set this up with gcc if you have gnu ld and the loader will print out
7ae7b919 76# line numbers for undefined references.
a2b63bbd
JM
77#CC_LD=gcc -static
78CC_LD=$(CC)
33cf356a 79
7ae7b919
RP
80# Where is our "include" directory? Typically $(srcdir)/../include.
81# This is essentially the header file directory for the library
82# routines in libiberty.
83INCLUDE_DIR = $(srcdir)/../include
84INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
b7966a5a
SS
85
86# Where is the "-liberty" library? Typically in ../libiberty.
7ae7b919 87LIBIBERTY = ../libiberty/libiberty.a
33cf356a 88
b7966a5a 89# Where is the MMALLOC library? Typically in ../mmalloc.
33cf356a 90# Note that mmalloc can still be used on systems without mmap().
54109914
FF
91# To use your system malloc, in the host makefile fragment set MMALLOC_CFLAGS
92# to -DNO_MMALLOC and set MMALLOC to empty.
93# To use mmalloc but not use heap checking, in the host makefile fragment set
94# MMALLOC_CFLAGS to the value below but add -DNO_MMCHECK.
95# To use mmalloc and heap checking on a system where the C runtime allocates
96# memory that is never freed, in the host makefile fragment set MMALLOC_CFLAGS
97# to the value below and add -DFORCE_MMCHECK=1
b7966a5a 98MMALLOC_DIR = ../mmalloc
a2b63bbd 99MMALLOC_SRC = $(srcdir)/$(MMALLOC_DIR)
b7966a5a 100MMALLOC = $(MMALLOC_DIR)/libmmalloc.a
54109914 101MMALLOC_CFLAGS = -I$(MMALLOC_SRC)
7ae7b919 102
b7966a5a 103# Where is the BFD library? Typically in ../bfd.
7ae7b919
RP
104BFD_DIR = ../bfd
105BFD = $(BFD_DIR)/libbfd.a
106BFD_SRC = $(srcdir)/$(BFD_DIR)
f4cc789c 107BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
7ae7b919
RP
108
109# Where is the READLINE library? Typically in ../readline.
110READLINE_DIR = ../readline
111READLINE = $(READLINE_DIR)/libreadline.a
112READLINE_SRC = $(srcdir)/$(READLINE_DIR)
113READLINE_CFLAGS = -I$(READLINE_SRC)
114
115# Opcodes currently live in one of two places. Either they are in the
116# opcode library, typically ../opcodes, or they are in a header file
117# in INCLUDE_DIR.
118# Where is the "-lopcodes" library, with (some of) the opcode tables and
119# disassemblers?
b7966a5a 120OPCODES = ../opcodes/libopcodes.a
7ae7b919
RP
121# Where are the other opcode tables which only have header file
122# versions?
b8774958
RP
123OP_INCLUDE = $(INCLUDE_DIR)/opcode
124OPCODES_CFLAGS = -I$(OP_INCLUDE)
33cf356a 125
c61c48c0
C
126# The simulator is usually nonexistent; targets that include one
127# should set this to list all the .o or .a files to be linked in.
128SIM =
129
5436fc65 130#start-sanitize-gdbtk
cd2df226 131# Where is the TCL library? Typically in ../tcl.
611f046f
TT
132LIB_INSTALL_DIR = $(libdir)
133TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
5436fc65 134TCL_CFLAGS = @TCLHDIR@
cd2df226
SG
135
136# Where is the TK library? Typically in ../tk.
047465fd 137TK = @TK_BUILD_LIB_SPEC@
5436fc65
C
138TK_CFLAGS = @TKHDIR@
139
047465fd
TT
140X11_CFLAGS = @TK_XINCLUDES@
141X11_LDFLAGS =
142X11_LIBS =
5436fc65
C
143
144ENABLE_GDBTK= @ENABLE_GDBTK@
145#end-sanitize-gdbtk
146
147ENABLE_CFLAGS= @ENABLE_CFLAGS@
5436fc65 148
33cf356a 149# -I. for config files.
811f1bdc 150# -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
7ae7b919
RP
151# -I$(srcdir)/config for more generic config files.
152
153# It is also possible that you will need to add -I/usr/include/sys if
154# your system doesn't have fcntl.h in /usr/include (which is where it
155# should be according to Posix).
5436fc65
C
156DEFS = @DEFS@
157GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
7ae7b919
RP
158
159# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
160# from the config directory.
161GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
33cf356a
SG
162#PROFILE_CFLAGS = -pg
163
164# CFLAGS is specifically reserved for setting from the command line
7ae7b919 165# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
33cf356a 166CFLAGS = -g
33cf356a 167
3fd4045f
JK
168# Need to pass this to testsuite for "make check". Probably should be
169# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
170# so "make check" has the same result no matter where it is run.
171CXXFLAGS = -g -O
615289ec 172
7ae7b919
RP
173# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
174INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
175 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
188c635f 176 $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) $(ENABLE_CFLAGS)
1e4f3c20 177
b8c0ec27
JK
178# LDFLAGS is specifically reserved for setting from the command line
179# when running make.
180
181# Profiling options need to go here to work.
182# I think it's perfectly reasonable for a user to set -pg in CFLAGS
183# and have it work; that's why CFLAGS is here.
5d394f70
SG
184INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS) @CONFIG_LDFLAGS@ @HLDFLAGS@
185HLDENV = @HLDENV@
b8c0ec27 186
f5ebb9ea
JK
187# We are using our own version of REGEX now to be consistent across
188# machines.
811f1bdc
BK
189REGEX = gnu-regex.o
190REGEX1 = gnu-regex.o
f5ebb9ea 191
31d16514 192# If your system is missing alloca(), or, more likely, it's there but
7ae7b919 193# it doesn't work, then refer to libiberty.
33cf356a
SG
194
195# Libraries and corresponding dependencies for compiling gdb.
196# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
197# TERMCAP comes after readline, since readline depends on it.
6c0643e3
FF
198# MMALLOC comes after anything else that might want an allocation function.
199# LIBIBERTY appears twice on purpose.
5b40415c 200# If you have the Cygnus libraries installed,
7ae7b919 201# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
a3ee56ec 202INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
6c0643e3
FF
203 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) @LIBS@ \
204 -lmmalloc -liberty
a3ee56ec 205CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(LIBIBERTY) \
6c0643e3
FF
206 $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) @LIBS@ \
207 $(MMALLOC) $(LIBIBERTY)
c61c48c0
C
208CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
209 $(OPCODES) $(MMALLOC) $(LIBIBERTY)
7ae7b919
RP
210
211ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
212ADD_DEPS = $(REGEX1) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
213
6c0643e3 214VERSION = 4.16.1
33cf356a
SG
215DIST=gdb
216
217LINT=/usr/5bin/lint
7ae7b919 218LINTFLAGS= $(BFD_CFLAGS)
33cf356a 219
76336191
DE
220RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
221 echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
99c41106
JW
222 fi`
223
e7d3b7d1 224RUNTESTFLAGS=
6fcb280e 225
fd382d28
JK
226# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
227# interface to the serial port. Hopefully if get ported to OS/2, VMS,
228# etc., then there will be (as part of the C library or perhaps as
229# part of libiberty) a POSIX interface. But at least for now the
230# host-dependent makefile fragment might need to use something else
231# besides ser-unix.o
a2b63bbd 232SER_HARDWIRE = ser-unix.o
fd382d28 233
f261333b
JK
234# The `remote' debugging target is supported for most architectures,
235# but not all (e.g. 960)
5436fc65 236REMOTE_OBS = remote.o dcache.o remote-utils.o
f261333b 237
c61c48c0
C
238# This is remote-sim.o if a simulator is to be linked in.
239SIM_OBS =
240
e7b5942b
JK
241ANNOTATE_OBS = annotate.o
242
33cf356a 243# Host and target-dependent makefile fragments come in here.
5436fc65
C
244@host_makefile_frag@
245@target_makefile_frag@
33cf356a
SG
246# End of host and target-dependent makefile fragments
247
ef131e13 248FLAGS_TO_PASS = \
2fcc38b8
FF
249 "prefix=$(prefix)" \
250 "exec_prefix=$(exec_prefix)" \
ef131e13
JG
251 "against=$(against)" \
252 "AR=$(AR)" \
253 "AR_FLAGS=$(AR_FLAGS)" \
254 "CC=$(CC)" \
255 "CFLAGS=$(CFLAGS)" \
aecc5459
ILT
256 "CHILLFLAGS=$(CHILLFLAGS)" \
257 "CHILL=$(CHILL)" \
258 "CHILL_LIB=$(CHILL_LIB)" \
aecc5459
ILT
259 "CXX=$(CXX)" \
260 "CXXFLAGS=$(CXXFLAGS)" \
ef131e13
JG
261 "RANLIB=$(RANLIB)" \
262 "MAKEINFO=$(MAKEINFO)" \
263 "INSTALL=$(INSTALL)" \
264 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
265 "INSTALL_DATA=$(INSTALL_DATA)" \
e7d3b7d1 266 "RUNTEST=$(RUNTEST)" \
9c2c8c34 267 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
ef131e13 268
aecc5459
ILT
269# Flags that we pass when building the testsuite.
270
9c0bc1da
DE
271# empty for native, $(target_alias)/ for cross
272target_subdir = @target_subdir@
273
aecc5459 274CC_FOR_TARGET = ` \
058470e1 275 if [ -f $${rootme}/../gcc/xgcc ] ; then \
9c0bc1da
DE
276 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
277 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/; \
b98612f1
C
278 else \
279 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
280 fi; \
aecc5459
ILT
281 else \
282 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
283 echo $(CC); \
284 else \
285 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
286 fi; \
287 fi`
288
289CXX = gcc
aecc5459 290CXX_FOR_TARGET = ` \
c61c48c0 291 if [ -f $${rootme}/../gcc/xgcc ] ; then \
9c0bc1da
DE
292 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
293 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/; \
b98612f1
C
294 else \
295 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
296 fi; \
aecc5459
ILT
297 else \
298 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
299 echo $(CXX); \
300 else \
301 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
302 fi; \
303 fi`
304
aecc5459
ILT
305CHILLFLAGS = $(CFLAGS)
306CHILL = gcc
307CHILL_FOR_TARGET = ` \
308 if [ -f $${rootme}/../gcc/Makefile ] ; then \
a9c67591 309 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
aecc5459
ILT
310 else \
311 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
312 echo $(CC); \
313 else \
314 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
315 fi; \
316 fi`
2d144441
SS
317CHILL_LIB = ` \
318 if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
319 echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
320 $${rootme}/../gcc/ch/runtime/libchill.a; \
321 else \
322 echo -lchill; \
323 fi`
1fa66e36 324
0b96ed06
FF
325# The use of $$(x_FOR_TARGET) reduces the command line length by not
326# duplicating the lengthy definition.
aecc5459
ILT
327TARGET_FLAGS_TO_PASS = \
328 "prefix=$(prefix)" \
329 "exec_prefix=$(exec_prefix)" \
330 "against=$(against)" \
0b96ed06
FF
331 'CC=$$(CC_FOR_TARGET)' \
332 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
aecc5459 333 "CFLAGS=$(CFLAGS)" \
aecc5459 334 "CHILLFLAGS=$(CHILLFLAGS)" \
0b96ed06
FF
335 'CHILL=$$(CHILL_FOR_TARGET)' \
336 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
aecc5459 337 "CHILL_LIB=$(CHILL_LIB)" \
0b96ed06
FF
338 'CXX=$$(CXX_FOR_TARGET)' \
339 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
aecc5459 340 "CXXFLAGS=$(CXXFLAGS)" \
aecc5459
ILT
341 "INSTALL=$(INSTALL)" \
342 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
343 "INSTALL_DATA=$(INSTALL_DATA)" \
b7da2494 344 "MAKEINFO=$(MAKEINFO)" \
e7d3b7d1 345 "RUNTEST=$(RUNTEST)" \
b7da2494 346 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
aecc5459 347
5287eacd 348# All source files that go into linking GDB.
853a233b 349# Links made at configuration time should not be specified here, since
5287eacd
FF
350# SFILES is used in building the distribution archive.
351
a3ee56ec 352SFILES = bcache.c blockframe.c breakpoint.c buildsym.c c-exp.y \
2ad5709f
FF
353 c-lang.c c-typeprint.c c-valprint.c ch-exp.c ch-lang.c \
354 ch-typeprint.c ch-valprint.c coffread.c command.c complaints.c \
fcf05549
SS
355 corefile.c cp-valprint.c \
356 dbxread.c demangle.c dwarfread.c dwarf2read.c \
e7b5942b
JK
357 elfread.c environ.c eval.c expprint.c \
358 f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c \
359 gdbtypes.c infcmd.c inflow.c infrun.c language.c \
7a9eb4c4 360 java-exp.y java-lang.c java-valprint.c \
7ae7b919 361 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
db85f523 362 mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
3c02944a 363 printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c scm-valprint.c \
0e4ca328 364 source.c stabsread.c stack.c symfile.c symmisc.c \
172559ec 365 symtab.c target.c thread.c top.c \
fcf05549
SS
366 typeprint.c utils.c \
367 valarith.c valops.c valprint.c values.c \
368 serial.c ser-unix.c mdebugread.c os9kread.c
7ae7b919 369
33cf356a
SG
370LINTFILES = $(SFILES) $(YYFILES) init.c
371
7ae7b919 372# "system" headers. Using these in dependencies is a rather personal
5fa83062
JK
373# choice. (-rich, summer 1993)
374# (Why would we not want to depend on them? If one of these changes in a
375# non-binary-compatible way, it is a real pain to remake the right stuff
376# without these dependencies -kingdon, 13 Mar 1994)
377getopt_h = $(INCLUDE_DIR)/getopt.h
378floatformat_h = $(INCLUDE_DIR)/floatformat.h
379bfd_h = $(BFD_DIR)/bfd.h
380wait_h = $(INCLUDE_DIR)/wait.h
381dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
dbb0b55c 382remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
7ae7b919 383
c6f494e8 384dcache_h = dcache.h
dbb0b55c 385remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
c6f494e8 386
7a9eb4c4 387
7ae7b919
RP
388readline_headers = \
389 $(READLINE_SRC)/chardefs.h \
390 $(READLINE_SRC)/history.h \
391 $(READLINE_SRC)/keymaps.h \
392 $(READLINE_SRC)/readline.h
393
394udiheaders = \
36b1d528
SG
395 $(srcdir)/29k-share/udi/udiproc.h \
396 $(srcdir)/29k-share/udi/udiphcfg.h \
397 $(srcdir)/29k-share/udi/udiphunix.h \
398 $(srcdir)/29k-share/udi/udiptcfg.h \
399 $(srcdir)/29k-share/udi/udipt29k.h \
400 $(srcdir)/29k-share/udi/udisoc.h
7ae7b919 401
7ae7b919
RP
402gdbcore_h = gdbcore.h $(bfd_h)
403
404frame_h = frame.h
2ad5709f 405symtab_h = symtab.h bcache.h
7ae7b919
RP
406gdbtypes_h = gdbtypes.h
407expression_h = expression.h
408value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
409
410breakpoint_h = breakpoint.h $(frame_h) $(value_h)
411
412command_h = command.h
413gdbcmd_h = gdbcmd.h $(command_h)
414
db210d08 415defs_h = defs.h xm.h tm.h nm.h config.status config.h
7ae7b919
RP
416
417inferior_h = inferior.h $(breakpoint_h)
418
4901e77d
FF
419# Header files that need to have srcdir added. Note that in the cases
420# where we use a macro like $(gdbcmd_h), things are carefully arranged
421# so that each .h file is listed exactly once (M-x tags-search works
422# wrong if TAGS has files twice). Because this is tricky to get
423# right, it is probably easiest just to list .h files here directly.
7ae7b919 424
2ad5709f
FF
425HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
426 dst.h environ.h $(gdbcmd_h) gdbcore.h \
1c95d7ab 427 gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
7ae7b919
RP
428 objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
429 symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
7a9eb4c4 430 c-lang.h ch-lang.h f-lang.h java-lang.h m2-lang.h \
e7b5942b 431 complaints.h valprint.h \
7ae7b919 432 29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
9b311b22
FF
433 nindy-share/block_io.h nindy-share/coff.h \
434 nindy-share/env.h nindy-share/stop.h \
7ae7b919
RP
435 vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
436 vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
fdfa3315 437 vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
dbb0b55c 438 dcache.h remote-utils.h top.h somsolib.h
2531303c 439
1c95d7ab 440# Header files that already have srcdir in them, or which are in objdir.
f4f0d174 441
1c95d7ab 442HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
f4f0d174
JK
443
444
2531303c
FF
445# GDB "info" files, which should be included in their entirety
446INFOFILES = gdb.info*
33cf356a 447
22473f72 448REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
33cf356a 449
811f1bdc 450POSSLIBS = gnu-regex.c gnu-regex.h
33cf356a 451
fd382d28
JK
452# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
453# default their values the way we do for SER_HARDWIRE; in the future
454# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
455# variables analogous to SER_HARDWIRE which get defaulted in this
456# Makefile.in
457
c61c48c0 458DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
a3ee56ec 459 $(REMOTE_OBS) $(SIM_OBS) @CONFIG_OBS@
33cf356a 460
2531303c 461SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
853a233b
JK
462# Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
463# and it's more useful to see it in the .y file.
f4f0d174 464TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
c8a1505a 465 $(POSSLIBS)
f4f0d174 466TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
7ae7b919 467
d8fc8773 468COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
7ae7b919 469 source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
9b311b22 470 symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
d8fc8773 471 expprint.o environ.o gdbtypes.o copying.o $(DEPFILES) \
f93b941b 472 mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
2ad5709f 473 exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
e7b5942b 474 dbxread.o coffread.o elfread.o \
fcf05549 475 dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
7a9eb4c4
PB
476 c-lang.o ch-exp.o ch-lang.o f-lang.o \
477 java-lang.o java-valprint.o m2-lang.o \
3c02944a 478 scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
e7b5942b
JK
479 c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
480 c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
a3ee56ec 481 nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o
33cf356a 482
e7b5942b 483OBS = $(COMMON_OBS) $(ANNOTATE_OBS) main.o
d8fc8773 484
172559ec 485LIBGDB_OBS =
d8fc8773 486
c9c23412 487TSOBS = inflow.o
33cf356a
SG
488
489NTSOBS = standalone.o
490
33cf356a
SG
491NTSSTART = kdb-start.o
492
4ce7ba51 493SUBDIRS = doc testsuite nlm mswin
33cf356a
SG
494
495# For now, shortcut the "configure GDB for fewer languages" stuff.
7a9eb4c4
PB
496YYFILES = c-exp.tab.c java-exp.tab.c f-exp.tab.c m2-exp.tab.c
497YYOBJ = c-exp.tab.o java-exp.tab.o f-exp.tab.o m2-exp.tab.o
33cf356a 498
de19d1ed
FF
499# Things which need to be built when making a distribution.
500
501DISTSTUFF = $(YYFILES)
502
33cf356a
SG
503# Prevent Sun make from putting in the machine type. Setting
504# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
505.c.o:
7ae7b919 506 $(CC) -c $(INTERNAL_CFLAGS) $<
33cf356a 507
218d43e5 508all: gdb
0139c441 509 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
6fcb280e 510
80c8fd72 511installcheck:
f4f0d174
JK
512
513# The check target can not use subdir_do, because subdir_do does not
514# use TARGET_FLAGS_TO_PASS.
e7d3b7d1 515check: force
f4f0d174
JK
516 @if [ -f testsuite/Makefile ]; then \
517 rootme=`pwd`; export rootme; \
b98612f1 518 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
f4f0d174
JK
519 cd testsuite; \
520 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
521 else true; fi
522
7ae7b919 523info dvi install-info clean-info: force
0139c441 524 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
33cf356a
SG
525
526gdb.z:gdb.1
527 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
528 pack gdb.t ; rm -f gdb.t
529 mv gdb.t.z gdb.z
b8774958 530
7ae7b919 531# Traditionally "install" depends on "all". But it may be useful
702c0ff7
JK
532# not to; for example, if the user has made some trivial change to a
533# source file and doesn't care about rebuilding or just wants to save the
534# time it takes for make to check that all is up to date.
7ae7b919
RP
535# install-only is intended to address that need.
536install: all install-only
ef1a0540 537install-only:
94d4b713 538 transformed_name=`t='$(program_transform_name)'; \
582433a8 539 echo gdb | sed -e $$t` ; \
09722039
SG
540 if test "x$$transformed_name" = x; then \
541 transformed_name=gdb ; \
542 else \
543 true ; \
544 fi ; \
545 $(INSTALL_PROGRAM) gdb $(bindir)/$$transformed_name ; \
546 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
d3d75ec9 547 # start-sanitize-gdbtk
2ec604df 548 if [ x"$(ENABLE_GDBTK)" != x ] ; then \
8517f62b
AC
549 if [ ! -d $(datadir)/gdbtcl ]; then \
550 echo "Making directory gdbtcl"; \
551 mkdir $(datadir)/gdbtcl; \
552 chmod 755 $(datadir)/gdbtcl; \
553 fi ; \
7a9eb4c4 554 cd $(srcdir)/gdbtcl ; \
8517f62b 555 for i in asm.tcl break.xbm breakpoint.tcl command.tcl copyright.tcl expr.tcl file.tcl main.tcl register.tcl source.tcl stop2.gif tclIndex ; \
7a9eb4c4
PB
556 do \
557 $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \
558 done ; \
09722039
SG
559 else \
560 true ; \
561 fi
d3d75ec9 562 # end-sanitize-gdbtk
7ae7b919 563 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
33cf356a 564
7ae7b919 565uninstall: force
736a82e7 566 transformed_name=`t='$(program_transform_name)'; \
582433a8 567 echo gdb | sed -e $$t` ; \
09722039
SG
568 if test "x$$transformed_name" = x; then \
569 transformed_name=gdb ; \
570 else \
571 true ; \
572 fi ; \
573 rm -f $(bindir)/$$transformed_name $(man1dir)/$$transformed_name.1
7ae7b919 574 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
33cf356a 575
976bb0be
JK
576# We do this by grepping through sources. If that turns out to be too slow,
577# maybe we could just require every .o file to have an initialization routine
578# of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
623d7380
JK
579#
580# Formatting conventions: The name of the _initialize_* routines must start
581# in column zero, and must not be inside #if.
0f221a69
FF
582#
583# Note that the set of files with init functions might change, or the names
584# of the functions might change, so this files needs to depend on all the
585# object files that will be linked into gdb.
586
976bb0be
JK
587init.c: $(OBS) $(TSOBS)
588 @echo Making init.c
589 @rm -f init.c-tmp
590 @echo '/* Do not modify this file. */' >init.c-tmp
591 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
d9951af4
SG
592 @echo '#include "ansidecl.h"' >>init.c-tmp
593 @echo 'extern void initialize_all_files PARAMS ((void));' >>init.c-tmp
594 @echo 'void initialize_all_files PARAMS ((void)) {' >>init.c-tmp
5d394f70
SG
595 @echo $(OBS) $(TSOBS) | \
596 tr ' ' '\012' | \
597 sed -e '/^Onindy.o/d' \
976bb0be
JK
598 -e '/^nindy.o/d' \
599 -e '/ttyflush.o/d' \
600 -e '/xdr_ld.o/d' \
601 -e '/xdr_ptrace.o/d' \
602 -e '/xdr_rdb.o/d' \
603 -e '/udr.o/d' \
604 -e '/udip2soc.o/d' \
7fb95139 605 -e '/udi2go32.o/d' \
976bb0be 606 -e '/version.o/d' \
d8efbc66 607 -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
976bb0be 608 -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
5d394f70
SG
609 -e 's/\.o/.c/' \
610 -e 's|\([^ ][^ ]*\)|$(srcdir)/\1|g' | \
a3ee56ec
ILT
611 xargs grep '^_initialize_[a-z_0-9A-Z]* *(' | \
612 sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/ {extern void \1 PARAMS ((void)); \1 ();}/' >>init.c-tmp
976bb0be
JK
613 @echo '}' >>init.c-tmp
614 @mv init.c-tmp init.c
7ae7b919 615
c2153bf2
JK
616.PRECIOUS: init.c
617
618# Removing the old gdb first works better if it is running, at least on SunOS.
667fb5c3 619gdb: $(OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
c2153bf2 620 rm -f gdb
5d394f70 621 $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) -o gdb \
33cf356a
SG
622 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
623
b7da2494
SG
624nlm: force
625 rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
626
218d43e5
SS
627libgdb: libgdb-files $(LIBGDB_OBS)
628
d3507982
JK
629# libproc is not listed here because all-libproc is a dependency of all-gui,
630# not all-gdb, and thus might be built after us.
631LIBGDBDEPS=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) init.o
632# libproc needs to be before libiberty for alloca.
633LIBGDBFILES=$(COMMON_OBS) $(LIBGDB_OBS) $(TSOBS) ../libproc/libproc.a \
634 $(ADD_DEPS) $(CDEPS) init.o
635
636libgdb-files: $(LIBGDBDEPS) Makefile.in
8eb7b7c3
TL
637 -rm -f libgdb-files
638 for i in $(LIBGDBFILES); do\
667fb5c3 639 echo $$i >> libgdb-files;\
8eb7b7c3
TL
640 done
641
33cf356a 642saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
7ae7b919 643 #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
33cf356a 644 #load ./init.c $(SFILES)
7a9eb4c4 645 #unload $(srcdir)/c-exp.y $(srcdir)/java-exp.y $(srcdir)/m2-exp.y
7ae7b919
RP
646 #unload vx-share/*.h
647 #unload nindy-share/[A-Z]*
7a9eb4c4 648 #load c-exp.tab.c java-exp.tab.c m2-exp.tab.c
33cf356a 649 #load copying.c version.c
1e4f3c20 650 #load ../opcodes/libopcodes.a
33cf356a
SG
651 #load ../libiberty/libiberty.a
652 #load ../bfd/libbfd.a
653 #load ../readline/libreadline.a
654 #load ../mmalloc/libmmalloc.a
655 #load -ltermcap
656 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
657 echo "Load .c corresponding to:" $(DEPFILES)
658
659
6ec7e4d3
SS
660# A Mach 3.0 program to force gdb back to command level
661
a8044a2d 662stop-gdb: stop-gdb.o
a2b63bbd 663 ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
a8044a2d 664 stop-gdb.o $(CLIBS) $(LOADLIBES)
6ec7e4d3 665
33cf356a
SG
666# This is useful when debugging GDB, because some Unix's don't let you run GDB
667# on itself without copying the executable. So "make gdb1" will make
668# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
669# Removing gdb1 before the copy is the right thing if gdb1 is open
670# in another process.
671gdb1: gdb
672 rm -f gdb1
673 cp gdb gdb1
674
7ae7b919 675### fixme - this can't be right.
ef131e13
JG
676# This checks the configure.in file versus the config/ directory.
677config-check: config-check-hosts config-check-targets
678config-check-hosts:
7ae7b919 679 grep gdb_host= $(srcdir)/configure.in | \
ef131e13 680 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
7ae7b919 681 (cd $(srcdir)/config; ls *.mh) >HOSTdir.o
ef131e13
JG
682 diff -u HOSTconf.o HOSTdir.o
683
7ae7b919 684### fixme - nor can this.
ef131e13 685config-check-targets:
7ae7b919 686 grep gdb_target= $(srcdir)/configure.in | \
ef131e13 687 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
7ae7b919 688 (cd $(srcdir)/config; ls *.mt) >TARGdir.o
ef131e13
JG
689 diff -u HOSTconf.o HOSTdir.o
690
7ae7b919 691# FIXME. These are not generated by "make depend" because they only are there
33cf356a
SG
692# for some machines.
693# But these rules don't do what we want; we want to hack the foo.o: tm.h
694# dependency to do the right thing.
2225eb85
FF
695tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
696tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
33cf356a
SG
697xm-news1000.h: xm-news.h
698xm-i386-sv32.h: xm-i386.h
699tm-i386gas.h: tm-i386.h
700xm-sun4os4.h: xm-sparc.h
701tm-sun4os4.h: tm-sparc.h
702xm-vaxult.h: xm-vax.h
703xm-vaxbsd.h: xm-vax.h
704
7ae7b919 705kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
33cf356a
SG
706 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
707 -lc $(CLIBS)
708
8d57a263 709# Put the proper machine-specific files first, so M-. on a machine
f4f0d174
JK
710# specific routine gets the one for the correct machine. (FIXME: those
711# files go in twice; we should be removing them from the main list).
712
713# TAGS depends on all the files that go into it so you can rebuild TAGS
714# with `make TAGS' and not have to say `rm TAGS' first.
715
716TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
4901e77d 717 @echo Making TAGS
94d4b713
JK
718 @etags $(srcdir)/$(TM_FILE) \
719 $(srcdir)/$(XM_FILE) \
720 $(srcdir)/$(NAT_FILE) \
f4f0d174 721 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
7ae7b919 722 echo $(srcdir)/$$i ; \
f4f0d174
JK
723 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
724 echo $$i ; \
c8a1505a
JK
725 done) | sed -e 's/\.o$$/\.c/'` \
726 `find $(srcdir)/config -name '*.h' -print`
7ae7b919 727
33cf356a
SG
728tags: TAGS
729
b76dcd4b 730clean mostlyclean:
4e772f44 731 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
976bb0be 732 rm -f *.o $(ADD_FILES) *~ init.c-tmp
33cf356a 733 rm -f init.c version.c
1ded65d1 734 rm -f gdb core make.log libgdb-files
33cf356a 735 rm -f gdb[0-9]
33cf356a 736
5e548861 737# This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
39d4639b
JK
738# I believe this is wrong; the makefile standards for distclean just
739# describe removing files; the only sort of "re-create a distribution"
740# functionality described is if the distributed files are unmodified.
741distclean: clean
4e772f44 742 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
7a9eb4c4 743 rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
fdf138bb 744 rm -f y.output yacc.acts yacc.tmp y.tab.h
c61c48c0 745 rm -f config.log config.cache
7ae7b919 746 rm -f Makefile
33cf356a 747
582433a8
ILT
748maintainer-clean realclean: clean
749 @echo "This command is intended for maintainers to use;"
750 @echo "it deletes files that may require special tools to rebuild."
751 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" subdir_do
7a9eb4c4 752 rm -f c-exp.tab.c java-exp.tab.c f-exp.tab.c m2-exp.tab.c
e7b5942b 753 rm -f TAGS $(INFOFILES)
39d4639b
JK
754 rm -f nm.h tm.h xm.h config.status
755 rm -f y.output yacc.acts yacc.tmp
c61c48c0 756 rm -f config.log config.cache
7ae7b919 757 rm -f Makefile
33cf356a 758
de19d1ed 759diststuff: $(DISTSTUFF)
2ad5709f 760 cd doc; $(MAKE) $(MFLAGS) all-doc
de19d1ed 761
33cf356a
SG
762subdir_do: force
763 @for i in $(DODIRS); do \
6f4a4fbb 764 if [ -f ./$$i/Makefile ] ; then \
33cf356a 765 if (cd ./$$i; \
ef131e13 766 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
33cf356a
SG
767 else exit 1 ; fi ; \
768 else true ; fi ; \
769 done
d941d8c3 770
c61c48c0 771Makefile: Makefile.in config.status @frags@
7ae7b919 772 $(SHELL) config.status
d941d8c3 773
bfcf3112 774config.h: stamp-h ; @true
18ea4416
ILT
775stamp-h: config.in config.status
776 CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
bfcf3112 777
e61853dd
C
778config.status: configure
779 $(SHELL) config.status --recheck
780
33cf356a 781force:
d941d8c3 782
33cf356a
SG
783# Documentation!
784# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
d9f12910
PB
785doc/refcard.dvi:
786 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
d941d8c3 787
33cf356a 788# GDB QUICK REFERENCE (PostScript output, common PS fonts)
d9f12910
PB
789doc/refcard.ps:
790 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
d941d8c3 791
33cf356a 792# GDB MANUAL: TeX dvi file
d9f12910
PB
793doc/gdb.dvi:
794 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
d941d8c3 795
33cf356a 796# GDB MANUAL: info file
d9f12910
PB
797doc/gdb.info:
798 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
d941d8c3 799
33cf356a 800# Make copying.c from COPYING
7ae7b919
RP
801copying.c: COPYING copying.awk
802 awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
d941d8c3 803
33cf356a
SG
804version.c: Makefile
805 echo 'char *version = "$(VERSION)";' >version.c
a28d16d3
JK
806 echo 'char *host_name = "$(host_alias)";' >> version.c
807 echo 'char *target_name = "$(target_alias)";' >> version.c
d941d8c3 808
7ae7b919
RP
809# c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
810# in srcdir, then compiled in objdir to c-exp.tab.o.
f3fe62b1
JK
811
812# If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
813# would sometimes re-write it into $(srcdir)/c-exp.tab.c.
814
9aa44833 815# Remove bogus decls for malloc/realloc/free which conflict with everything
ef1a0540
JK
816# else. Strictly speaking c-exp.tab.c should therefore depend on
817# Makefile.in, but that was a pretty big annoyance.
33cf356a 818c-exp.tab.o: c-exp.tab.c
ef1a0540 819c-exp.tab.c: c-exp.y
7ae7b919 820 $(YACC) $(YFLAGS) $(srcdir)/c-exp.y
9aa44833
SG
821 -sed -e '/extern.*malloc/d' \
822 -e '/extern.*realloc/d' \
823 -e '/extern.*free/d' \
e58de8a2 824 -e '/include.*malloc.h/d' \
e35843d4
FF
825 -e 's/malloc/xmalloc/g' \
826 -e 's/realloc/xrealloc/g' \
39d4639b 827 < y.tab.c > c-exp.new
9aa44833 828 -rm y.tab.c
f3fe62b1 829 mv c-exp.new ./c-exp.tab.c
d941d8c3 830
7a9eb4c4
PB
831java-exp.tab.o: java-exp.tab.c
832java-exp.tab.c: java-exp.y
833 $(YACC) $(YFLAGS) $(srcdir)/java-exp.y
834 -sed -e '/extern.*malloc/d' \
835 -e '/extern.*realloc/d' \
836 -e '/extern.*free/d' \
837 -e '/include.*malloc.h/d' \
838 -e 's/malloc/xmalloc/g' \
839 -e 's/realloc/xrealloc/g' \
840 < y.tab.c > java-exp.new
841 -rm y.tab.c
842 mv java-exp.new ./java-exp.tab.c
843
e7b5942b
JK
844f-exp.tab.o: f-exp.tab.c
845f-exp.tab.c: f-exp.y c-exp.tab.c
846 $(YACC) $(YFLAGS) $(srcdir)/f-exp.y
847 -sed -e '/extern.*malloc/d' \
848 -e '/extern.*realloc/d' \
849 -e '/extern.*free/d' \
850 -e '/include.*malloc.h/d' \
851 -e 's/malloc/xmalloc/g' \
852 -e 's/realloc/xrealloc/g' \
853 < y.tab.c > f-exp.new
854 -rm y.tab.c
855 mv f-exp.new ./f-exp.tab.c
856
7ae7b919
RP
857# m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
858# in srcdir, then compiled in objdir to m2-exp.tab.o.
e58de8a2
FF
859# Remove bogus decls for malloc/realloc/free which conflict with everything
860# else.
33cf356a 861m2-exp.tab.o: m2-exp.tab.c
5e548861 862m2-exp.tab.c: m2-exp.y
7ae7b919 863 $(YACC) $(YFLAGS) $(srcdir)/m2-exp.y
9aa44833
SG
864 -sed -e '/extern.*malloc/d' \
865 -e '/extern.*realloc/d' \
866 -e '/extern.*free/d' \
e58de8a2 867 -e '/include.*malloc.h/d' \
e35843d4
FF
868 -e 's/malloc/xmalloc/g' \
869 -e 's/realloc/xrealloc/g' \
39d4639b 870 < y.tab.c > m2-exp.new
9aa44833 871 -rm y.tab.c
f3fe62b1 872 mv m2-exp.new ./m2-exp.tab.c
39d4639b
JK
873
874# These files are updated atomically, so make never has to remove them
7a9eb4c4 875.PRECIOUS: m2-exp.tab.c java-exp.tab.c f-exp.tab.c c-exp.tab.c
d941d8c3 876
33cf356a
SG
877lint: $(LINTFILES)
878 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1a57cd09 879 `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
d941d8c3 880
33cf356a
SG
881gdb.cxref: $(SFILES)
882 cxref -I. $(SFILES) >gdb.cxref
d941d8c3 883
33cf356a 884force_update:
d941d8c3 885
33cf356a
SG
886# GNU Make has an annoying habit of putting *all* the Makefile variables
887# into the environment, unless you include this target as a circumvention.
888# Rumor is that this will be fixed (and this target can be removed)
889# in GNU Make 4.0.
890.NOEXPORT:
d941d8c3 891
aecc5459
ILT
892# GNU Make 3.63 has a different problem: it keeps tacking command line
893# overrides onto the definition of $(MAKE). This variable setting
894# will remove them.
895MAKEOVERRIDES=
896
58bb1e76
ILT
897## This is ugly, but I don't want GNU make to put these variables in
898## the environment. Older makes will see this as a set of targets
899## with no dependencies and no actions.
900unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
58bb1e76 901
f3fe62b1 902ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
07919221 903 29k-share/udi/udi2go32.c \
a9c67591 904 a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
cef4c2e7 905 altos-xdep.c arm-convert.s \
a9c67591 906 arm-tdep.c arm-xdep.c coff-solib.c \
a1df8e78
FF
907 convex-tdep.c convex-xdep.c \
908 core-sol2.c core-regset.c core-aout.c corelow.c \
909 dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
a9c67591
JK
910 go32-xdep.c gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
911 hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
736a82e7 912 hpread.c \
a9c67591 913 i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c \
f4f0d174 914 i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
5d76c8e6 915 i387-tdep.c \
a9c67591 916 i960-tdep.c \
07919221 917 infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
f4f0d174 918 lynx-nat.c m3-nat.c \
a9c67591 919 m68k-tdep.c \
e02a2ad9 920 m88k-nat.c m88k-tdep.c mac-nat.c mips-nat.c \
1c95d7ab 921 mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
5d76c8e6 922 nindy-share/Onindy.c nindy-share/nindy.c \
9b311b22 923 nindy-share/ttyflush.c nindy-tdep.c \
a9c67591 924 ns32k-tdep.c ns32km3-nat.c osfsolib.c \
d360e1e0 925 somread.c somsolib.c $(HPREAD_SOURCE) \
a9c67591 926 procfs.c pyr-tdep.c pyr-xdep.c \
9c0bc1da
DE
927 remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
928 remote-es.c remote-hms.c remote-mips.c \
dedcc91d 929 remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
c6f494e8 930 remote-st.c remote-utils.c dcache.c \
c61c48c0 931 remote-udi.c remote-vx.c remote-vx29k.c \
a9c67591
JK
932 rs6000-nat.c rs6000-tdep.c \
933 ser-go32.c ser-tcp.c sh-tdep.c solib.c sparc-nat.c \
934 sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
3fd4045f 935 symm-tdep.c symm-nat.c \
a9c67591
JK
936 tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
937 vax-tdep.c \
5d76c8e6 938 vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
1480482a 939 win32-nat.c \
e7b5942b 940 xcoffread.c xcoffsolib.c z8k-tdep.c
7ae7b919 941
83d9bb14 942ALLCONFIG = config/a29k/a29k-kern.mt config/a29k/a29k-udi.mt config/a29k/vx29k.mt\
7ae7b919 943 config/a29k/a29k.mt config/a29k/ultra3.mh config/a29k/ultra3.mt \
2592eef8
PS
944 config/alpha/alpha-osf1.mh config/alpha/alpha-osf2.mh \
945 config/alpha/alpha-osf1.mt config/alpha/alpha-nw.mt \
7ae7b919
RP
946 config/arm/arm.mh config/arm/arm.mt config/convex/convex.mh \
947 config/convex/convex.mt config/gould/np1.mh config/gould/np1.mt \
948 config/gould/pn.mh config/gould/pn.mt config/h8300/h8300hms.mt \
949 config/h8500/h8500hms.mt config/i386/go32.mh config/i386/i386aix.mh \
950 config/i386/i386aix.mt config/i386/i386aout.mt config/i386/i386bsd.mh \
5069d770 951 config/i386/i386bsd.mt config/i386/i386lynx.mh \
ed89c3d9
FF
952 config/i386/i386lynx.mt config/i386/i386m3.mh config/i386/i386m3.mt \
953 config/i386/i386mach.mh config/i386/i386mk.mh config/i386/i386mk.mt \
954 config/i386/i386nw.mt config/i386/i386sco.mh \
5069d770 955 config/i386/i386sco4.mh \
7ae7b919
RP
956 config/i386/i386sol2.mh config/i386/i386sol2.mt config/i386/i386v.mh \
957 config/i386/i386v.mt config/i386/i386v32.mh config/i386/i386v4.mh \
958 config/i386/i386v4.mt config/i386/linux.mh config/i386/linux.mt \
6879f0db
FF
959 config/i386/ncr3000.mh config/i386/ncr3000.mt config/i386/ptx.mh \
960 config/i386/sun386.mh \
7ae7b919 961 config/i386/sun386.mt config/i386/symmetry.mh config/i386/symmetry.mt \
1480482a 962 config/i386/win32.mh config/i386/win32.mt \
d5fde1c9 963 config/i960/mon960.mt \
7ae7b919
RP
964 config/i960/nindy960.mt config/i960/vxworks960.mt config/m68k/3b1.mh \
965 config/m68k/3b1.mt config/m68k/altos.mh config/m68k/altos.mt \
966 config/m68k/amix.mh config/m68k/amix.mt config/m68k/apollo68b.mh \
07919221 967 config/m68k/apollo68b.mt \
1c95d7ab
JK
968 config/m68k/apollo68v.mh \
969 config/m68k/cisco.mt config/m68k/delta68.mh \
5069d770
FF
970 config/m68k/delta68.mt config/m68k/dpx2.mh config/m68k/dpx2.mt \
971 config/m68k/es1800.mt config/m68k/hp300bsd.mh \
7ae7b919
RP
972 config/m68k/hp300bsd.mt config/m68k/hp300hpux.mh \
973 config/m68k/hp300hpux.mt config/m68k/isi.mh config/m68k/isi.mt \
3fd4045f 974 config/m68k/m68klynx.mh config/m68k/m68klynx.mt \
5069d770 975 config/m68k/monitor.mt \
7ae7b919
RP
976 config/m68k/news.mh config/m68k/news.mt config/m68k/news1000.mh \
977 config/m68k/os68k.mt config/m68k/st2000.mt config/m68k/sun2os3.mh \
978 config/m68k/sun2os3.mt config/m68k/sun2os4.mh config/m68k/sun2os4.mt \
979 config/m68k/sun3os3.mh config/m68k/sun3os3.mt config/m68k/sun3os4.mh \
980 config/m68k/sun3os4.mt config/m68k/vxworks68.mt config/m88k/delta88.mh \
0ac1a039
FF
981 config/m88k/delta88.mt config/m88k/delta88v4.mh \
982 config/m88k/delta88v4.mt config/m88k/m88k.mh config/m88k/m88k.mt \
662f3b3f
JK
983 config/mips/bigmips.mt config/mips/bigmips64.mt \
984 config/mips/decstation.mh \
7ae7b919 985 config/mips/decstation.mt config/mips/idt.mt config/mips/idtl.mt \
662f3b3f 986 config/mips/idt64.mt config/mips/idtl64.mt \
7ae7b919 987 config/mips/irix3.mh config/mips/irix3.mt config/mips/irix4.mh \
07919221 988 config/mips/irix5.mh config/mips/irix5.mt \
7ae7b919 989 config/mips/littlemips.mh config/mips/littlemips.mt \
662f3b3f 990 config/mips/mipsel64.mt \
ed89c3d9 991 config/mips/mipsm3.mh config/mips/mipsm3.mt \
1c95d7ab 992 config/mips/mipsv4.mh config/mips/mipsv4.mt \
5069d770 993 config/mips/news-mips.mh config/mips/riscos.mh \
7ae7b919 994 config/none/none.mh config/none/none.mt config/ns32k/merlin.mh \
ed89c3d9
FF
995 config/ns32k/merlin.mt config/ns32k/ns32km3.mh config/ns32k/ns32km3.mt \
996 config/ns32k/umax.mh config/ns32k/umax.mt \
7ae7b919
RP
997 config/pa/hppabsd.mh config/pa/hppabsd.mt config/pa/hppahpux.mh \
998 config/pa/hppahpux.mt config/pyr/pyramid.mh config/pyr/pyramid.mt \
999 config/romp/rtbsd.mh config/rs6000/rs6000.mh config/rs6000/rs6000.mt \
1000 config/sh/sh.mt config/sparc/sparc-em.mt config/sparc/sparclite.mt \
3fd4045f 1001 config/sparc/sparclynx.mh config/sparc/sparclynx.mt \
7ae7b919
RP
1002 config/sparc/sun4os4.mh config/sparc/sun4os4.mt \
1003 config/sparc/sun4sol2.mh config/sparc/sun4sol2.mt \
1004 config/sparc/vxsparc.mt config/tahoe/tahoe.mh config/tahoe/tahoe.mt \
1005 config/vax/vax.mt config/vax/vaxbsd.mh config/vax/vaxult.mh \
1006 config/vax/vaxult2.mh config/z8k/z8ksim.mt
1007
1008
36b1d528 1009udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
7ae7b919
RP
1010 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1011
021a5c6b
JK
1012udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1013 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1014
36b1d528 1015udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
7ae7b919
RP
1016 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1017
899931b6 1018a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
a9c67591 1019
7ae7b919 1020a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
cef4c2e7
PS
1021
1022alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1023
1024alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
d5fde1c9 1025 $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
cef4c2e7 1026
7ae7b919 1027altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
8aa8690c
FF
1028
1029annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1030
b607efe7
FF
1031arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1032 $(gdbcore_h)
7ae7b919 1033
2ad5709f
FF
1034bcache.o: bcache.c bcache.h $(defs_h)
1035
7ae7b919
RP
1036blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1037 objfiles.h symfile.h target.h
1038
1039breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
fdfa3315 1040 $(inferior_h) language.h target.h gdbthread.h gdb_string.h
7ae7b919
RP
1041
1042buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
d5fde1c9 1043 objfiles.h symfile.h $(symtab_h) gdb_string.h
7ae7b919
RP
1044
1045c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1046 language.h parser-defs.h $(symtab_h)
1047
1048c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
d5fde1c9
FF
1049 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1050 target.h typeprint.h $(value_h) gdb_string.h
7ae7b919
RP
1051
1052c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1053 language.h $(symtab_h) valprint.h $(value_h)
1054
e7b5942b 1055f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
d5fde1c9 1056 language.h parser-defs.h $(symtab_h) gdb_string.h
e7b5942b
JK
1057
1058f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
d5fde1c9
FF
1059 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1060 target.h typeprint.h $(value_h) gdb_string.h
e7b5942b
JK
1061
1062f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
d5fde1c9
FF
1063 language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1064
1065ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
e7b5942b 1066
7ae7b919
RP
1067ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1068 language.h parser-defs.h $(symtab_h)
1069
1070ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
b8615fae 1071 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
d5fde1c9 1072 target.h $(value_h) typeprint.h gdb_string.h
7ae7b919
RP
1073
1074ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
b8615fae 1075 language.h $(symtab_h) valprint.h $(value_h) c-lang.h
7ae7b919 1076
ead291d4
SG
1077coff-solib.o: coff-solib.c $(defs_h)
1078
7ae7b919
RP
1079coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1080 complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
d5fde1c9
FF
1081 symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1082 gdb_string.h
7ae7b919
RP
1083
1084command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
b52cac6b 1085 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h $(wait_h)
7ae7b919
RP
1086
1087complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1088
7ae7b919
RP
1089convex-tdep.o: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1090 $(gdbcore_h) $(inferior_h)
1091
1092convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1093 $(inferior_h)
1094
d360e1e0
PS
1095copying.o: copying.c $(defs_h) $(gdbcmd_h)
1096
a1df8e78
FF
1097core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1098
256533df 1099core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1100 $(inferior_h) target.h gdb_string.h
256533df 1101
a1df8e78 1102core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1103 $(inferior_h) target.h gdb_string.h
7ae7b919 1104
9c0bc1da 1105corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
d5fde1c9 1106 $(inferior_h) target.h language.h gdb_string.h
7ae7b919 1107
7ae7b919 1108corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
fdfa3315 1109 target.h gdbthread.h gdb_string.h
7ae7b919
RP
1110
1111cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
d5fde1c9 1112 $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
7ae7b919 1113
b607efe7 1114dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
755892d6 1115
7ae7b919
RP
1116dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1117 complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1118 $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
d5fde1c9 1119 symfile.h $(symtab_h) target.h gdb_string.h
7ae7b919 1120
68f49dae
FF
1121delta68-nat.o: delta68-nat.c $(defs_h)
1122
d5fde1c9
FF
1123demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1124
1125dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
7ae7b919 1126
d5fde1c9 1127dstread.o: dstread.c gdb_string.h
d360e1e0 1128
7ae7b919
RP
1129dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1130 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
d5fde1c9 1131 $(symtab_h) gdb_string.h
7ae7b919 1132
fcf05549
SS
1133dwarf2read.o: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
1134 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1135 $(symtab_h) gdb_string.h
1136
7ae7b919 1137elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
a3ee56ec
ILT
1138 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h \
1139 $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
7ae7b919 1140
d5fde1c9 1141environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
7ae7b919
RP
1142
1143eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
d5fde1c9
FF
1144 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1145 gdb_string.h
7ae7b919
RP
1146
1147exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
d5fde1c9 1148 target.h language.h gdb_string.h
7ae7b919
RP
1149
1150expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1151 language.h parser-defs.h $(symtab_h) $(value_h)
1152
d5fde1c9
FF
1153findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1154 gdb_string.h
7ae7b919
RP
1155
1156fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
fdfa3315 1157 $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
7ae7b919 1158
d3d75ec9 1159# start-sanitize-gdbtk
754e5da2 1160gdbtk.o: gdbtk.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
d5fde1c9 1161 $(bfd_h) symfile.h objfiles.h target.h gdb_string.h
ad0c0b7f 1162 $(CC) -c $(INTERNAL_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
7a9eb4c4 1163 $(srcdir)/gdbtk.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
d3d75ec9 1164# end-sanitize-gdbtk
754e5da2 1165
7ae7b919
RP
1166gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1167 $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
d5fde1c9 1168 $(value_h) gdb_string.h
7ae7b919
RP
1169
1170go32-xdep.o: go32-xdep.c
1171
a9c67591 1172gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
7ae7b919
RP
1173 $(gdbcore_h) $(symtab_h)
1174
1175gould-xdep.o: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
a9c67591 1176
7ae7b919
RP
1177h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1178
1179h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1180 $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1181 $(value_h)
1182
1183hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
7ae7b919
RP
1184
1185hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1186 $(inferior_h) objfiles.h symfile.h target.h
1187
1188hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1189hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
d360e1e0 1190
d5fde1c9
FF
1191i386-tdep.o: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1192 gdb_string.h
a9c67591 1193
d360e1e0
PS
1194i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1195 language.h $(gdbcore_h) $(floatformat_h) target.h
a9c67591 1196
7ae7b919 1197i386b-nat.o: i386b-nat.c $(defs_h)
a9c67591 1198
3fd4045f 1199i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
a9c67591 1200
b607efe7 1201i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
a9c67591 1202
d360e1e0 1203i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
a9c67591 1204
7ae7b919
RP
1205i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1206
5fa83062 1207i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
7ae7b919
RP
1208 $(inferior_h) language.h target.h
1209
1210i386v4-nat.o: i386v4-nat.c $(defs_h)
1211
5fa83062 1212i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
7ae7b919
RP
1213 $(inferior_h) language.h
1214
5fa83062 1215i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
b607efe7 1216 $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
7ae7b919
RP
1217
1218infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
d5fde1c9 1219 $(inferior_h) target.h language.h gdb_string.h
7ae7b919
RP
1220
1221inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
fdfa3315 1222 signals.h target.h terminal.h gdbthread.h gdb_string.h
7ae7b919 1223
d5fde1c9 1224infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
b52cac6b 1225 gdb_string.h $(wait_h) $(command_h)
7ae7b919
RP
1226
1227infrun.o: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
fdfa3315 1228 $(inferior_h) target.h gdbthread.h gdb_string.h
7ae7b919
RP
1229
1230inftarg.o: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
b8615fae 1231 target.h terminal.h $(command_h)
7ae7b919 1232
3730a0ed 1233irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
d360e1e0 1234irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
811f1bdc 1235 $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
d5fde1c9
FF
1236 language.h gdb_string.h
1237
7ae7b919
RP
1238isi-xdep.o: isi-xdep.c
1239
1240language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1241 $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
d5fde1c9 1242 target.h $(value_h) gdb_string.h
7ae7b919 1243
3730a0ed
FF
1244lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1245 target.h
d360e1e0 1246
7ae7b919
RP
1247m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1248 language.h m2-lang.h parser-defs.h $(symtab_h)
1249
1250m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1251 $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
d5fde1c9 1252 $(value_h) gdb_string.h
7ae7b919
RP
1253
1254m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
b607efe7 1255 valprint.h m2-lang.h
7ae7b919 1256
d360e1e0
PS
1257m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1258 $(wait_h) $(gdbcmd_h) $(gdbcore_h)
1259
b607efe7
FF
1260m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1261 $(gdbcore_h) gdb_string.h
a9c67591 1262
3fd4045f 1263m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
a9c67591 1264
7ae7b919 1265m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
a9c67591 1266
7ae7b919
RP
1267m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1268
d5fde1c9 1269mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
172559ec 1270
d5fde1c9 1271main.o: main.c top.h $(defs_h) gdb_string.h
7ae7b919 1272
b8615fae 1273maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
b52cac6b 1274 $(expression_h) objfiles.h symfile.h
b8615fae 1275
f4f0d174
JK
1276mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1277 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
d5fde1c9
FF
1278 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1279 gdb_string.h
f4f0d174 1280
d360e1e0
PS
1281mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1282
1283os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1340861c 1284 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
3a179be1 1285 objfiles.h stabsread.h symfile.h $(symtab_h) \
d5fde1c9 1286 target.h gdb_string.h
1340861c 1287
7ae7b919
RP
1288mem-break.o: mem-break.c $(defs_h)
1289
1290minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
d5fde1c9 1291 $(symtab_h) gdb_string.h
7ae7b919
RP
1292
1293mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
7ae7b919
RP
1294
1295mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
d5fde1c9 1296 $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
7ae7b919 1297
bf660885 1298mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
7ae7b919 1299 $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
d5fde1c9
FF
1300 objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1301 gdb_string.h
7ae7b919 1302
1c95d7ab
JK
1303mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1304
1265e2d8 1305monitor.o: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
d5fde1c9 1306 $(inferior_h) target.h serial.h terminal.h gdb_string.h
1265e2d8 1307
7ae7b919
RP
1308news-xdep.o: news-xdep.c
1309
1310Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
9b311b22 1311 nindy-share/env.h
7ae7b919
RP
1312 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1313
1314nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
9b311b22 1315 nindy-share/env.h
7ae7b919
RP
1316 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1317
db85f523 1318nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
d5fde1c9
FF
1319 gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1320 gdb_string.h
db85f523 1321
d360e1e0
PS
1322ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1323
9b311b22 1324ttyflush.o: nindy-share/ttyflush.c
7ae7b919
RP
1325 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1326
b607efe7 1327nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
7ae7b919 1328
a9c67591 1329ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
7ae7b919
RP
1330
1331objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
d5fde1c9 1332 $(symtab_h) gdb_string.h
7ae7b919 1333
cef4c2e7 1334osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
d5fde1c9 1335 objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
cef4c2e7 1336
0f221a69 1337somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
d5fde1c9 1338 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
7ae7b919 1339
d360e1e0
PS
1340somsolib.o: somsolib.c $(defs_h)
1341
5d394f70
SG
1342hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1343 $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1344 -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1345
98c0e047 1346hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
d5fde1c9 1347 gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
98c0e047 1348
7ae7b919 1349parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
d5fde1c9
FF
1350 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1351 gdb_string.h
7ae7b919 1352
e02a2ad9
SC
1353ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1354 $(inferior_h) target.h serial.h terminal.h
1355
7ae7b919 1356printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
d5fde1c9
FF
1357 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1358 symfile.h $(symtab_h) target.h gdb_string.h
7ae7b919
RP
1359
1360procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
d5fde1c9 1361 target.h gdb_string.h
7ae7b919 1362
7ae7b919 1363pyr-tdep.o: pyr-tdep.c $(defs_h)
a9c67591 1364
7ae7b919
RP
1365pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1366
d5fde1c9 1367gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
51b4195f 1368
7ae7b919 1369remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
d5fde1c9
FF
1370 $(inferior_h) target.h terminal.h gdb_string.h
1371
1372remote-arc.o: remote-arc.c gdb_string.h
7ae7b919 1373
9c0bc1da
DE
1374remote-array.o: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \
1375 gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h)
1376
dedcc91d 1377remote-rdp.o: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1378 $(inferior_h) gdb_string.h
dedcc91d 1379
a06f0c9f 1380remote-bug.o: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1381 $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
a06f0c9f 1382
d360e1e0 1383remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
d5fde1c9 1384 $(wait_h) serial.h gdb_string.h
d360e1e0 1385
7ae7b919 1386remote-eb.o: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
d5fde1c9
FF
1387 $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1388 gdb_string.h
7ae7b919
RP
1389
1390remote-es.o: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
d5fde1c9 1391 $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
7ae7b919
RP
1392
1393remote-hms.o: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1394 $(inferior_h) serial.h target.h terminal.h gdb_string.h
7ae7b919
RP
1395
1396remote-mips.o: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
1397 $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1398
1399remote-mm.o: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
d5fde1c9 1400 minimon.h target.h terminal.h gdb_string.h
7ae7b919 1401
5fa83062 1402remote-nindy.o: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
9b311b22 1403 $(defs_h) $(gdbcore_h) $(inferior_h) \
b70b042d
RP
1404 nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1405 symfile.h
7ae7b919 1406
d360e1e0
PS
1407remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
1408 $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
d5fde1c9 1409 objfiles.h gdb-stabs.h gdb_string.h
d360e1e0 1410
7ae7b919 1411remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
d5fde1c9 1412 $(inferior_h) target.h terminal.h gdb_string.h
7ae7b919
RP
1413
1414remote-st.o: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
d5fde1c9 1415 target.h gdb_string.h
7ae7b919
RP
1416
1417remote-udi.o: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
d5fde1c9 1418 $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
7ae7b919
RP
1419
1420remote-vx.o: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1421 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1422 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
d5fde1c9
FF
1423 vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1424 gdb_string.h
7ae7b919 1425
83d9bb14
KH
1426remote-vx29k.o: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
1427 $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1428 vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
d5fde1c9 1429 vx-share/xdr_rdb.h gdb_string.h
83d9bb14 1430
d9951af4
SG
1431remote-wiggler.o: remote-wiggler.c $(wait_h) complaints.h $(defs_h) \
1432 $(gdbcmd_h) $(gdbcore_h) $(inferior_h) target.h
1433
b70b042d 1434remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
d5fde1c9 1435 $(inferior_h) $(remote_utils_h) gdb_string.h
b70b042d 1436
7ae7b919 1437remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
d5fde1c9 1438 $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
7ae7b919 1439
5436fc65
C
1440remote-nrom.o: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1441 $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1442
1265e2d8
SG
1443rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1444 $(inferior_h) target.h serial.h terminal.h
1445
062cb0d3
FF
1446rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1447 xcoffsolib.h
7ae7b919 1448
7ae7b919
RP
1449rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1450 target.h xcoffsolib.h
1451
5579919f
FF
1452scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1453 scm-lang.h scm-tags.h
1454
1455scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
b607efe7 1456 scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
5579919f
FF
1457
1458scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h \
b607efe7 1459 scm-lang.h valprint.h $(gdbcore_h)
5579919f 1460
7ae7b919 1461ser-go32.o: ser-go32.c $(defs_h) serial.h
a9c67591 1462
a2b63bbd
JM
1463ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1464
b52cac6b 1465ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h
a9c67591 1466
7ae7b919 1467ser-unix.o: ser-unix.c $(defs_h) serial.h
a9c67591 1468
d5fde1c9 1469serial.o: serial.c $(defs_h) serial.h gdb_string.h
7ae7b919
RP
1470
1471sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1472 $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1473 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1474
1480482a
SG
1475sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1476 $(inferior_h) target.h serial.h terminal.h
1477
d5fde1c9
FF
1478mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
1479 $(inferior_h) target.h serial.h terminal.h
1480
7ae7b919 1481solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
d5fde1c9 1482 objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
7ae7b919
RP
1483
1484source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
d5fde1c9
FF
1485 $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
1486 gdb_string.h
7ae7b919 1487
3730a0ed
FF
1488sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1489 target.h
7ae7b919 1490
5fa83062 1491sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
b607efe7 1492 $(inferior_h) objfiles.h symfile.h target.h gdb_string.h
7ae7b919 1493
1782eb41
KH
1494sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1495
e02a2ad9
SC
1496dsrec.o: dsrec.c $(defs_h) srec.h
1497
7ae7b919
RP
1498stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1499 $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
d5fde1c9
FF
1500 $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1501 gdb_string.h
7ae7b919
RP
1502
1503stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
d5fde1c9 1504 language.h target.h gdb_string.h
7ae7b919
RP
1505
1506sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1507sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1508
1509symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1510 $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
d5fde1c9
FF
1511 language.h objfiles.h symfile.h $(symtab_h) target.h \
1512 gdb_string.h
7ae7b919
RP
1513
1514symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
56eec3c7 1515symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
b8774958 1516
7ae7b919
RP
1517symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1518 $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
d5fde1c9 1519 $(symtab_h) gdb_string.h
7ae7b919
RP
1520
1521symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1522 $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
d5fde1c9
FF
1523 gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1524 gdb_string.h
7ae7b919 1525
a9c67591 1526tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
7ae7b919
RP
1527 $(symtab_h)
1528
7a9eb4c4
PB
1529#start-sanitize-tic80
1530tic80-tdep.o: tic80-tdep.c $(defs_h)
1531#end-sanitize-tic80
1532
7ae7b919 1533target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
d5fde1c9 1534 objfiles.h symfile.h target.h gdb_string.h
7ae7b919 1535
fdfa3315 1536thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h)
25286543 1537
e02a2ad9
SC
1538top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1539 $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
d5fde1c9 1540 $(remote_utils_h) gdb_string.h
e02a2ad9 1541
7ae7b919
RP
1542typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1543 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
d5fde1c9 1544 $(value_h) gdb_string.h
7ae7b919
RP
1545
1546ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
98d82489
FF
1547ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1548umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
7ae7b919
RP
1549
1550utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
d5fde1c9
FF
1551 language.h signals.h target.h terminal.h $(readline_headers) \
1552 gdb_string.h
7ae7b919
RP
1553
1554valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
d5fde1c9
FF
1555 $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1556 gdb_string.h
b8774958 1557
d5fde1c9
FF
1558valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1559 gdb_string.h
b8774958 1560
7ae7b919
RP
1561valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1562 $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
b607efe7 1563 $(value_h) gdb_string.h valprint.h
7ae7b919
RP
1564
1565values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
d5fde1c9 1566 $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
b52cac6b 1567 gdb_string.h scm-lang.h
7ae7b919 1568
a9c67591 1569vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
7ae7b919 1570
b607efe7 1571w65-tdep.o : w65-tdep.c $(gdbcore_h)
d723ade7 1572
d5fde1c9
FF
1573win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1574 gdb_string.h
1480482a 1575
7ae7b919
RP
1576xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1577 vx-share/vxWorks.h vx-share/xdr_ld.h
1578 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1579
1580xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1581 vx-share/vxWorks.h vx-share/xdr_ptrace.h
1582 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1583
1584xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1585 vx-share/vxWorks.h vx-share/xdr_rdb.h
1586 $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1587
7ae7b919
RP
1588xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1589 $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1590 $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1591 complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
d5fde1c9 1592 $(symtab_h) partial-stab.h gdb_string.h
7ae7b919
RP
1593
1594xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1595
1596z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
b607efe7 1597 $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h)
7ae7b919
RP
1598
1599c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
b8615fae
JK
1600 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1601 $(bfd_h) objfiles.h symfile.h
7ae7b919 1602
7a9eb4c4
PB
1603java-exp.tab.o: java-exp.tab.c java-lang.h $(defs_h) $(expression_h) \
1604 $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1605 $(bfd_h) objfiles.h symfile.h
1606
d360e1e0
PS
1607f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1608 language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1609
7ae7b919 1610m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
b8615fae
JK
1611 language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1612 $(bfd_h) objfiles.h symfile.h
7ae7b919
RP
1613
1614### end of the gdb Makefile.in.
This page took 0.352099 seconds and 4 git commands to generate.