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