D language support.
[platform/upstream/binutils.git] / gdb / Makefile.in
1 # Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
2 # 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
3 # Free Software Foundation, Inc.
4
5 # This file is part of GDB.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 prefix = @prefix@
21 exec_prefix = @exec_prefix@
22
23 host_alias = @host_alias@
24 target_alias = @target_alias@
25 program_transform_name = @program_transform_name@
26 bindir = @bindir@
27 libdir = @libdir@
28 tooldir = $(libdir)/$(target_alias)
29
30 datadir = @datadir@
31 localedir = @localedir@
32 mandir = @mandir@
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = @infodir@
43 datarootdir = @datarootdir@
44 docdir = @docdir@
45 htmldir = @htmldir@
46 pdfdir = @pdfdir@
47 includedir = @includedir@
48
49 # This can be referenced by `LIBINTL' as computed by
50 # ZW_GNU_GETTEXT_SISTER_DIR.
51 top_builddir = .
52
53 SHELL = @SHELL@
54 EXEEXT = @EXEEXT@
55
56 AWK = @AWK@
57 LN_S = @LN_S@
58
59 INSTALL = @INSTALL@
60 INSTALL_PROGRAM = @INSTALL_PROGRAM@
61 INSTALL_DATA = @INSTALL_DATA@
62
63 DESTDIR =
64
65 AR = @AR@
66 AR_FLAGS = qv
67 RANLIB = @RANLIB@
68 DLLTOOL = @DLLTOOL@
69 WINDRES = @WINDRES@
70 MIG = @MIG@
71
72 XGETTEXT = @XGETTEXT@
73 GMSGFMT = @GMSGFMT@
74 MSGMERGE = msgmerge
75
76 PACKAGE = @PACKAGE@
77 CATALOGS = @CATALOGS@
78
79 # If you are compiling with GCC, make sure that either 1) You have the
80 # fixed include files where GCC can reach them, or 2) You use the
81 # -traditional flag.  Otherwise the ioctl calls in inflow.c
82 # will be incorrectly compiled.  The "fixincludes" script in the gcc
83 # distribution will fix your include files up.
84 CC=@CC@
85
86 # Dependency tracking information.
87 DEPMODE = @CCDEPMODE@
88 DEPDIR = @DEPDIR@
89 depcomp = $(SHELL) $(srcdir)/../depcomp
90
91 # Note that these are overridden by GNU make-specific code below if
92 # GNU make is used.  The overrides implement dependency tracking.
93 COMPILE.pre = $(CC)
94 COMPILE.post = -c -o $@
95 COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
96 POSTCOMPILE = @true
97
98 # Directory containing source files.
99 srcdir = @srcdir@
100 VPATH = @srcdir@
101
102 YACC=@YACC@
103
104 # This is used to rebuild ada-lex.c from ada-lex.l.  If the program is
105 # not defined, but ada-lex.c is present, compilation will continue,
106 # possibly with a warning.
107 FLEX = flex
108
109 YLWRAP = $(srcdir)/../ylwrap
110
111 # where to find makeinfo, preferably one designed for texinfo-2
112 MAKEINFO=makeinfo
113
114 MAKEHTML = $(MAKEINFO) --html
115 MAKEHTMLFLAGS =
116
117 # Set this up with gcc if you have gnu ld and the loader will print out
118 # line numbers for undefined references.
119 #CC_LD=gcc -static
120 CC_LD=$(CC)
121
122 # Where is our "include" directory?  Typically $(srcdir)/../include.
123 # This is essentially the header file directory for the library
124 # routines in libiberty.
125 INCLUDE_DIR =  $(srcdir)/../include
126 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
127
128 # Where is the "-liberty" library?  Typically in ../libiberty.
129 LIBIBERTY = ../libiberty/libiberty.a
130
131 # Where is the BFD library?  Typically in ../bfd.
132 BFD_DIR = ../bfd
133 BFD = $(BFD_DIR)/libbfd.a
134 BFD_SRC = $(srcdir)/$(BFD_DIR)
135 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
136
137 # Where is the decnumber library?  Typically in ../libdecnumber.
138 LIBDECNUMBER_DIR = ../libdecnumber
139 LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
140 LIBDECNUMBER_SRC = $(srcdir)/$(LIBDECNUMBER_DIR)
141 LIBDECNUMBER_CFLAGS = -I$(LIBDECNUMBER_DIR) -I$(LIBDECNUMBER_SRC)
142
143 # Where is the READLINE library?  Typically in ../readline.
144 READLINE_DIR = ../readline
145 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
146 READLINE = @READLINE@
147 READLINE_DEPS = @READLINE_DEPS@
148 READLINE_CFLAGS = @READLINE_CFLAGS@
149
150 # Where is expat?  This will be empty if expat was not available.
151 LIBEXPAT = @LIBEXPAT@
152
153 WARN_CFLAGS = @WARN_CFLAGS@
154 WERROR_CFLAGS = @WERROR_CFLAGS@
155 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
156 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
157
158 GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " | sed "s/ -Wformat-nonliteral / /g"`
159
160 # Where is the INTL library?  Typically in ../intl.
161 INTL = @LIBINTL@
162 INTL_DEPS = @LIBINTL_DEP@
163 INTL_CFLAGS = @INCINTL@
164
165 # Did the user give us a --with-sysroot option?
166 TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
167 TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
168
169 # Did the user give us a --with-gdb-datadir option?
170 GDB_DATADIR = @GDB_DATADIR@
171
172 # Helper code from gnulib.
173 LIBGNU = gnulib/libgnu.a
174 INCGNU = -I$(srcdir)/gnulib -Ignulib
175
176 # Generated headers in the gnulib directory.  These must be listed
177 # so that they are generated before other files are compiled.
178 GNULIB_H = gnulib/string.h @GNULIB_STDINT_H@
179
180 #
181 # CLI sub directory definitons
182 #
183 SUBDIR_CLI_OBS = \
184         cli-dump.o \
185         cli-decode.o cli-script.o cli-cmds.o cli-setshow.o \
186         cli-logging.o \
187         cli-interp.o
188 SUBDIR_CLI_SRCS = \
189         cli/cli-dump.c \
190         cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
191         cli/cli-logging.c \
192         cli/cli-interp.c
193 SUBDIR_CLI_DEPS =
194 SUBDIR_CLI_LDFLAGS=
195 SUBDIR_CLI_CFLAGS=
196
197 #
198 # MI sub directory definitons
199 #
200 SUBDIR_MI_OBS = \
201         mi-out.o mi-console.o \
202         mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
203         mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o \
204         mi-interp.o \
205         mi-main.o mi-parse.o mi-getopt.o
206 SUBDIR_MI_SRCS = \
207         mi/mi-out.c mi/mi-console.c \
208         mi/mi-cmds.c mi/mi-cmd-env.c \
209         mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
210         mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \
211         mi/mi-cmd-target.c mi/mi-interp.c \
212         mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
213 SUBDIR_MI_DEPS =
214 SUBDIR_MI_LDFLAGS=
215 SUBDIR_MI_CFLAGS= \
216         -DMI_OUT=1
217
218 #
219 # TUI sub directory definitions
220 #
221
222 # Name of the TUI program
223 TUI=gdbtui
224
225 SUBDIR_TUI_OBS = \
226         tui-command.o \
227         tui-data.o \
228         tui-disasm.o \
229         tui-file.o tui.o \
230         tui-hooks.o \
231         tui-interp.o \
232         tui-io.o \
233         tui-layout.o \
234         tui-out.o \
235         tui-regs.o \
236         tui-source.o \
237         tui-stack.o \
238         tui-win.o \
239         tui-windata.o \
240         tui-wingeneral.o \
241         tui-winsource.o
242 SUBDIR_TUI_SRCS = \
243         tui/tui-command.c \
244         tui/tui-data.c \
245         tui/tui-disasm.c \
246         tui/tui-file.c \
247         tui/tui-hooks.c \
248         tui/tui-interp.c \
249         tui/tui-io.c \
250         tui/tui-layout.c \
251         tui/tui-out.c \
252         tui/tui-regs.c \
253         tui/tui-source.c \
254         tui/tui-stack.c \
255         tui/tui-win.c \
256         tui/tui-windata.c \
257         tui/tui-wingeneral.c \
258         tui/tui-winsource.c \
259         tui/tui.c
260 SUBDIR_TUI_DEPS =
261 SUBDIR_TUI_LDFLAGS=
262 SUBDIR_TUI_CFLAGS= \
263         -DTUI=1
264
265 #
266 # python sub directory definitons
267 #
268 SUBDIR_PYTHON_OBS = \
269         python.o \
270         py-auto-load.o \
271         py-block.o \
272         py-breakpoint.o \
273         py-cmd.o \
274         py-frame.o \
275         py-function.o \
276         py-lazy-string.o \
277         py-objfile.o \
278         py-prettyprint.o \
279         py-progspace.o \
280         py-symbol.o \
281         py-symtab.o \
282         py-type.o \
283         py-utils.o \
284         py-value.o
285 SUBDIR_PYTHON_SRCS = \
286         python/python.c \
287         python/py-auto-load.c \
288         python/py-block.c \
289         python/py-breakpoint.c \
290         python/py-cmd.c \
291         python/py-frame.c \
292         python/py-function.c \
293         python/py-lazy-string.c \
294         python/py-objfile.c \
295         python/py-prettyprint.c \
296         python/py-progspace.c \
297         python/py-symbol.c \
298         python/py-symtab.c \
299         python/py-type.c \
300         python/py-utils.c \
301         python/py-value.c
302 SUBDIR_PYTHON_DEPS =
303 SUBDIR_PYTHON_LDFLAGS=
304 SUBDIR_PYTHON_CFLAGS=
305
306
307 # Opcodes currently live in one of two places.  Either they are in the
308 # opcode library, typically ../opcodes, or they are in a header file
309 # in INCLUDE_DIR.
310 # Where is the "-lopcodes" library, with (some of) the opcode tables and
311 # disassemblers?
312 OPCODES_DIR = ../opcodes
313 OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
314 OPCODES = $(OPCODES_DIR)/libopcodes.a
315 # Where are the other opcode tables which only have header file
316 # versions?
317 OP_INCLUDE = $(INCLUDE_DIR)/opcode
318 # Some source files like to use #include "opcodes/file.h"
319 OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/..
320
321 # The simulator is usually nonexistent; targets that include one
322 # should set this to list all the .o or .a files to be linked in.
323 SIM = @SIM@
324
325 WIN32LIBS = @WIN32LIBS@
326
327 # Tcl et al cflags and libraries
328 TCL = @TCL_LIBRARY@
329 TCL_CFLAGS = @TCL_INCLUDE@
330 GDBTKLIBS = @GDBTKLIBS@
331 # Extra flags that the GDBTK files need:
332 GDBTK_CFLAGS = @GDBTK_CFLAGS@
333
334 TK = @TK_LIBRARY@
335 TK_CFLAGS = @TK_INCLUDE@
336
337 X11_CFLAGS = @TK_XINCLUDES@
338 X11_LDFLAGS =
339 X11_LIBS =
340
341 WIN32LDAPP = @WIN32LDAPP@
342
343 LIBGUI = @LIBGUI@
344 GUI_CFLAGS_X = @GUI_CFLAGS_X@
345 IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
346
347 ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)
348
349 # The version of gdbtk we're building. This should be kept
350 # in sync with GDBTK_VERSION and friends in gdbtk.h.
351 GDBTK_VERSION = 1.0
352 GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
353
354 # Gdbtk requires an absolute path to the source directory or
355 # the testsuite won't run properly.
356 GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
357
358 SUBDIR_GDBTK_OBS = \
359         gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-interp.o \
360         gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o
361 SUBDIR_GDBTK_SRCS = \
362         gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \
363         gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c \
364         gdbtk/generic/gdbtk-interp.c \
365         gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \
366         gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c \
367         gdbtk/generic/gdbtk-main.c
368 SUBDIR_GDBTK_DEPS = $(LIBGUI) $(TCL_DEPS) $(TK_DEPS)
369 SUBDIR_GDBTK_LDFLAGS=
370 SUBDIR_GDBTK_CFLAGS= -DGDBTK
371
372 CONFIG_OBS= @CONFIG_OBS@
373 CONFIG_SRCS= @CONFIG_SRCS@
374 CONFIG_DEPS= @CONFIG_DEPS@
375 CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
376 ENABLE_CFLAGS= @ENABLE_CFLAGS@
377 CONFIG_ALL= @CONFIG_ALL@
378 CONFIG_CLEAN= @CONFIG_CLEAN@
379 CONFIG_INSTALL = @CONFIG_INSTALL@
380 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
381
382 # -I. for config files.
383 # -I$(srcdir) for gdb internal headers.
384 # -I$(srcdir)/config for more generic config files.
385
386 # It is also possible that you will need to add -I/usr/include/sys if
387 # your system doesn't have fcntl.h in /usr/include (which is where it
388 # should be according to Posix).
389 DEFS = @DEFS@
390 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \
391         -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
392
393 # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
394 GLOBAL_CFLAGS = $(MH_CFLAGS)
395
396 PROFILE_CFLAGS = @PROFILE_CFLAGS@
397
398 # CFLAGS is specifically reserved for setting from the command line
399 # when running make.  I.E.  "make CFLAGS=-Wmissing-prototypes".
400 CFLAGS = @CFLAGS@
401
402 # Set by configure, for e.g. expat.
403 INTERNAL_CPPFLAGS = @CPPFLAGS@
404
405 # Need to pass this to testsuite for "make check".  Probably should be
406 # consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
407 # so "make check" has the same result no matter where it is run.
408 CXXFLAGS = -g -O
409
410 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
411 INTERNAL_CFLAGS_BASE = \
412         $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
413         $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
414         $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
415         $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
416 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
417 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
418
419 # LDFLAGS is specifically reserved for setting from the command line
420 # when running make.
421 LDFLAGS = @LDFLAGS@
422
423 # Profiling options need to go here to work.
424 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
425 # and have it work; that's why CFLAGS is here.
426 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
427 INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS)
428
429 # If your system is missing alloca(), or, more likely, it's there but
430 # it doesn't work, then refer to libiberty.
431
432 # Libraries and corresponding dependencies for compiling gdb.
433 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
434 # LIBIBERTY appears twice on purpose.
435 # If you have the Cygnus libraries installed,
436 # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
437 INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty -ldecnumber \
438         $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
439         -lintl -liberty $(LIBGNU)
440 CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
441         $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
442         $(LIBEXPAT) \
443         $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU)
444 CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
445         $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
446
447 ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
448 ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
449
450 DIST=gdb
451
452 LINT=/usr/5bin/lint
453 LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
454         $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
455         $(INTL_CFLAGS)
456
457 RUNTEST = runtest
458 RUNTESTFLAGS=
459
460 # XML files to build in to GDB.
461 XMLFILES = $(srcdir)/features/gdb-target.dtd $(srcdir)/features/xinclude.dtd \
462         $(srcdir)/features/library-list.dtd $(srcdir)/features/osdata.dtd \
463         $(srcdir)/features/threads.dtd
464
465 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
466 # interface to the serial port.  Hopefully if get ported to OS/2, VMS,
467 # etc., then there will be (as part of the C library or perhaps as
468 # part of libiberty) a POSIX interface.  But at least for now the
469 # host-dependent makefile fragment might need to use something else
470 # besides ser-unix.o
471 SER_HARDWIRE = @SER_HARDWIRE@
472
473 # The `remote' debugging target is supported for most architectures,
474 # but not all (e.g. 960)
475 REMOTE_OBS = remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o
476
477 # This is remote-sim.o if a simulator is to be linked in.
478 SIM_OBS = @SIM_OBS@
479
480 # Target-dependent object files.
481 TARGET_OBS = @TARGET_OBS@
482
483 # All target-dependent objects files that require 64-bit CORE_ADDR
484 # (used with --enable-targets=all --enable-64-bit-bfd).
485 ALL_64_TARGET_OBS = \
486         alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \
487         alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \
488         amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \
489         amd64-linux-tdep.o amd64nbsd-tdep.o \
490         amd64obsd-tdep.o amd64-sol2-tdep.o amd64-tdep.o amd64-windows-tdep.o \
491         ia64-linux-tdep.o ia64-tdep.o \
492         mips64obsd-tdep.o \
493         sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \
494         sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o
495
496 # All other target-dependent objects files (used with --enable-targets=all).
497 ALL_TARGET_OBS = \
498         armbsd-tdep.o arm-linux-tdep.o arm-symbian-tdep.o \
499         armnbsd-tdep.o armobsd-tdep.o \
500         arm-tdep.o arm-wince-tdep.o \
501         avr-tdep.o \
502         cris-tdep.o \
503         dicos-tdep.o \
504         frv-linux-tdep.o frv-tdep.o \
505         h8300-tdep.o \
506         hppabsd-tdep.o hppanbsd-tdep.o hppaobsd-tdep.o \
507         hppa-hpux-tdep.o hppa-linux-tdep.o hppa-tdep.o \
508         i386bsd-tdep.o i386-cygwin-tdep.o i386fbsd-tdep.o i386gnu-tdep.o \
509         i386-linux-tdep.o i386nbsd-tdep.o i386-nto-tdep.o i386obsd-tdep.o \
510         i386-sol2-tdep.o i386-tdep.o i387-tdep.o \
511         i386-dicos-tdep.o i386-darwin-tdep.o \
512         iq2000-tdep.o \
513         linux-tdep.o \
514         lm32-tdep.o \
515         m32c-tdep.o \
516         m32r-linux-tdep.o m32r-tdep.o \
517         m68hc11-tdep.o \
518         m68kbsd-tdep.o m68klinux-tdep.o m68k-tdep.o \
519         m88k-tdep.o \
520         mep-tdep.o \
521         microblaze-tdep.o microblaze-linux-tdep.o \
522         mips-irix-tdep.o mips-linux-tdep.o \
523         mipsnbsd-tdep.o mips-tdep.o \
524         mn10300-linux-tdep.o mn10300-tdep.o \
525         moxie-tdep.o \
526         mt-tdep.o \
527         nto-tdep.o \
528         ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \
529         rs6000-aix-tdep.o rs6000-tdep.o \
530         s390-tdep.o \
531         score-tdep.o \
532         sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \
533         sparc-linux-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
534         sparc-sol2-tdep.o sparc-tdep.o \
535         spu-tdep.o spu-multiarch.o solib-spu.o \
536         v850-tdep.o \
537         vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \
538         xstormy16-tdep.o \
539         xtensa-config.o xtensa-tdep.o xtensa-linux-tdep.o \
540         glibc-tdep.o \
541         bsd-uthread.o \
542         nbsd-tdep.o obsd-tdep.o \
543         sol2-tdep.o \
544         solib-frv.o solib-irix.o solib-svr4.o solib-target.o \
545         solib-som.o solib-pa64.o solib-darwin.o \
546         dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \
547         remote-m32r-sdi.o \
548         xcoffread.o \
549         symfile-mem.o \
550         corelow.o \
551         windows-tdep.o \
552         linux-record.o
553
554 # Host-dependent makefile fragment comes in here.
555 @host_makefile_frag@
556 # End of host-dependent makefile fragment
557
558 FLAGS_TO_PASS = \
559         "prefix=$(prefix)" \
560         "exec_prefix=$(exec_prefix)" \
561         "infodir=$(infodir)" \
562         "datarootdir=$(datarootdir)" \
563         "docdir=$(docdir)" \
564         "htmldir=$(htmldir)" \
565         "pdfdir=$(pdfdir)" \
566         "libdir=$(libdir)" \
567         "mandir=$(mandir)" \
568         "datadir=$(datadir)" \
569         "includedir=$(includedir)" \
570         "against=$(against)" \
571         "DESTDIR=$(DESTDIR)" \
572         "AR=$(AR)" \
573         "AR_FLAGS=$(AR_FLAGS)" \
574         "CC=$(CC)" \
575         "CFLAGS=$(CFLAGS)" \
576         "CXX=$(CXX)" \
577         "CXXFLAGS=$(CXXFLAGS)" \
578         "DLLTOOL=$(DLLTOOL)" \
579         "LDFLAGS=$(LDFLAGS)" \
580         "RANLIB=$(RANLIB)" \
581         "MAKEINFO=$(MAKEINFO)" \
582         "MAKEHTML=$(MAKEHTML)" \
583         "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
584         "INSTALL=$(INSTALL)" \
585         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
586         "INSTALL_DATA=$(INSTALL_DATA)" \
587         "RUNTEST=$(RUNTEST)" \
588         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
589
590 # Flags that we pass when building the testsuite.
591
592 # empty for native, $(target_alias)/ for cross
593 target_subdir = @target_subdir@
594
595 CC_FOR_TARGET = ` \
596   if [ -f $${rootme}/../gcc/xgcc ] ; then \
597     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
598       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/; \
599     else \
600       echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
601     fi; \
602   else \
603     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
604       echo $(CC); \
605     else \
606       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
607     fi; \
608   fi`
609
610 CXX = gcc
611 CXX_FOR_TARGET = ` \
612   if [ -f $${rootme}/../gcc/xgcc ] ; then \
613     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
614       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/; \
615     else \
616       echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
617     fi; \
618   else \
619     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
620       echo $(CXX); \
621     else \
622       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
623     fi; \
624   fi`
625
626 # The use of $$(x_FOR_TARGET) reduces the command line length by not
627 # duplicating the lengthy definition.
628 TARGET_FLAGS_TO_PASS = \
629         "prefix=$(prefix)" \
630         "exec_prefix=$(exec_prefix)" \
631         "against=$(against)" \
632         'CC=$$(CC_FOR_TARGET)' \
633         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
634         "CFLAGS=$(CFLAGS)" \
635         'CXX=$$(CXX_FOR_TARGET)' \
636         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
637         "CXXFLAGS=$(CXXFLAGS)" \
638         "INSTALL=$(INSTALL)" \
639         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
640         "INSTALL_DATA=$(INSTALL_DATA)" \
641         "MAKEINFO=$(MAKEINFO)" \
642         "MAKEHTML=$(MAKEHTML)" \
643         "RUNTEST=$(RUNTEST)" \
644         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
645         "FORCE_PARALLEL=$(FORCE_PARALLEL)"
646
647 # All source files that go into linking GDB.
648 # Links made at configuration time should not be specified here, since
649 # SFILES is used in building the distribution archive.
650
651 SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
652         addrmap.c \
653         auxv.c ax-general.c ax-gdb.c \
654         bcache.c \
655         bfd-target.c \
656         block.c blockframe.c breakpoint.c buildsym.c \
657         c-exp.y c-lang.c c-typeprint.c c-valprint.c \
658         charset.c cli-out.c coffread.c coff-pe-read.c \
659         complaints.c completer.c corefile.c \
660         cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
661         d-lang.c d-valprint.c \
662         cp-name-parser.y \
663         dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
664         dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
665         elfread.c environ.c eval.c event-loop.c event-top.c \
666         exceptions.c expprint.c \
667         f-exp.y f-lang.c f-typeprint.c f-valprint.c filesystem.c \
668         findcmd.c findvar.c frame.c frame-base.c frame-unwind.c \
669         gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
670         inf-loop.c \
671         infcall.c \
672         infcmd.c inflow.c infrun.c \
673         inline-frame.c \
674         interps.c \
675         jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
676         language.c linespec.c \
677         m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
678         macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
679         mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c memory-map.c \
680         mi/mi-common.c \
681         objc-exp.y objc-lang.c \
682         objfiles.c osabi.c observer.c osdata.c \
683         p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
684         progspace.c \
685         prologue-value.c psymtab.c \
686         regcache.c reggroups.c remote.c remote-fileio.c reverse.c \
687         scm-exp.c scm-lang.c scm-valprint.c \
688         sentinel-frame.c \
689         serial.c ser-base.c ser-unix.c \
690         solib.c solib-null.c source.c \
691         stabsread.c stack.c std-regs.c symfile.c symfile-mem.c symmisc.c \
692         symtab.c \
693         target.c target-descriptions.c target-memory.c \
694         thread.c top.c tracepoint.c \
695         trad-frame.c \
696         tramp-frame.c \
697         typeprint.c \
698         ui-out.c utils.c ui-file.h ui-file.c \
699         user-regs.c \
700         valarith.c valops.c valprint.c value.c varobj.c vec.c \
701         wrapper.c \
702         xml-tdesc.c xml-support.c \
703         inferior.c gdb_usleep.c \
704         record.c gcore.c \
705         jit.c \
706         xml-syscall.c \
707
708 LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
709
710 # Header files that need to have srcdir added.  Note that in the cases
711 # where we use a macro like $(gdbcmd_h), things are carefully arranged
712 # so that each .h file is listed exactly once (M-x tags-search works
713 # wrong if TAGS has files twice).  Because this is tricky to get
714 # right, it is probably easiest just to list .h files here directly.
715
716 HFILES_NO_SRCDIR = osf-share/cma_debug_client.h \
717 osf-share/HP800/cma_thread_io.h osf-share/cma_sequence.h \
718 osf-share/cma_mutex.h osf-share/cma_semaphore_defs.h \
719 osf-share/cma_list.h osf-share/cma_handle.h osf-share/cma_stack.h \
720 osf-share/cma_util.h osf-share/RIOS/cma_thread_io.h \
721 osf-share/cma_errors.h osf-share/cma_tcb_defs.h osf-share/cma_attr.h \
722 osf-share/cma_stack_int.h osf-share/cma_init.h \
723 osf-share/cma_deb_core.h osf-share/AT386/cma_thread_io.h \
724 osf-share/cma_sched.h proc-utils.h arm-tdep.h ax-gdb.h ppcnbsd-tdep.h \
725 cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \
726 exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h \
727 i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
728 ia64-tdep.h ada-lang.h varobj.h frv-tdep.h nto-tdep.h serial.h \
729 c-lang.h d-lang.h frame.h event-loop.h block.h cli/cli-setshow.h        \
730 cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h \
731 cli/cli-script.h macrotab.h symtab.h version.h gnulib/wchar.in.h \
732 gnulib/string.in.h gnulib/str-two-way.h gnulib/extra/link-warning.h \
733 gnulib/stdint.in.h remote.h gdb.h sparc-nat.h gdbserver/win32-low.h \
734 gdbserver/i387-fp.h gdbserver/server.h gdbserver/terminal.h \
735 gdbserver/mem-break.h gdbserver/wincecompat.h gdbserver/target.h \
736 gdbserver/linux-low.h gdbserver/gdb_proc_service.h \
737 gdbserver/regcache.h gdbthread.h dwarf2-frame.h nbsd-nat.h dcache.h \
738 amd64-nat.h s390-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
739 gdbarch.h bsd-uthread.h gdb_thread_db.h gdb_stat.h memory-map.h \
740 mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \
741 ser-unix.h scm-lang.h inf-ptrace.h terminal.h ui-out.h frame-base.h \
742 f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \
743 objfiles.h vec.h disasm.h mips-tdep.h ser-base.h \
744 gdb_curses.h bfd-target.h memattr.h inferior.h ax.h dummy-frame.h \
745 inflow.h fbsd-nat.h libunwind-frame.h completer.h inf-ttrace.h \
746 solib-target.h gdb_vfork.h alpha-tdep.h dwarf2expr.h \
747 m2-lang.h stack.h charset.h addrmap.h command.h solist.h source.h \
748 target.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \
749 tui/tui-file.h tui/tui-command.h tui/tui-disasm.h tui/tui-wingeneral.h \
750 tui/tui-windata.h tui/tui-data.h tui/tui-win.h tui/tui-stack.h \
751 tui/tui-winsource.h tui/tui-regs.h tui/tui-io.h tui/tui-layout.h \
752 tui/tui-source.h xcoffsolib.h sol2-tdep.h gregset.h sh-tdep.h \
753 expression.h score-tdep.h gdb_select.h ser-tcp.h buildsym.h valprint.h \
754 call-cmds.h typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \
755 mi/mi-out.h mi/mi-main.h mi/mi-common.h mi/mi-cmds.h linux-nat.h \
756 complaints.h gdb_proc_service.h gdb_regex.h xtensa-tdep.h inf-loop.h \
757 gdb_wait.h gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \
758 interps.h auxv.h gdbcmd.h tramp-frame.h mipsnbsd-tdep.h \
759 amd64-linux-tdep.h linespec.h i387-tdep.h mn10300-tdep.h \
760 sparc64-tdep.h monitor.h ppcobsd-tdep.h srec.h solib-pa64.h \
761 coff-pe-read.h parser-defs.h gdb_ptrace.h mips-linux-tdep.h \
762 m68k-tdep.h spu-tdep.h jv-lang.h environ.h solib-irix.h amd64-tdep.h \
763 doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h rs6000-tdep.h \
764 gdb_locale.h gdb_dirent.h arch-utils.h trad-frame.h gnu-nat.h \
765 language.h nbsd-tdep.h wrapper.h solib-svr4.h \
766 macroexp.h ui-file.h regcache.h gdb_string.h tracepoint.h i386-tdep.h \
767 inf-child.h p-lang.h event-top.h gdbtypes.h scm-tags.h user-regs.h \
768 regformats/regdef.h config/alpha/nm-osf3.h  config/i386/nm-i386gnu.h \
769 config/i386/nm-fbsd.h config/i386/nm-linux.h \
770 config/nm-nto.h config/sparc/nm-sol2.h config/nm-linux.h \
771 config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \
772 annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h \
773 remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \
774 sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \
775 gdb_usleep.h jit.h xml-syscall.h ada-operator.inc microblaze-tdep.h \
776 psymtab.h psympriv.h
777
778 # Header files that already have srcdir in them, or which are in objdir.
779
780 HFILES_WITH_SRCDIR = ../bfd/bfd.h
781
782
783 # GDB "info" files, which should be included in their entirety
784 INFOFILES = gdb.info*
785
786 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
787
788 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
789 # default their values the way we do for SER_HARDWIRE; in the future
790 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
791 # variables analogous to SER_HARDWIRE which get defaulted in this
792 # Makefile.in
793
794 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) \
795            $(REMOTE_OBS) $(SIM_OBS)
796
797 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
798 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
799 # and it's more useful to see it in the .y file.
800 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
801         $(CONFIG_SRCS)
802 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
803
804 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
805         version.o \
806         annotate.o \
807         addrmap.o \
808         auxv.o \
809         bfd-target.o \
810         blockframe.o breakpoint.o findvar.o regcache.o \
811         charset.o disasm.o dummy-frame.o dfp.o \
812         source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
813         block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \
814         infcall.o \
815         infcmd.o infrun.o \
816         expprint.o environ.o stack.o thread.o \
817         exceptions.o \
818         filesystem.o \
819         inf-child.o \
820         interps.o \
821         main.o \
822         macrotab.o macrocmd.o macroexp.o macroscope.o \
823         mi-common.o \
824         event-loop.o event-top.o inf-loop.o completer.o \
825         gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
826         memattr.o mem-break.o target.o parse.o language.o buildsym.o \
827         findcmd.o \
828         std-regs.o \
829         signals.o \
830         exec.o reverse.o \
831         bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
832         dbxread.o coffread.o coff-pe-read.o \
833         dwarf2read.o mipsread.o stabsread.o corefile.o \
834         dwarf2expr.o dwarf2loc.o dwarf2-frame.o \
835         ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o \
836         ada-tasks.o \
837         ui-out.o cli-out.o \
838         varobj.o vec.o wrapper.o \
839         jv-lang.o jv-valprint.o jv-typeprint.o \
840         m2-lang.o p-lang.o p-typeprint.o p-valprint.o \
841         scm-exp.o scm-lang.o scm-valprint.o \
842         sentinel-frame.o \
843         complaints.o typeprint.o \
844         ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
845         ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o \
846         m2-valprint.o \
847         serial.o mdebugread.o top.o utils.o \
848         ui-file.o \
849         user-regs.o \
850         frame.o frame-unwind.o doublest.o \
851         frame-base.o \
852         inline-frame.o \
853         gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o \
854         cp-namespace.o \
855         reggroups.o regset.o \
856         trad-frame.o \
857         tramp-frame.o \
858         solib.o solib-null.o \
859         prologue-value.o memory-map.o xml-support.o xml-syscall.o \
860         target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \
861         inferior.o osdata.o gdb_usleep.o record.o gcore.o \
862         jit.o progspace.o
863
864 # Definitions for the syscall's XML files and dir
865 XML_SYSCALLS_DIR = syscalls/
866 XML_SYSCALLS_FILES = gdb-syscalls.dtd \
867                      ppc-linux.xml ppc64-linux.xml \
868                      i386-linux.xml amd64-linux.xml \
869                      sparc-linux.xml sparc64-linux.xml
870
871 TSOBS = inflow.o
872
873 SUBDIRS = @subdirs@
874 CLEANDIRS = $(SUBDIRS) gnulib
875
876 # For now, shortcut the "configure GDB for fewer languages" stuff.
877 YYFILES = c-exp.c \
878         cp-name-parser.c \
879         objc-exp.c \
880         ada-lex.c \
881         ada-exp.c \
882         jv-exp.c \
883         f-exp.c m2-exp.c p-exp.c
884 YYOBJ = c-exp.o \
885         cp-name-parser.o \
886         objc-exp.o \
887         ada-exp.o \
888         jv-exp.o \
889         f-exp.o m2-exp.o p-exp.o
890
891 # Things which need to be built when making a distribution.
892
893 DISTSTUFF = $(YYFILES)
894
895
896 # All generated files which can be included by another file.
897 generated_files = config.h observer.h observer.inc ada-lex.c \
898         $(GNULIB_H) $(NAT_GENERATED_FILES)
899
900 .c.o:
901         $(COMPILE) $<
902         $(POSTCOMPILE)
903
904 all: gdb$(EXEEXT) $(CONFIG_ALL) xml-syscall-copy
905         @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
906 .PHONY: all-tui
907 all-tui: $(TUI)$(EXEEXT)
908
909 # This is needed for running GDB from the build directory
910 .PHONY: xml-syscall-copy
911 xml-syscall-copy:
912         if [ "`cd $(srcdir) && pwd`" != "`pwd`" ] ; then \
913           mkdir -p ./$(XML_SYSCALLS_DIR) ; \
914           list='$(XML_SYSCALLS_FILES)' ; \
915           for file in $$list ; do \
916             f=$(srcdir)/$(XML_SYSCALLS_DIR)/$$file ; \
917             if test -f $$f ; then \
918               $(INSTALL_DATA) $$f \
919                   ./$(XML_SYSCALLS_DIR) ; \
920             fi ; \
921           done ; \
922         fi ;
923
924 # This target is responsible for properly installing the syscalls'
925 # XML files in the system.
926 .PHONY: xml-syscall-install
927 xml-syscall-install:
928         $(SHELL) $(srcdir)/../mkinstalldirs \
929                 $(DESTDIR)$(GDB_DATADIR)/$(XML_SYSCALLS_DIR) ; \
930         list='$(XML_SYSCALLS_FILES)' ; \
931         for file in $$list ; do \
932           f=$(srcdir)/$(XML_SYSCALLS_DIR)/$$file ; \
933           if test -f $$f ; then \
934             $(INSTALL_DATA) $$f \
935                 $(DESTDIR)$(GDB_DATADIR)/$(XML_SYSCALLS_DIR) ; \
936           fi ; \
937         done ;
938
939 installcheck:
940
941 # The check target can not use subdir_do, because subdir_do does not
942 # use TARGET_FLAGS_TO_PASS.
943 check: force
944         @if [ -f testsuite/Makefile ]; then \
945           rootme=`pwd`; export rootme; \
946           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
947           cd testsuite; \
948           $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
949         else true; fi
950
951 # The idea is to parallelize testing of multilibs, for example:
952 #   make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
953 # will run 3 concurrent sessions of check, eventually testing all 10
954 # combinations.  GNU make is required for the % pattern to work, as is
955 # a shell that expands alternations within braces.  If GNU make is not
956 # used, this rule will harmlessly fail to match.  Used FORCE_PARALLEL to
957 # prevent serialized checking due to the passed RUNTESTFLAGS.
958 # FIXME: use config.status --config not --version, when available.
959 check//%: force
960         @if [ -f testsuite/config.status ]; then \
961           rootme=`pwd`; export rootme; \
962           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
963           target=`echo "$@" | sed 's,//.*,,'`; \
964           variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
965           vardots=`echo "$$variant" | sed 's,/,.,g'`; \
966           testdir=testsuite.$$vardots; \
967           if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
968             configargs=`cd testsuite && ./config.status --version | \
969               sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
970             $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
971             (cd $$testdir && \
972              eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
973                            "\"--srcdir=\$$rootsrc/testsuite\"" \
974              ); \
975           else :; fi && cd $$testdir && \
976           $(MAKE) $(TARGET_FLAGS_TO_PASS) \
977             RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
978             FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
979             "$$target"; \
980         else true; fi
981
982 info install-info clean-info dvi pdf install-pdf html install-html: force
983         @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
984
985 gdb.z:gdb.1
986         nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
987         pack gdb.t ; rm -f gdb.t
988         mv gdb.t.z gdb.z
989
990 # Traditionally "install" depends on "all".  But it may be useful
991 # not to; for example, if the user has made some trivial change to a
992 # source file and doesn't care about rebuilding or just wants to save the
993 # time it takes for make to check that all is up to date.
994 # install-only is intended to address that need.
995 install: all install-only 
996
997 # The "install-only" target also installs the syscalls' XML files in
998 # the system.
999 install-only: $(CONFIG_INSTALL) xml-syscall-install
1000         transformed_name=`t='$(program_transform_name)'; \
1001                           echo gdb | sed -e "$$t"` ; \
1002                 if test "x$$transformed_name" = x; then \
1003                   transformed_name=gdb ; \
1004                 else \
1005                   true ; \
1006                 fi ; \
1007                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1008                 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1009                         $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1010                 $(SHELL) $(srcdir)/../mkinstalldirs \
1011                         $(DESTDIR)$(man1dir) ; \
1012                 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1013                         $(DESTDIR)$(man1dir)/$$transformed_name.1
1014         @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1015 .PHONY: install-tui
1016 install-tui:
1017         transformed_name=`t='$(program_transform_name)'; \
1018                           echo $(TUI) | sed -e "$$t"` ; \
1019                 if test "x$$transformed_name" = x; then \
1020                   transformed_name=$(TUI) ; \
1021                 else \
1022                   true ; \
1023                 fi ; \
1024                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1025                 $(INSTALL_PROGRAM) $(TUI)$(EXEEXT) \
1026                         $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1027                 $(SHELL) $(srcdir)/../mkinstalldirs \
1028                         $(DESTDIR)$(man1dir) ; \
1029                 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1030                         $(DESTDIR)$(man1dir)/$$transformed_name.1
1031
1032
1033 uninstall: force $(CONFIG_UNINSTALL)
1034         transformed_name=`t='$(program_transform_name)'; \
1035                           echo gdb | sed -e $$t` ; \
1036                 if test "x$$transformed_name" = x; then \
1037                   transformed_name=gdb ; \
1038                 else \
1039                   true ; \
1040                 fi ; \
1041                 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1042                       $(DESTDIR)$(man1dir)/$$transformed_name.1
1043         @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1044 .PHONY: uninstall-tui
1045 uninstall-tui:
1046         transformed_name=`t='$(program_transform_name)'; \
1047                           echo $(TUI) | sed -e $$t` ; \
1048                 if test "x$$transformed_name" = x; then \
1049                   transformed_name=$(TUI) ; \
1050                 else \
1051                   true ; \
1052                 fi ; \
1053                 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1054                       $(DESTDIR)$(man1dir)/$$transformed_name.1
1055
1056 # The C++ name parser can be built standalone for testing.
1057 test-cp-name-parser.o: cp-name-parser.c
1058         $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
1059         $(POSTCOMPILE)
1060
1061 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
1062         $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
1063                 test-cp-name-parser.o $(LIBIBERTY)
1064
1065 # We do this by grepping through sources.  If that turns out to be too slow,
1066 # maybe we could just require every .o file to have an initialization routine
1067 # of a given name (top.o -> _initialize_top, etc.).
1068 #
1069 # Formatting conventions:  The name of the _initialize_* routines must start
1070 # in column zero, and must not be inside #if.
1071 #
1072 # Note that the set of files with init functions might change, or the names
1073 # of the functions might change, so this files needs to depend on all the
1074 # object files that will be linked into gdb.
1075
1076 # FIXME: There is a problem with this approach - init.c may force
1077 # unnecessary files to be linked in.
1078
1079 # FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
1080 # the first call is to _initialize_gdbtypes (implemented by explicitly
1081 # putting that function's name first in the init.l-tmp file).  This is
1082 # a hack to ensure that all the architecture dependant global
1083 # builtin_type_* variables are initialized before anything else
1084 # (per-architecture code is called in the same order that it is
1085 # registered).  The ``correct fix'' is to have all the builtin types
1086 # made part of the architecture and initialize them on-demand (using
1087 # gdbarch_data) just like everything else.  The catch is that other
1088 # modules still take the address of these builtin types forcing them
1089 # to be variables, sigh!
1090
1091 # NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
1092 # anchored on the first column and excludes the ``/'' character so
1093 # that it doesn't add the $(srcdir) prefix to any file that already
1094 # has an absolute path.  It turns out that $(DEC)'s True64 make
1095 # automatically adds the $(srcdir) prefixes when it encounters files
1096 # in sub-directories such as cli/ and mi/.
1097
1098 # NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
1099 # duplicates.  Files in the gdb/ directory can end up appearing in
1100 # COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
1101
1102 INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS)
1103 init.c: $(INIT_FILES)
1104         @echo Making init.c
1105         @rm -f init.c-tmp init.l-tmp
1106         @touch init.c-tmp
1107         @echo gdbtypes > init.l-tmp
1108         @-LANG=C ; export LANG ; \
1109         LC_ALL=C ; export LC_ALL ; \
1110         echo $(INIT_FILES) | \
1111         tr ' ' '\012' | \
1112         sed \
1113             -e '/^gdbtypes.[co]$$/d' \
1114             -e '/^init.[co]$$/d' \
1115             -e '/xdr_ld.[co]$$/d' \
1116             -e '/xdr_ptrace.[co]$$/d' \
1117             -e '/xdr_rdb.[co]$$/d' \
1118             -e '/udr.[co]$$/d' \
1119             -e '/udip2soc.[co]$$/d' \
1120             -e '/udi2go32.[co]$$/d' \
1121             -e '/version.[co]$$/d' \
1122             -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
1123             -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
1124             -e 's/\.[co]$$/.c/' \
1125             -e 's,signals\.c,common/signals\.c,' \
1126             -e 's|^\([^  /][^     ]*\)|$(srcdir)/\1|g' | \
1127         while read f; do \
1128             sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
1129         done | \
1130         while read f; do \
1131             case " $$fs " in \
1132                 *" $$f "* ) ;; \
1133                 * ) echo $$f ; fs="$$fs $$f";; \
1134             esac; \
1135         done >> init.l-tmp
1136         @echo '/* Do not modify this file.  */' >>init.c-tmp
1137         @echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
1138         @echo '#include "defs.h"      /* For initialize_file_ftype.  */' >>init.c-tmp
1139         @echo '#include "call-cmds.h" /* For initialize_all_files.  */' >>init.c-tmp
1140         @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
1141         @echo 'void' >>init.c-tmp
1142         @echo 'initialize_all_files (void)' >>init.c-tmp
1143         @echo '{' >>init.c-tmp
1144         @sed -e 's/\(.*\)/  _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
1145         @echo '}' >>init.c-tmp
1146         @rm init.l-tmp
1147         @mv init.c-tmp init.c
1148
1149 .PRECIOUS: init.c
1150
1151 # Removing the old gdb first works better if it is running, at least on SunOS.
1152 gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1153         rm -f gdb$(EXEEXT)
1154         $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1155                 -o gdb$(EXEEXT) gdb.o libgdb.a \
1156                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1157
1158 $(TUI)$(EXEEXT): tui-main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1159         rm -f $(TUI)$(EXEEXT)
1160         $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1161                 -o $(TUI)$(EXEEXT) tui-main.o libgdb.a \
1162                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1163
1164 # Convenience rule to handle recursion.
1165 $(LIBGNU) $(GNULIB_H): all-lib
1166 all-lib: gnulib/Makefile
1167         @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=gnulib subdir_do
1168 .PHONY: all-lib
1169
1170 # Create a library of the gdb object files and build GDB by linking
1171 # against that.
1172 #
1173 # init.o is very important.  It pulls in the rest of GDB.
1174 LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
1175 libgdb.a: $(LIBGDB_OBS)
1176         -rm -f libgdb.a
1177         $(AR) q libgdb.a $(LIBGDB_OBS)
1178         $(RANLIB) libgdb.a
1179
1180 # This is useful when debugging GDB, because some Unix's don't let you run GDB
1181 # on itself without copying the executable.  So "make gdb1" will make
1182 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1183 # Removing gdb1 before the copy is the right thing if gdb1 is open
1184 # in another process.
1185 gdb1$(EXEEXT): gdb$(EXEEXT)
1186         rm -f gdb1$(EXEEXT)
1187         cp gdb$(EXEEXT) gdb1$(EXEEXT)
1188
1189 # Put the proper machine-specific files first, so M-. on a machine
1190 # specific routine gets the one for the correct machine.  (FIXME: those
1191 # files go in twice; we should be removing them from the main list).
1192
1193 # TAGS depends on all the files that go into it so you can rebuild TAGS
1194 # with `make TAGS' and not have to say `rm TAGS' first.
1195
1196 GDB_NM_FILE = @GDB_NM_FILE@
1197 TAGS: $(DEPFILES) $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
1198         @echo Making TAGS
1199         @etags $(srcdir)/$(GDB_NM_FILE) \
1200         `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
1201                 echo $(srcdir)/$$i ; \
1202         done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1203                 echo $$i ; \
1204         done) | sed -e 's/\.o$$/\.c/'` \
1205         `find $(srcdir)/config -name '*.h' -print`
1206
1207 tags: TAGS
1208
1209 clean mostlyclean: $(CONFIG_CLEAN)
1210         @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
1211         rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
1212         rm -f init.c version.c
1213         rm -f gdb$(EXEEXT) core make.log
1214         rm -f gdb[0-9]$(EXEEXT)
1215         rm -f test-cp-name-parser$(EXEEXT)
1216         rm -f xml-builtin.c stamp-xml
1217         rm -f $(DEPDIR)/*
1218
1219 .PHONY: clean-tui
1220 clean-tui:
1221         rm -f $(TUI)$(EXEEXT)
1222
1223 # This used to depend on c-exp.c m2-exp.c TAGS
1224 # I believe this is wrong; the makefile standards for distclean just
1225 # describe removing files; the only sort of "re-create a distribution"
1226 # functionality described is if the distributed files are unmodified.
1227 # NB: While GDBSERVER might be configured on native systems, it isn't
1228 # always included in SUBDIRS.  Remove the gdbserver files explicitly.
1229 distclean: clean
1230         @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
1231         rm -f gdbserver/config.status gdbserver/config.log
1232         rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1233         rm -f gdbserver/Makefile gdbserver/config.cache
1234         rm -f nm.h config.status config.h stamp-h .gdbinit
1235         rm -f y.output yacc.acts yacc.tmp y.tab.h
1236         rm -f config.log config.cache
1237         rm -f Makefile
1238         rm -rf $(DEPDIR)
1239
1240 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1241 realclean: maintainer-clean
1242
1243 local-maintainer-clean:
1244         @echo "This command is intended for maintainers to use;"
1245         @echo "it deletes files that may require special tools to rebuild."
1246         rm -f c-exp.c \
1247                 cp-name-parser.c \
1248                 ada-lex.c ada-exp.c \
1249                 objc-exp.c \
1250                 jv-exp.tab \
1251                 f-exp.c m2-exp.c p-exp.c
1252         rm -f TAGS $(INFOFILES)
1253         rm -f $(YYFILES)
1254         rm -f nm.h config.status
1255
1256 do-maintainer-clean:
1257         @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
1258                 subdir_do
1259
1260 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1261         cd doc; $(MAKE) $(MFLAGS) diststuff
1262
1263 subdir_do: force
1264         @for i in $(DODIRS); do \
1265                 if [ -f ./$$i/Makefile ] ; then \
1266                         if (cd ./$$i; \
1267                                 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1268                         else exit 1 ; fi ; \
1269                 else true ; fi ; \
1270         done
1271
1272 Makefile: Makefile.in config.status @frags@
1273         # Regenerate the Makefile and the tm.h / nm.h links.
1274         CONFIG_FILES="Makefile" \
1275           CONFIG_COMMANDS= \
1276           CONFIG_HEADERS= \
1277           $(SHELL) config.status
1278
1279 gnulib/Makefile: gnulib/Makefile.in gnulib/Makefile.in config.status @frags@
1280         CONFIG_FILES="gnulib/Makefile" \
1281           CONFIG_COMMANDS="depfiles" \
1282           CONFIG_HEADERS= \
1283           CONFIG_LINKS= \
1284           $(SHELL) config.status
1285
1286 config.h: stamp-h ; @true
1287 stamp-h: $(srcdir)/config.in config.status
1288         CONFIG_HEADERS=config.h:config.in \
1289           CONFIG_COMMANDS="default depdir" \
1290           CONFIG_FILES= \
1291           CONFIG_LINKS= \
1292           $(SHELL) config.status
1293
1294 config.status: $(srcdir)/configure configure.tgt configure.host
1295         $(SHELL) config.status --recheck
1296
1297 ACLOCAL = aclocal
1298 ACLOCAL_AMFLAGS = -I gnulib/m4
1299 aclocal_m4_deps = \
1300         configure.ac \
1301         gnulib/m4/extensions.m4 \
1302         gnulib/m4/gnulib-common.m4 \
1303         gnulib/m4/gnulib-comp.m4 \
1304         gnulib/m4/include_next.m4 \
1305         gnulib/m4/longlong.m4 \
1306         gnulib/m4/memchr.m4 \
1307         gnulib/m4/memcmp.m4 \
1308         gnulib/m4/memmem.m4 \
1309         gnulib/m4/onceonly_2_57.m4 \
1310         gnulib/m4/stdint.m4 \
1311         gnulib/m4/string_h.m4 \
1312         gnulib/m4/wchar.m4 \
1313         ../config/extensions.m4 \
1314         ../config/lead-dot.m4 \
1315         ../config/proginstall.m4 \
1316         ../bfd/bfd.m4 \
1317         ../config/acinclude.m4 \
1318         ../config/override.m4 \
1319         ../config/gettext-sister.m4 \
1320         ../config/lib-ld.m4 \
1321         ../config/lib-prefix.m4 \
1322         ../config/lib-link.m4 \
1323         ../config/acx.m4 \
1324         ../config/tcl.m4 \
1325         ../config/depstand.m4 \
1326         ../config/lcmessage.m4 \
1327         ../config/codeset.m4
1328
1329 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
1330         cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
1331
1332 AUTOCONF = autoconf
1333 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
1334 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
1335         cd $(srcdir) && $(AUTOCONF)
1336
1337 AUTOHEADER = autoheader
1338 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
1339         cd $(srcdir) && $(AUTOHEADER)
1340         rm -f stamp-h
1341         touch $@
1342
1343 # automatic rebuilding in automake-generated Makefiles requires
1344 # this rule in the toplevel Makefile, which, with GNU make, causes
1345 # the desired updates through the implicit regeneration of the Makefile
1346 # and all of its prerequisites.
1347 am--refresh:
1348         @:
1349
1350 force:
1351
1352 # Documentation!
1353 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
1354 doc/refcard.dvi:
1355         cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
1356
1357 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
1358 doc/refcard.ps:
1359         cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
1360
1361 # GDB MANUAL: TeX dvi file
1362 doc/gdb.dvi:
1363         cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
1364
1365 # GDB MANUAL: info file
1366 doc/gdb.info:
1367         cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
1368
1369 # Make copying.c from COPYING
1370 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
1371         awk -f $(srcdir)/copying.awk \
1372                 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
1373         mv $(srcdir)/copying.tmp $(srcdir)/copying.c
1374
1375 version.c: Makefile version.in
1376         rm -f version.c-tmp version.c
1377         echo '#include "version.h"' >> version.c-tmp
1378         echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp
1379         echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
1380         echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
1381         mv version.c-tmp version.c
1382
1383 observer.h: observer.sh doc/observer.texi
1384         ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
1385
1386 observer.inc: observer.sh doc/observer.texi
1387         ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
1388
1389 lint: $(LINTFILES)
1390         $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1391            `echo $(DEPFILES) $(CONFIG_OBS) | sed 's/\.o /\.c /g'`
1392
1393 gdb.cxref: $(SFILES)
1394         cxref -I. $(SFILES) >gdb.cxref
1395
1396 force_update:
1397
1398 # GNU Make has an annoying habit of putting *all* the Makefile variables
1399 # into the environment, unless you include this target as a circumvention.
1400 # Rumor is that this will be fixed (and this target can be removed)
1401 # in GNU Make 4.0.
1402 .NOEXPORT:
1403
1404 # GNU Make 3.63 has a different problem: it keeps tacking command line
1405 # overrides onto the definition of $(MAKE).  This variable setting
1406 # will remove them.
1407 MAKEOVERRIDES=
1408
1409 ALLDEPFILES = \
1410         aix-thread.c \
1411         alpha-nat.c alphabsd-nat.c alpha-linux-nat.c \
1412         alpha-tdep.c alpha-mdebug-tdep.c \
1413         alpha-linux-tdep.c alpha-osf1-tdep.c \
1414         alphabsd-tdep.c alphafbsd-tdep.c alphanbsd-tdep.c alphaobsd-tdep.c \
1415         amd64-nat.c amd64-tdep.c \
1416         amd64bsd-nat.c amd64fbsd-nat.c amd64fbsd-tdep.c \
1417         amd64nbsd-nat.c amd64nbsd-tdep.c \
1418         amd64obsd-nat.c amd64obsd-tdep.c \
1419         amd64-darwin-tdep.c \
1420         amd64-dicos-tdep.c \
1421         amd64-linux-nat.c amd64-linux-tdep.c \
1422         amd64-sol2-tdep.c \
1423         arm-linux-nat.c arm-linux-tdep.c arm-symbian-tdep.c arm-tdep.c \
1424         armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \
1425         avr-tdep.c \
1426         bsd-uthread.c bsd-kvm.c \
1427         core-regset.c corelow.c \
1428         dcache.c dicos-tdep.c darwin-nat.c \
1429         exec.c \
1430         fbsd-nat.c \
1431         fork-child.c \
1432         glibc-tdep.c \
1433         go32-nat.c h8300-tdep.c \
1434         hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
1435         hppa-linux-tdep.c hppa-linux-nat.c \
1436         hppabsd-nat.c hppabsd-tdep.c \
1437         hppaobsd-tdep.c \
1438         hppanbsd-nat.c hppanbsd-tdep.c \
1439         i386-tdep.c i386-linux-nat.c \
1440         i386v4-nat.c i386-cygwin-tdep.c \
1441         i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
1442         i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \
1443         i387-tdep.c \
1444         i386-darwin-tdep.c i386-darwin-nat.c \
1445         i386-dicos-tdep.c \
1446         i386-linux-tdep.c i386-nat.c \
1447         i386-sol2-nat.c i386-sol2-tdep.c \
1448         i386gnu-nat.c i386gnu-tdep.c \
1449         ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
1450         inf-ptrace.c inf-ttrace.c \
1451         irix5-nat.c \
1452         libunwind-frame.c \
1453         linux-fork.c \
1454         linux-tdep.c \
1455         linux-record.c \
1456         lm32-tdep.c \
1457         m68hc11-tdep.c \
1458         m32r-tdep.c \
1459         m32r-linux-nat.c m32r-linux-tdep.c \
1460         m68k-tdep.c \
1461         m68kbsd-nat.c m68kbsd-tdep.c \
1462         m68klinux-nat.c m68klinux-tdep.c \
1463         m88k-tdep.c m88kbsd-nat.c \
1464         microblaze-tdep.c microblaze-linux-tdep.c \
1465         mingw-hdep.c \
1466         mips-linux-nat.c mips-linux-tdep.c \
1467         mips-irix-tdep.c \
1468         mips-tdep.c \
1469         mipsnbsd-nat.c mipsnbsd-tdep.c \
1470         mips64obsd-nat.c mips64obsd-tdep.c \
1471         nbsd-nat.c nbsd-tdep.c obsd-tdep.c \
1472         solib-osf.c \
1473         solib-target.c \
1474         somread.c solib-som.c \
1475         posix-hdep.c \
1476         ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
1477         ppcnbsd-nat.c ppcnbsd-tdep.c \
1478         ppcobsd-nat.c ppcobsd-tdep.c \
1479         procfs.c \
1480         remote-m32r-sdi.c remote-mips.c \
1481         remote-sim.c \
1482         dcache.c \
1483         rs6000-nat.c rs6000-tdep.c \
1484         s390-tdep.c s390-nat.c \
1485         score-tdep.c \
1486         ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \
1487         sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
1488         sol2-tdep.c \
1489         solib-irix.c solib-svr4.c solib-sunos.c \
1490         sparc-linux-nat.c sparc-linux-tdep.c \
1491         sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-sol2-tdep.c \
1492         sparc-nat.c sparc-tdep.c sparc64-linux-nat.c sparc64-linux-tdep.c \
1493         sparc64-nat.c sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
1494         sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
1495         sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
1496         spu-linux-nat.c spu-tdep.c spu-multiarch.c solib-spu.c \
1497         v850-tdep.c \
1498         vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
1499         windows-nat.c windows-tdep.c \
1500         xcoffread.c xcoffsolib.c \
1501         xstormy16-tdep.c \
1502         xtensa-tdep.c xtensa-config.c \
1503         xtensa-linux-tdep.c xtensa-linux-nat.c xtensa-xtregs.c
1504
1505 # Some files need explicit build rules (due to -Werror problems) or due
1506 # to sub-directory fun 'n' games.
1507
1508 hpux-thread.o: $(srcdir)/hpux-thread.c
1509         $(COMPILE) -I$(srcdir)/osf-share -I$(srcdir)/osf-share/HP800 \
1510                 -I/usr/include/dce $(srcdir)/hpux-thread.c
1511         $(POSTCOMPILE)
1512
1513 # main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR.
1514 main.o: $(srcdir)/main.c
1515         $(COMPILE) $(TARGET_SYSTEM_ROOT_DEFINE) -DBINDIR=\"$(bindir)\" $(srcdir)/main.c
1516         $(POSTCOMPILE)
1517
1518 # FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral
1519 # errors.  It turns out that that is the least of monitor.c's
1520 # problems.  The function print_vsprintf appears to be using
1521 # va_arg(long) to extract CORE_ADDR parameters - something that
1522 # definitly will not work.  "monitor.c" needs to be rewritten so that
1523 # it doesn't use format strings and instead uses callbacks.
1524 monitor.o: $(srcdir)/monitor.c
1525         $(COMPILE.pre) $(INTERNAL_WARN_CFLAGS) $(COMPILE.post) $(srcdir)/monitor.c
1526         $(POSTCOMPILE)
1527
1528 # Do not try to build "printcmd.c" with -Wformat-nonliteral.  It manually
1529 # checks format strings.
1530 printcmd.o: $(srcdir)/printcmd.c
1531         $(COMPILE.pre) $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS_NO_FORMAT) \
1532                 $(GDB_WERROR_CFLAGS) $(COMPILE.post) $(srcdir)/printcmd.c
1533         $(POSTCOMPILE)
1534
1535 # Message files.  Based on code in gcc/Makefile.in.
1536
1537 # Rules for generating translated message descriptions.  Disabled by
1538 # autoconf if the tools are not available.
1539
1540 .SUFFIXES: .po .gmo .pox .pot
1541 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
1542
1543 all-po: $(CATALOGS)
1544
1545 # This notation should be acceptable to all Make implementations used
1546 # by people who are interested in updating .po files.
1547 update-po: $(CATALOGS:.gmo=.pox)
1548
1549 # N.B. We do not attempt to copy these into $(srcdir).  The snapshot
1550 # script does that.
1551 .po.gmo:
1552         -test -d po || mkdir po
1553         $(GMSGFMT) --statistics -o $@ $<
1554
1555 # The new .po has to be gone over by hand, so we deposit it into
1556 # build/po with a different extension.  If build/po/$(PACKAGE).pot
1557 # exists, use it (it was just created), else use the one in srcdir.
1558 .po.pox:
1559         -test -d po || mkdir po
1560         $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
1561                         then echo po/$(PACKAGE).pot; \
1562                         else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
1563
1564 # This rule has to look for .gmo modules in both srcdir and the cwd,
1565 # and has to check that we actually have a catalog for each language,
1566 # in case they weren't built or included with the distribution.
1567 install-po:
1568         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
1569         cats="$(CATALOGS)"; for cat in $$cats; do \
1570           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1571           if [ -f $$cat ]; then :; \
1572           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1573           else continue; \
1574           fi; \
1575           dir=$(localedir)/$$lang/LC_MESSAGES; \
1576           echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
1577           $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
1578           echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1579           $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1580         done
1581 uninstall-po:
1582         cats="$(CATALOGS)"; for cat in $$cats; do \
1583           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1584           if [ -f $$cat ]; then :; \
1585           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1586           else continue; \
1587           fi; \
1588           dir=$(localedir)/$$lang/LC_MESSAGES; \
1589           rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
1590         done
1591 # Delete po/*.gmo only if we are not building in the source directory.
1592 clean-po:
1593         -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
1594
1595 # Rule for regenerating the message template (gdb.pot).  Instead of
1596 # forcing everyone to edit POTFILES.in, which proved impractical, this
1597 # rule has no dependencies and always regenerates gdb.pot.  This is
1598 # relatively harmless since the .po files do not directly depend on
1599 # it.  The .pot file is left in the build directory.  Since GDB's
1600 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
1601 # files) force this rule.
1602 $(PACKAGE).pot: po/$(PACKAGE).pot
1603 po/$(PACKAGE).pot: force
1604         -test -d po || mkdir po
1605         sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
1606
1607
1608 #
1609 # YACC/LEX dependencies
1610 #
1611 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
1612 # exist in srcdir, then compiled in objdir to LANG-exp.o.  If we
1613 # said LANG-exp.c rather than ./c-exp.c some makes would
1614 # sometimes re-write it into $(srcdir)/c-exp.c.  Remove bogus
1615 # decls for malloc/realloc/free which conflict with everything else.
1616 # Strictly speaking c-exp.c should therefore depend on
1617 # Makefile.in, but that was a pretty big annoyance.
1618
1619 .SUFFIXES: .y .l
1620 .y.c:
1621         $(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- $(YACC) $(YFLAGS)
1622         -sed -e '/extern.*malloc/d' \
1623              -e '/extern.*realloc/d' \
1624              -e '/extern.*free/d' \
1625              -e '/include.*malloc.h/d' \
1626              -e 's/\([^x]\)malloc/\1xmalloc/g' \
1627              -e 's/\([^x]\)realloc/\1xrealloc/g' \
1628              -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
1629              -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
1630              -e '/^#line.*y.tab.c/d' \
1631           < $@.tmp > $@.new
1632         -rm $@.tmp
1633         mv $@.new ./$*.c
1634 .l.c:
1635         if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
1636             $(FLEX) -o$@ $< && \
1637             rm -f $@.new && \
1638             sed -e '/extern.*malloc/d' \
1639                 -e '/extern.*realloc/d' \
1640                 -e '/extern.*free/d' \
1641                 -e '/include.*malloc.h/d' \
1642                 -e 's/\([^x]\)malloc/\1xmalloc/g' \
1643                 -e 's/\([^x]\)realloc/\1xrealloc/g' \
1644                 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
1645                 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
1646                 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
1647               < $@ > $@.new && \
1648             rm -f $@ && \
1649             mv $@.new $@; \
1650         elif [ -f $@ ]; then \
1651             echo "Warning: $*.c older than $*.l and flex not available."; \
1652         else \
1653             echo "$@ missing and flex not available."; \
1654             false; \
1655         fi
1656
1657 .PRECIOUS: ada-exp.c ada-lex.c
1658 .PRECIOUS: c-exp.c
1659 .PRECIOUS: f-exp.c
1660 .PRECIOUS: jv-exp.c
1661 .PRECIOUS: m2-exp.c
1662 .PRECIOUS: objc-exp.c
1663 .PRECIOUS: p-exp.c
1664
1665 # XML rules
1666
1667 xml-builtin.c: stamp-xml; @true
1668 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
1669         rm -f xml-builtin.tmp
1670         AWK="$(AWK)" \
1671           $(SHELL) $(srcdir)/features/feature_to_c.sh \
1672           xml-builtin.tmp $(XMLFILES)
1673         $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
1674         echo stamp > stamp-xml
1675
1676 .PRECIOUS: xml-builtin.c
1677
1678 #
1679 # gdb/cli/ dependencies
1680 #
1681 # Need to explicitly specify the compile rule as make will do nothing
1682 # or try to compile the object file into the sub-directory.
1683
1684 cli-cmds.o: $(srcdir)/cli/cli-cmds.c
1685         $(COMPILE) $(srcdir)/cli/cli-cmds.c
1686         $(POSTCOMPILE)
1687
1688 cli-decode.o: $(srcdir)/cli/cli-decode.c
1689         $(COMPILE) $(srcdir)/cli/cli-decode.c
1690         $(POSTCOMPILE)
1691
1692 cli-dump.o: $(srcdir)/cli/cli-dump.c
1693         $(COMPILE) $(srcdir)/cli/cli-dump.c
1694         $(POSTCOMPILE)
1695
1696 cli-interp.o: $(srcdir)/cli/cli-interp.c
1697         $(COMPILE) $(srcdir)/cli/cli-interp.c
1698         $(POSTCOMPILE)
1699
1700 cli-logging.o: $(srcdir)/cli/cli-logging.c
1701         $(COMPILE) $(srcdir)/cli/cli-logging.c
1702         $(POSTCOMPILE)
1703
1704 cli-script.o: $(srcdir)/cli/cli-script.c
1705         $(COMPILE) $(srcdir)/cli/cli-script.c
1706         $(POSTCOMPILE)
1707
1708 cli-setshow.o: $(srcdir)/cli/cli-setshow.c
1709         $(COMPILE) $(srcdir)/cli/cli-setshow.c
1710         $(POSTCOMPILE)
1711
1712
1713 #
1714 # GDBTK sub-directory
1715 #
1716 # Need to explicitly specify the compile rule as make will do nothing
1717 # or try to compile the object file into the mi directory.
1718
1719 all-gdbtk: insight$(EXEEXT)
1720
1721 install-gdbtk:
1722         transformed_name=`t='$(program_transform_name)'; \
1723                   echo insight | sed -e $$t` ; \
1724         if test "x$$transformed_name" = x; then \
1725           transformed_name=insight ; \
1726         else \
1727           true ; \
1728         fi ; \
1729         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
1730         $(INSTALL_PROGRAM) insight$(EXEEXT) \
1731                 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1732         $(SHELL) $(srcdir)/../mkinstalldirs \
1733                 $(DESTDIR)$(GDBTK_LIBRARY) ; \
1734         $(SHELL) $(srcdir)/../mkinstalldirs \
1735                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
1736         $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
1737                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
1738         $(SHELL) $(srcdir)/../mkinstalldirs \
1739                 $(DESTDIR)$(GDBTK_LIBRARY)/images \
1740                 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
1741         $(SHELL) $(srcdir)/../mkinstalldirs \
1742                 $(DESTDIR)$(GDBTK_LIBRARY)/help \
1743                 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
1744                 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
1745         cd $(srcdir)/gdbtk/library ; \
1746         for i in *.tcl *.itcl *.ith *.itb images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html  help/trace/*.html help/trace/index.toc help/images/*.gif help/images/*.png; \
1747           do \
1748                 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
1749           done ;
1750
1751 uninstall-gdbtk:
1752         transformed_name=`t='$(program_transform_name)'; \
1753                   echo insight | sed -e $$t` ; \
1754         if test "x$$transformed_name" = x; then \
1755                 transformed_name=insight ; \
1756         else \
1757                 true ; \
1758         fi ; \
1759         rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1760         rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
1761
1762 clean-gdbtk:
1763         rm -f insight$(EXEEXT)
1764
1765 # Removing the old gdb first works better if it is running, at least on SunOS.
1766 insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
1767                 $(CDEPS) $(TDEPLIBS)
1768         rm -f insight$(EXEEXT)
1769         $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1770                 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
1771                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1772
1773 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
1774         $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
1775
1776 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1777                 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1778                 $(GDBTK_CFLAGS) \
1779                 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
1780                 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
1781
1782 gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c
1783         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk.c
1784         $(POSTCOMPILE)
1785
1786 gdbtk-bp.o: $(srcdir)/gdbtk/generic/gdbtk-bp.c
1787         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-bp.c
1788         $(POSTCOMPILE)
1789
1790 gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c
1791         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-cmds.c
1792         $(POSTCOMPILE)
1793
1794 gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c
1795         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-hooks.c
1796         $(POSTCOMPILE)
1797
1798 gdbtk-interp.o: $(srcdir)/gdbtk/generic/gdbtk-interp.c
1799         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-interp.c
1800         $(POSTCOMPILE)
1801
1802 gdbtk-main.o: $(srcdir)/gdbtk/generic/gdbtk-main.c
1803         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-main.c
1804         $(POSTCOMPILE)
1805
1806 gdbtk-register.o: $(srcdir)/gdbtk/generic/gdbtk-register.c
1807         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-register.c
1808         $(POSTCOMPILE)
1809
1810 gdbtk-stack.o: $(srcdir)/gdbtk/generic/gdbtk-stack.c
1811         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-stack.c
1812         $(POSTCOMPILE)
1813
1814 gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1815         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1816         $(POSTCOMPILE)
1817
1818 gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1819         $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1820         $(POSTCOMPILE)
1821
1822
1823 #
1824 # gdb/mi/ dependencies
1825 #
1826 # Need to explicitly specify the compile rule as make will do nothing
1827 # or try to compile the object file into the sub-directory.
1828
1829 mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c
1830         $(COMPILE) $(srcdir)/mi/mi-cmd-break.c
1831         $(POSTCOMPILE)
1832
1833 mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c
1834         $(COMPILE) $(srcdir)/mi/mi-cmd-disas.c
1835         $(POSTCOMPILE)
1836
1837 mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c
1838         $(COMPILE) $(srcdir)/mi/mi-cmd-env.c
1839         $(POSTCOMPILE)
1840
1841 mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c
1842         $(COMPILE) $(srcdir)/mi/mi-cmd-file.c
1843         $(POSTCOMPILE)
1844
1845 mi-cmds.o: $(srcdir)/mi/mi-cmds.c
1846         $(COMPILE) $(srcdir)/mi/mi-cmds.c
1847         $(POSTCOMPILE)
1848
1849 mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c
1850         $(COMPILE) $(srcdir)/mi/mi-cmd-stack.c
1851         $(POSTCOMPILE)
1852
1853 mi-cmd-target.o: $(srcdir)/mi/mi-cmd-target.c
1854         $(COMPILE) $(srcdir)/mi/mi-cmd-target.c
1855         $(POSTCOMPILE)
1856
1857 mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c
1858         $(COMPILE) $(srcdir)/mi/mi-cmd-var.c
1859         $(POSTCOMPILE)
1860
1861 mi-console.o: $(srcdir)/mi/mi-console.c
1862         $(COMPILE) $(srcdir)/mi/mi-console.c
1863         $(POSTCOMPILE)
1864
1865 mi-getopt.o: $(srcdir)/mi/mi-getopt.c
1866         $(COMPILE) $(srcdir)/mi/mi-getopt.c
1867         $(POSTCOMPILE)
1868
1869 mi-interp.o: $(srcdir)/mi/mi-interp.c
1870         $(COMPILE) $(srcdir)/mi/mi-interp.c
1871         $(POSTCOMPILE)
1872
1873 mi-main.o: $(srcdir)/mi/mi-main.c
1874         $(COMPILE) $(srcdir)/mi/mi-main.c
1875         $(POSTCOMPILE)
1876
1877 mi-out.o: $(srcdir)/mi/mi-out.c
1878         $(COMPILE) $(srcdir)/mi/mi-out.c
1879         $(POSTCOMPILE)
1880
1881 mi-parse.o: $(srcdir)/mi/mi-parse.c
1882         $(COMPILE) $(srcdir)/mi/mi-parse.c
1883         $(POSTCOMPILE)
1884
1885 mi-symbol-cmds.o: $(srcdir)/mi/mi-symbol-cmds.c
1886         $(COMPILE) $(srcdir)/mi/mi-symbol-cmds.c
1887         $(POSTCOMPILE)
1888
1889 mi-common.o: $(srcdir)/mi/mi-common.c
1890         $(COMPILE) $(srcdir)/mi/mi-common.c
1891         $(POSTCOMPILE)
1892
1893 #
1894 # gdb/common/ dependencies
1895 #
1896 # Need to explicitly specify the compile rule as make will do nothing
1897 # or try to compile the object file into the sub-directory.
1898
1899 signals.o: $(srcdir)/common/signals.c
1900         $(COMPILE) $(srcdir)/common/signals.c
1901         $(POSTCOMPILE)
1902
1903 #
1904 # gdb/tui/ dependencies
1905 #
1906 # Need to explicitly specify the compile rule as make will do nothing
1907 # or try to compile the object file into the sub-directory.
1908
1909 tui.o: $(srcdir)/tui/tui.c
1910         $(COMPILE) $(srcdir)/tui/tui.c
1911         $(POSTCOMPILE)
1912
1913 tui-command.o: $(srcdir)/tui/tui-command.c
1914         $(COMPILE) $(srcdir)/tui/tui-command.c
1915         $(POSTCOMPILE)
1916
1917 tui-data.o: $(srcdir)/tui/tui-data.c
1918         $(COMPILE) $(srcdir)/tui/tui-data.c
1919         $(POSTCOMPILE)
1920
1921 tui-disasm.o: $(srcdir)/tui/tui-disasm.c
1922         $(COMPILE) $(srcdir)/tui/tui-disasm.c
1923         $(POSTCOMPILE)
1924
1925 tui-file.o: $(srcdir)/tui/tui-file.c
1926         $(COMPILE) $(srcdir)/tui/tui-file.c
1927         $(POSTCOMPILE)
1928
1929 tui-hooks.o: $(srcdir)/tui/tui-hooks.c
1930         $(COMPILE) $(srcdir)/tui/tui-hooks.c
1931         $(POSTCOMPILE)
1932
1933 tui-interp.o: $(srcdir)/tui/tui-interp.c
1934         $(COMPILE) $(srcdir)/tui/tui-interp.c
1935         $(POSTCOMPILE)
1936
1937 tui-io.o: $(srcdir)/tui/tui-io.c
1938         $(COMPILE) $(srcdir)/tui/tui-io.c
1939         $(POSTCOMPILE)
1940
1941 tui-layout.o: $(srcdir)/tui/tui-layout.c
1942         $(COMPILE) $(srcdir)/tui/tui-layout.c
1943         $(POSTCOMPILE)
1944
1945 tui-main.o: $(srcdir)/tui/tui-main.c
1946         $(COMPILE) $(srcdir)/tui/tui-main.c
1947         $(POSTCOMPILE)
1948
1949 tui-out.o: $(srcdir)/tui/tui-out.c
1950         $(COMPILE) $(srcdir)/tui/tui-out.c
1951         $(POSTCOMPILE)
1952
1953 tui-regs.o: $(srcdir)/tui/tui-regs.c
1954         $(COMPILE) $(srcdir)/tui/tui-regs.c
1955         $(POSTCOMPILE)
1956
1957 tui-source.o: $(srcdir)/tui/tui-source.c
1958         $(COMPILE) $(srcdir)/tui/tui-source.c
1959         $(POSTCOMPILE)
1960
1961 tui-stack.o: $(srcdir)/tui/tui-stack.c
1962         $(COMPILE) $(srcdir)/tui/tui-stack.c
1963         $(POSTCOMPILE)
1964
1965 tui-win.o: $(srcdir)/tui/tui-win.c
1966         $(COMPILE) $(srcdir)/tui/tui-win.c
1967         $(POSTCOMPILE)
1968
1969 tui-windata.o: $(srcdir)/tui/tui-windata.c
1970         $(COMPILE) $(srcdir)/tui/tui-windata.c
1971         $(POSTCOMPILE)
1972
1973 tui-wingeneral.o: $(srcdir)/tui/tui-wingeneral.c
1974         $(COMPILE) $(srcdir)/tui/tui-wingeneral.c
1975         $(POSTCOMPILE)
1976
1977 tui-winsource.o: $(srcdir)/tui/tui-winsource.c
1978         $(COMPILE) $(srcdir)/tui/tui-winsource.c
1979         $(POSTCOMPILE)
1980
1981 #
1982 # gdb/python/ dependencies
1983 #
1984 # Need to explicitly specify the compile rule as make will do nothing
1985 # or try to compile the object file into the sub-directory.
1986
1987 # Flags needed to compile Python code
1988 PYTHON_CFLAGS=@PYTHON_CFLAGS@
1989
1990 python.o: $(srcdir)/python/python.c
1991         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/python.c
1992         $(POSTCOMPILE)
1993
1994 py-auto-load.o: $(srcdir)/python/py-auto-load.c
1995         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-auto-load.c
1996         $(POSTCOMPILE)
1997
1998 py-block.o: $(srcdir)/python/py-block.c
1999         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-block.c
2000         $(POSTCOMPILE)
2001
2002 py-breakpoint.o: $(srcdir)/python/py-breakpoint.c
2003         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-breakpoint.c
2004         $(POSTCOMPILE)
2005
2006 py-cmd.o: $(srcdir)/python/py-cmd.c
2007         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-cmd.c
2008         $(POSTCOMPILE)
2009
2010 py-frame.o: $(srcdir)/python/py-frame.c
2011         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-frame.c
2012         $(POSTCOMPILE)
2013
2014 py-function.o: $(srcdir)/python/py-function.c
2015         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-function.c
2016         $(POSTCOMPILE)
2017
2018 py-lazy-string.o: $(srcdir)/python/py-lazy-string.c
2019         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-lazy-string.c
2020         $(POSTCOMPILE)
2021
2022 py-objfile.o: $(srcdir)/python/py-objfile.c
2023         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-objfile.c
2024         $(POSTCOMPILE)
2025
2026 py-prettyprint.o: $(srcdir)/python/py-prettyprint.c
2027         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-prettyprint.c
2028         $(POSTCOMPILE)
2029
2030 py-progspace.o: $(srcdir)/python/py-progspace.c
2031         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-progspace.c
2032         $(POSTCOMPILE)
2033
2034 py-symbol.o: $(srcdir)/python/py-symbol.c
2035         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-symbol.c
2036         $(POSTCOMPILE)
2037
2038 py-symtab.o: $(srcdir)/python/py-symtab.c
2039         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-symtab.c
2040         $(POSTCOMPILE)
2041
2042 py-type.o: $(srcdir)/python/py-type.c
2043         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-type.c
2044         $(POSTCOMPILE)
2045
2046 py-utils.o: $(srcdir)/python/py-utils.c
2047         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-utils.c
2048         $(POSTCOMPILE)
2049
2050 py-value.o: $(srcdir)/python/py-value.c
2051         $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-value.c
2052         $(POSTCOMPILE)
2053
2054 #
2055 # Dependency tracking.  Most of this is conditional on GNU Make being
2056 # found by configure; if GNU Make is not found, we fall back to a
2057 # simpler scheme.
2058 #
2059
2060 @GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
2061 # Note that we put the dependencies into a .Tpo file, then move them
2062 # into place if the compile succeeds.  We need this because gcc does
2063 # not atomically write the dependency output file.
2064 @GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2065 @GMAKE_TRUE@    -MF $(DEPDIR)/$(basename $(@F)).Tpo
2066 @GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
2067 @GMAKE_TRUE@    $(DEPDIR)/$(basename $(@F)).Po
2068 @GMAKE_TRUE@else
2069 @GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
2070 @GMAKE_TRUE@    DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
2071 # depcomp handles atomicity for us, so we don't need a postcompile
2072 # step.
2073 @GMAKE_TRUE@override POSTCOMPILE =
2074 @GMAKE_TRUE@endif
2075
2076 # A list of all the objects we might care about in this build, for
2077 # dependency tracking.
2078 all_object_files = gdb.o tui-main.o $(LIBGDB_OBS) gdbtk-main.o \
2079         test-cp-name-parser.o
2080
2081 # Ensure that generated files are created early.  Use order-only
2082 # dependencies if available.  They require GNU make 3.80 or newer,
2083 # and the .VARIABLES variable was introduced at the same time.
2084 @GMAKE_TRUE@ifdef .VARIABLES
2085 @GMAKE_TRUE@$(all_object_files): | $(generated_files)
2086 @GMAKE_TRUE@else
2087 $(all_object_files) : $(generated_files)
2088 @GMAKE_TRUE@endif
2089
2090 # Dependencies.
2091 @GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
2092
2093 ### end of the gdb Makefile.in.