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