[PR build/24886] disable glibc mcheck support
[external/binutils.git] / gdb / Makefile.in
1 # Copyright (C) 1989-2019 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 3 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, see <http://www.gnu.org/licenses/>.
17
18 # Please keep lists in this file sorted alphabetically, with one item per line.
19 # Here are the general guidelines for ordering files and directories:
20 #
21 #   - Files come before directories.
22 #   - The extensions are not taken into account when comparing filenames, except
23 #     if the filenames are otherwise equal.
24 #   - A filename that is a prefix of another one comes before.
25 #   - Underscores and dashes are treated equally, and come before alphanumeric
26 #     characters.
27 #
28 # For example:
29 #
30 # SOME_FILES = \
31 #       foo.c \
32 #       foo.h \
33 #       foo-bar.c \
34 #       foobar.c \
35 #       foo/bar.c
36
37 prefix = @prefix@
38 exec_prefix = @exec_prefix@
39
40 host_alias = @host_alias@
41 target_alias = @target_alias@
42 program_transform_name = @program_transform_name@
43 bindir = @bindir@
44 libdir = @libdir@
45 tooldir = $(libdir)/$(target_alias)
46
47 datadir = @datadir@
48 localedir = @localedir@
49 mandir = @mandir@
50 man1dir = $(mandir)/man1
51 man2dir = $(mandir)/man2
52 man3dir = $(mandir)/man3
53 man4dir = $(mandir)/man4
54 man5dir = $(mandir)/man5
55 man6dir = $(mandir)/man6
56 man7dir = $(mandir)/man7
57 man8dir = $(mandir)/man8
58 man9dir = $(mandir)/man9
59 infodir = @infodir@
60 datarootdir = @datarootdir@
61 docdir = @docdir@
62 htmldir = @htmldir@
63 pdfdir = @pdfdir@
64 includedir = @includedir@
65
66 install_sh = @install_sh@
67
68 # This can be referenced by `LIBINTL' as computed by
69 # ZW_GNU_GETTEXT_SISTER_DIR.
70 top_builddir = .
71
72 SHELL = @SHELL@
73 EXEEXT = @EXEEXT@
74
75 AWK = @AWK@
76 LN_S = @LN_S@
77
78 INSTALL = @INSTALL@
79 INSTALL_PROGRAM = @INSTALL_PROGRAM@
80 INSTALL_SCRIPT = @INSTALL_SCRIPT@
81 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
82 INSTALL_DATA = @INSTALL_DATA@
83
84 DESTDIR =
85
86 AR = @AR@
87 AR_FLAGS = qv
88 RANLIB = @RANLIB@
89 DLLTOOL = @DLLTOOL@
90 WINDRES = @WINDRES@
91 MIG = @MIG@
92 STRIP = @STRIP@
93
94 XGETTEXT = @XGETTEXT@
95 GMSGFMT = @GMSGFMT@
96 MSGMERGE = msgmerge
97
98 PACKAGE = @PACKAGE@
99 CATALOGS = @CATALOGS@
100
101 CC = @CC@
102 CXX = @CXX@
103 CXX_DIALECT = @CXX_DIALECT@
104
105 # Dependency tracking information.
106 DEPMODE = @CCDEPMODE@
107 DEPDIR = @DEPDIR@
108 depcomp = $(SHELL) $(srcdir)/../depcomp
109
110 # Directory containing source files.
111 srcdir = @srcdir@
112 VPATH = @srcdir@
113 top_srcdir = @top_srcdir@
114
115 include $(srcdir)/silent-rules.mk
116
117 # Note that these are overridden by GNU make-specific code below if
118 # GNU make is used.  The overrides implement dependency tracking.
119 COMPILE.pre = $(CXX) -x c++ $(CXX_DIALECT)
120 COMPILE.post = -c -o $@
121 COMPILE = $(ECHO_CXX) $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
122 POSTCOMPILE = @true
123
124 YACC = @YACC@
125
126 # This is used to rebuild ada-lex.c from ada-lex.l.  If the program is
127 # not defined, but ada-lex.c is present, compilation will continue,
128 # possibly with a warning.
129 FLEX = flex
130
131 YLWRAP = $(srcdir)/../ylwrap
132
133 # where to find makeinfo, preferably one designed for texinfo-2
134 MAKEINFO = @MAKEINFO@
135 MAKEINFOFLAGS = @MAKEINFOFLAGS@
136 MAKEINFO_EXTRA_FLAGS = @MAKEINFO_EXTRA_FLAGS@
137 MAKEINFO_CMD = $(MAKEINFO) $(MAKEINFOFLAGS) $(MAKEINFO_EXTRA_FLAGS)
138
139 MAKEHTML = $(MAKEINFO_CMD) --html
140 MAKEHTMLFLAGS =
141
142 # Set this up with gcc if you have gnu ld and the loader will print out
143 # line numbers for undefined references.
144 #CC_LD = g++ -static
145 CC_LD = $(CXX) $(CXX_DIALECT)
146
147 # Where is our "include" directory?  Typically $(srcdir)/../include.
148 # This is essentially the header file directory for the library
149 # routines in libiberty.
150 INCLUDE_DIR = $(srcdir)/../include
151 INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
152
153 # Where is the "-liberty" library?  Typically in ../libiberty.
154 LIBIBERTY = ../libiberty/libiberty.a
155
156 # Where is the BFD library?  Typically in ../bfd.
157 BFD_DIR = ../bfd
158 BFD = $(BFD_DIR)/libbfd.a
159 BFD_SRC = $(srcdir)/$(BFD_DIR)
160 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
161
162 # This is where we get zlib from.  zlibdir is -L../zlib and zlibinc is
163 # -I../zlib, unless we were configured with --with-system-zlib, in which
164 # case both are empty.
165 ZLIB = @zlibdir@ -lz
166 ZLIBINC = @zlibinc@
167
168 # Where is the decnumber library?  Typically in ../libdecnumber.
169 LIBDECNUMBER_DIR = ../libdecnumber
170 LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
171 LIBDECNUMBER_SRC = $(srcdir)/$(LIBDECNUMBER_DIR)
172 LIBDECNUMBER_CFLAGS = -I$(LIBDECNUMBER_DIR) -I$(LIBDECNUMBER_SRC)
173
174 # Where is the READLINE library?  Typically in ../readline.
175 READLINE_DIR = ../readline
176 READLINE_SRC = $(srcdir)/$(READLINE_DIR)
177 READLINE = @READLINE@
178 READLINE_DEPS = @READLINE_DEPS@
179 READLINE_CFLAGS = @READLINE_CFLAGS@
180
181 # Where is expat?  This will be empty if expat was not available.
182 LIBEXPAT = @LIBEXPAT@
183
184 # Where is lzma?  This will be empty if lzma was not available.
185 LIBLZMA = @LIBLZMA@
186
187 # Where is libbabeltrace? This will be empty if lbabeltrace was not
188 # available.
189 LIBBABELTRACE = @LIBBABELTRACE@
190
191 # Where is libipt?  This will be empty if libipt was not available.
192 LIBIPT = @LIBIPT@
193
194 # Where is libmpfr?  This will be empty if libmpfr was not available.
195 LIBMPFR = @LIBMPFR@
196
197 # GNU source highlight library.
198 SRCHIGH_LIBS = @SRCHIGH_LIBS@
199 SRCHIGH_CFLAGS = @SRCHIGH_CFLAGS@
200
201 WARN_CFLAGS = @WARN_CFLAGS@
202 WERROR_CFLAGS = @WERROR_CFLAGS@
203 GDB_WARN_CFLAGS = $(WARN_CFLAGS)
204 GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
205
206 RDYNAMIC = @RDYNAMIC@
207
208 # Where is the INTL library?  Typically in ../intl.
209 INTL = @LIBINTL@
210 INTL_DEPS = @LIBINTL_DEP@
211 INTL_CFLAGS = @INCINTL@
212
213 # Where is the ICONV library?  This will be empty if in libc or not available.
214 LIBICONV = @LIBICONV@
215
216 # Did the user give us a --with-gdb-datadir option?
217 GDB_DATADIR = @GDB_DATADIR@
218
219 # Code signing.
220 CODESIGN = codesign
221 CODESIGN_CERT = @CODESIGN_CERT@
222
223 # Flags to pass to gdb when invoked with "make run".
224 GDBFLAGS =
225
226 # Helper code from gnulib.
227 GNULIB_BUILDDIR = ../gnulib
228 LIBGNU = $(GNULIB_BUILDDIR)/import/libgnu.a
229 INCGNU = -I$(srcdir)/../gnulib/import -I$(GNULIB_BUILDDIR)/import
230
231 #
232 # CLI sub directory definitons
233 #
234 SUBDIR_CLI_SRCS = \
235         cli/cli-cmds.c \
236         cli/cli-decode.c \
237         cli/cli-dump.c \
238         cli/cli-interp.c \
239         cli/cli-logging.c \
240         cli/cli-option.c \
241         cli/cli-script.c \
242         cli/cli-setshow.c \
243         cli/cli-style.c \
244         cli/cli-utils.c
245
246 SUBDIR_CLI_OBS = $(patsubst %.c,%.o,$(SUBDIR_CLI_SRCS))
247
248 #
249 # MI sub directory definitons
250 #
251 SUBDIR_MI_SRCS = \
252         mi/mi-cmd-break.c \
253         mi/mi-cmd-catch.c \
254         mi/mi-cmd-disas.c \
255         mi/mi-cmd-env.c \
256         mi/mi-cmd-file.c \
257         mi/mi-cmd-info.c \
258         mi/mi-cmd-stack.c \
259         mi/mi-cmd-target.c \
260         mi/mi-cmd-var.c \
261         mi/mi-cmds.c \
262         mi/mi-console.c \
263         mi/mi-getopt.c \
264         mi/mi-interp.c \
265         mi/mi-main.c \
266         mi/mi-out.c \
267         mi/mi-parse.c \
268         mi/mi-symbol-cmds.c
269
270 SUBDIR_MI_OBS = $(patsubst %.c,%.o,$(SUBDIR_MI_SRCS))
271
272 SUBDIR_MI_DEPS =
273 SUBDIR_MI_LDFLAGS =
274 SUBDIR_MI_CFLAGS =
275
276 #
277 # TUI sub directory definitions
278 #
279 SUBDIR_TUI_SRCS = \
280         tui/tui.c \
281         tui/tui-command.c \
282         tui/tui-data.c \
283         tui/tui-disasm.c \
284         tui/tui-file.c \
285         tui/tui-hooks.c \
286         tui/tui-interp.c \
287         tui/tui-io.c \
288         tui/tui-layout.c \
289         tui/tui-out.c \
290         tui/tui-regs.c \
291         tui/tui-source.c \
292         tui/tui-stack.c \
293         tui/tui-win.c \
294         tui/tui-wingeneral.c \
295         tui/tui-winsource.c
296
297 SUBDIR_TUI_OBS = $(patsubst %.c,%.o,$(SUBDIR_TUI_SRCS))
298
299 SUBDIR_TUI_DEPS =
300 SUBDIR_TUI_LDFLAGS =
301 SUBDIR_TUI_CFLAGS = -DTUI=1
302
303 #
304 # GCC Compile support sub-directory definitions
305 #
306 SUBDIR_GCC_COMPILE_SRCS = \
307         compile/compile.c \
308         compile/compile-c-support.c \
309         compile/compile-c-symbols.c \
310         compile/compile-c-types.c \
311         compile/compile-cplus-symbols.c \
312         compile/compile-cplus-types.c \
313         compile/compile-loc2c.c \
314         compile/compile-object-load.c \
315         compile/compile-object-run.c
316
317 SUBDIR_GCC_COMPILE_OBS = $(patsubst %.c,%.o,$(filter %.c,$(SUBDIR_GCC_COMPILE_SRCS)))
318
319 #
320 # Guile sub directory definitons for guile support.
321 #
322 SUBDIR_GUILE_SRCS = \
323         guile/guile.c \
324         guile/scm-arch.c \
325         guile/scm-auto-load.c \
326         guile/scm-block.c \
327         guile/scm-breakpoint.c \
328         guile/scm-cmd.c \
329         guile/scm-disasm.c \
330         guile/scm-exception.c \
331         guile/scm-frame.c \
332         guile/scm-gsmob.c \
333         guile/scm-iterator.c \
334         guile/scm-lazy-string.c \
335         guile/scm-math.c \
336         guile/scm-objfile.c \
337         guile/scm-param.c \
338         guile/scm-ports.c \
339         guile/scm-pretty-print.c \
340         guile/scm-progspace.c \
341         guile/scm-safe-call.c \
342         guile/scm-string.c \
343         guile/scm-symbol.c \
344         guile/scm-symtab.c \
345         guile/scm-type.c \
346         guile/scm-utils.c \
347         guile/scm-value.c
348
349 SUBDIR_GUILE_OBS = $(patsubst %.c,%.o,$(SUBDIR_GUILE_SRCS))
350
351 SUBDIR_GUILE_DEPS =
352 SUBDIR_GUILE_LDFLAGS =
353 SUBDIR_GUILE_CFLAGS =
354
355 #
356 # python sub directory definitons
357 #
358 SUBDIR_PYTHON_SRCS = \
359         python/py-arch.c \
360         python/py-auto-load.c \
361         python/py-block.c \
362         python/py-bpevent.c \
363         python/py-breakpoint.c \
364         python/py-cmd.c \
365         python/py-continueevent.c \
366         python/py-event.c \
367         python/py-evtregistry.c \
368         python/py-evts.c \
369         python/py-exitedevent.c \
370         python/py-finishbreakpoint.c \
371         python/py-frame.c \
372         python/py-framefilter.c \
373         python/py-function.c \
374         python/py-gdb-readline.c \
375         python/py-inferior.c \
376         python/py-infevents.c \
377         python/py-infthread.c \
378         python/py-instruction.c \
379         python/py-lazy-string.c \
380         python/py-linetable.c \
381         python/py-newobjfileevent.c \
382         python/py-objfile.c \
383         python/py-param.c \
384         python/py-prettyprint.c \
385         python/py-progspace.c \
386         python/py-record.c \
387         python/py-record-btrace.c \
388         python/py-record-full.c \
389         python/py-signalevent.c \
390         python/py-stopevent.c \
391         python/py-symbol.c \
392         python/py-symtab.c \
393         python/py-threadevent.c \
394         python/py-type.c \
395         python/py-unwind.c \
396         python/py-utils.c \
397         python/py-value.c \
398         python/py-varobj.c \
399         python/py-xmethods.c \
400         python/python.c
401
402 SUBDIR_PYTHON_OBS = $(patsubst %.c,%.o,$(SUBDIR_PYTHON_SRCS))
403
404 SUBDIR_PYTHON_DEPS =
405 SUBDIR_PYTHON_LDFLAGS =
406 SUBDIR_PYTHON_CFLAGS =
407
408 SUBDIR_UNITTESTS_SRCS = \
409         unittests/array-view-selftests.c \
410         unittests/child-path-selftests.c \
411         unittests/cli-utils-selftests.c \
412         unittests/common-utils-selftests.c \
413         unittests/copy_bitwise-selftests.c \
414         unittests/environ-selftests.c \
415         unittests/format_pieces-selftests.c \
416         unittests/function-view-selftests.c \
417         unittests/lookup_name_info-selftests.c \
418         unittests/memory-map-selftests.c \
419         unittests/memrange-selftests.c \
420         unittests/offset-type-selftests.c \
421         unittests/observable-selftests.c \
422         unittests/optional-selftests.c \
423         unittests/parse-connection-spec-selftests.c \
424         unittests/ptid-selftests.c \
425         unittests/mkdir-recursive-selftests.c \
426         unittests/rsp-low-selftests.c \
427         unittests/scoped_fd-selftests.c \
428         unittests/scoped_mmap-selftests.c \
429         unittests/scoped_restore-selftests.c \
430         unittests/string_view-selftests.c \
431         unittests/style-selftests.c \
432         unittests/tracepoint-selftests.c \
433         unittests/unpack-selftests.c \
434         unittests/utils-selftests.c \
435         unittests/xml-utils-selftests.c
436
437 SUBDIR_UNITTESTS_OBS = $(patsubst %.c,%.o,$(SUBDIR_UNITTESTS_SRCS))
438
439 SUBDIR_TARGET_SRCS = target/waitstatus.c
440 SUBDIR_TARGET_OBS = $(patsubst %.c,%.o,$(SUBDIR_TARGET_SRCS))
441
442
443 # Opcodes currently live in one of two places.  Either they are in the
444 # opcode library, typically ../opcodes, or they are in a header file
445 # in INCLUDE_DIR.
446 # Where is the "-lopcodes" library, with (some of) the opcode tables and
447 # disassemblers?
448 OPCODES_DIR = ../opcodes
449 OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
450 OPCODES = $(OPCODES_DIR)/libopcodes.a
451 # Where are the other opcode tables which only have header file
452 # versions?
453 OP_INCLUDE = $(INCLUDE_DIR)/opcode
454 OPCODES_CFLAGS = -I$(OP_INCLUDE)
455
456 # The simulator is usually nonexistent; targets that include one
457 # should set this to list all the .o or .a files to be linked in.
458 SIM = @SIM@
459
460 WIN32LIBS = @WIN32LIBS@
461
462 # Tcl et al cflags and libraries
463 TCL = @TCL_LIBRARY@
464 TCL_CFLAGS = @TCL_INCLUDE@
465 GDBTKLIBS = @GDBTKLIBS@
466 # Extra flags that the GDBTK files need:
467 GDBTK_CFLAGS = @GDBTK_CFLAGS@
468
469 TK = @TK_LIBRARY@
470 TK_CFLAGS = @TK_INCLUDE@
471
472 X11_CFLAGS = @TK_XINCLUDES@
473 X11_LDFLAGS =
474 X11_LIBS =
475
476 WIN32LDAPP = @WIN32LDAPP@
477
478 LIBGUI = @LIBGUI@
479 GUI_CFLAGS_X = @GUI_CFLAGS_X@
480 IDE_CFLAGS = $(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
481
482 ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)
483
484 # The version of gdbtk we're building. This should be kept
485 # in sync with GDBTK_VERSION and friends in gdbtk.h.
486 GDBTK_VERSION = 1.0
487 GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
488
489 # Gdbtk requires an absolute path to the source directory or
490 # the testsuite won't run properly.
491 GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
492
493 SUBDIR_GDBTK_OBS = \
494         gdbtk.o \
495         gdbtk-bp.o \
496         gdbtk-cmds.o \
497         gdbtk-hooks.o \
498         gdbtk-interp.o \
499         gdbtk-register.o \
500         gdbtk-stack.o \
501         gdbtk-varobj.o \
502         gdbtk-wrapper.o
503
504 SUBDIR_GDBTK_SRCS = \
505         gdbtk/generic/gdbtk.c \
506         gdbtk/generic/gdbtk-bp.c \
507         gdbtk/generic/gdbtk-cmds.c \
508         gdbtk/generic/gdbtk-hooks.c \
509         gdbtk/generic/gdbtk-interp.c \
510         gdbtk/generic/gdbtk-main.c \
511         gdbtk/generic/gdbtk-register.c \
512         gdbtk/generic/gdbtk-stack.c \
513         gdbtk/generic/gdbtk-varobj.c \
514         gdbtk/generic/gdbtk-wrapper.c
515
516 SUBDIR_GDBTK_DEPS = $(LIBGUI) $(TCL_DEPS) $(TK_DEPS)
517 SUBDIR_GDBTK_LDFLAGS =
518 SUBDIR_GDBTK_CFLAGS = -DGDBTK
519
520 CONFIG_OBS = @CONFIG_OBS@
521 CONFIG_SRCS = @CONFIG_SRCS@
522 CONFIG_DEPS = @CONFIG_DEPS@
523 CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
524 ENABLE_CFLAGS = @ENABLE_CFLAGS@
525 CONFIG_ALL = @CONFIG_ALL@
526 CONFIG_CLEAN = @CONFIG_CLEAN@
527 CONFIG_INSTALL = @CONFIG_INSTALL@
528 CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
529 HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
530
531 CONFIG_SRC_SUBDIR = arch cli mi gdbsupport compile tui unittests guile python \
532         target nat
533 CONFIG_DEP_SUBDIR = $(addsuffix /$(DEPDIR),$(CONFIG_SRC_SUBDIR))
534
535 # -I. for config files.
536 # -I$(srcdir) for gdb internal headers.
537 # -I$(srcdir)/config for more generic config files.
538
539 # It is also possible that you will need to add -I/usr/include/sys if
540 # your system doesn't have fcntl.h in /usr/include (which is where it
541 # should be according to Posix).
542 DEFS = @DEFS@
543 GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config \
544         -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
545
546 # MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
547 GLOBAL_CFLAGS = $(MH_CFLAGS)
548
549 PROFILE_CFLAGS = @PROFILE_CFLAGS@
550
551 # These are specifically reserved for setting from the command line
552 # when running make.  I.E.: "make CFLAGS=-Wmissing-prototypes".
553 CFLAGS = @CFLAGS@
554 CXXFLAGS = @CXXFLAGS@
555 CPPFLAGS = @CPPFLAGS@
556
557 # Set by configure, for e.g. expat.  Python installations are such that
558 # C headers are included using their basename (for example, we #include
559 # <Python.h> rather than, say, <python/Python.h>).  Since the file names
560 # are sometimes a little generic, we think that the risk of collision
561 # with other header files is high.  If that happens, we try to mitigate
562 # a bit the consequences by putting the Python includes last in the list.
563 INTERNAL_CPPFLAGS = $(CPPFLAGS) @GUILE_CPPFLAGS@ @PYTHON_CPPFLAGS@
564
565 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
566 INTERNAL_CFLAGS_BASE = \
567         $(CXXFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
568         $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) $(ZLIBINC) \
569         $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
570         $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS) \
571         $(SRCHIGH_CFLAGS)
572 INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
573 INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
574
575 # LDFLAGS is specifically reserved for setting from the command line
576 # when running make.
577 LDFLAGS = @LDFLAGS@
578
579 # Profiling options need to go here to work.
580 # I think it's perfectly reasonable for a user to set -pg in CFLAGS
581 # and have it work; that's why CFLAGS is here.
582 # PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
583 INTERNAL_LDFLAGS = \
584         $(CXXFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) \
585         $(LDFLAGS) $(CONFIG_LDFLAGS)
586
587 # Libraries and corresponding dependencies for compiling gdb.
588 # XM_CLIBS, defined in *config files, have host-dependent libs.
589 # LIBIBERTY appears twice on purpose.
590 CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(ZLIB) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
591         $(XM_CLIBS) $(GDBTKLIBS) \
592         @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \
593         $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \
594         $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV) $(LIBMPFR) \
595         $(SRCHIGH_LIBS)
596 CDEPS = $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
597         $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
598
599 DIST = gdb
600
601 RUNTEST = runtest
602 RUNTESTFLAGS =
603
604 # XML files to build in to GDB.
605 XMLFILES = \
606         $(srcdir)/features/btrace.dtd \
607         $(srcdir)/features/btrace-conf.dtd \
608         $(srcdir)/features/gdb-target.dtd \
609         $(srcdir)/features/library-list.dtd \
610         $(srcdir)/features/library-list-aix.dtd \
611         $(srcdir)/features/library-list-svr4.dtd \
612         $(srcdir)/features/osdata.dtd \
613         $(srcdir)/features/threads.dtd \
614         $(srcdir)/features/traceframe-info.dtd \
615         $(srcdir)/features/xinclude.dtd
616
617 # Build the ser-*.o files the host supports.  This includes ser-unix.o
618 # for any system that supports a POSIX interface to the serial port.
619 # See configure.ac.
620 SER_HARDWIRE = @SER_HARDWIRE@
621
622 # This is remote-sim.o if a simulator is to be linked in.
623 SIM_OBS = @SIM_OBS@
624
625 # Target-dependent object files.
626 TARGET_OBS = @TARGET_OBS@
627
628 # All target-dependent objects files that require 64-bit CORE_ADDR
629 # (used with --enable-targets=all --enable-64-bit-bfd).
630 ALL_64_TARGET_OBS = \
631         aarch64-fbsd-tdep.o \
632         aarch64-linux-tdep.o \
633         aarch64-newlib-tdep.o \
634         aarch64-ravenscar-thread.o \
635         aarch64-tdep.o \
636         alpha-bsd-tdep.o \
637         alpha-linux-tdep.o \
638         alpha-mdebug-tdep.o \
639         alpha-nbsd-tdep.o \
640         alpha-obsd-tdep.o \
641         alpha-tdep.o \
642         amd64-darwin-tdep.o \
643         amd64-dicos-tdep.o \
644         amd64-fbsd-tdep.o \
645         amd64-linux-tdep.o \
646         amd64-nbsd-tdep.o \
647         amd64-obsd-tdep.o \
648         amd64-sol2-tdep.o \
649         amd64-tdep.o \
650         amd64-windows-tdep.o \
651         arch/aarch64.o \
652         arch/aarch64-insn.o \
653         arch/amd64.o \
654         ia64-linux-tdep.o \
655         ia64-tdep.o \
656         ia64-vms-tdep.o \
657         mips64-obsd-tdep.o \
658         sparc64-fbsd-tdep.o \
659         sparc64-linux-tdep.o \
660         sparc64-nbsd-tdep.o \
661         sparc64-obsd-tdep.o \
662         sparc64-sol2-tdep.o \
663         sparc64-tdep.o
664
665 # All other target-dependent objects files (used with --enable-targets=all).
666 ALL_TARGET_OBS = \
667         aarch32-tdep.o \
668         arc-tdep.o \
669         arch/aarch32.o \
670         arch/arm.o \
671         arch/arm-get-next-pcs.o \
672         arch/arm-linux.o \
673         arch/i386.o \
674         arch/ppc-linux-common.o \
675         arch/riscv.o \
676         arm-bsd-tdep.o \
677         arm-fbsd-tdep.o \
678         arm-linux-tdep.o \
679         arm-nbsd-tdep.o \
680         arm-obsd-tdep.o \
681         arm-pikeos-tdep.o \
682         arm-symbian-tdep.o \
683         arm-tdep.o \
684         arm-wince-tdep.o \
685         avr-tdep.o \
686         bfin-linux-tdep.o \
687         bfin-tdep.o \
688         bsd-uthread.o \
689         cris-linux-tdep.o \
690         cris-tdep.o \
691         csky-linux-tdep.o \
692         csky-tdep.o \
693         dicos-tdep.o \
694         fbsd-tdep.o \
695         frv-linux-tdep.o \
696         frv-tdep.o \
697         ft32-tdep.o \
698         glibc-tdep.o \
699         h8300-tdep.o \
700         hppa-bsd-tdep.o \
701         hppa-linux-tdep.o \
702         hppa-nbsd-tdep.o \
703         hppa-obsd-tdep.o \
704         hppa-tdep.o \
705         i386-bsd-tdep.o \
706         i386-cygwin-tdep.o \
707         i386-darwin-tdep.o \
708         i386-dicos-tdep.o \
709         i386-fbsd-tdep.o \
710         i386-gnu-tdep.o \
711         i386-go32-tdep.o \
712         i386-linux-tdep.o \
713         i386-nbsd-tdep.o \
714         i386-nto-tdep.o \
715         i386-obsd-tdep.o \
716         i386-sol2-tdep.o \
717         i386-tdep.o \
718         i387-tdep.o \
719         iq2000-tdep.o \
720         linux-record.o \
721         linux-tdep.o \
722         lm32-tdep.o \
723         m32c-tdep.o \
724         m32r-linux-tdep.o \
725         m32r-tdep.o \
726         m68hc11-tdep.o \
727         m68k-bsd-tdep.o \
728         m68k-linux-tdep.o \
729         m68k-tdep.o \
730         mep-tdep.o \
731         microblaze-linux-tdep.o \
732         microblaze-tdep.o \
733         mips-fbsd-tdep.o \
734         mips-linux-tdep.o \
735         mips-nbsd-tdep.o \
736         mips-sde-tdep.o \
737         mips-tdep.o \
738         mn10300-linux-tdep.o \
739         mn10300-tdep.o \
740         moxie-tdep.o \
741         msp430-tdep.o \
742         nbsd-tdep.o \
743         nds32-tdep.o \
744         nios2-linux-tdep.o \
745         nios2-tdep.o \
746         nto-tdep.o \
747         obsd-tdep.o \
748         or1k-linux-tdep.o \
749         or1k-tdep.o \
750         ppc-fbsd-tdep.o \
751         ppc-linux-tdep.o \
752         ppc-nbsd-tdep.o \
753         ppc-obsd-tdep.o \
754         ppc-ravenscar-thread.o \
755         ppc-sysv-tdep.o \
756         ppc64-tdep.o \
757         ravenscar-thread.o \
758         riscv-fbsd-tdep.o \
759         riscv-linux-tdep.o \
760         riscv-tdep.o \
761         rl78-tdep.o \
762         rs6000-aix-tdep.o \
763         rs6000-lynx178-tdep.o \
764         rs6000-tdep.o \
765         rx-tdep.o \
766         s12z-tdep.o \
767         s390-linux-tdep.o \
768         s390-tdep.o \
769         score-tdep.o \
770         sh-linux-tdep.o \
771         sh-nbsd-tdep.o \
772         sh-tdep.o \
773         sol2-tdep.o \
774         solib-aix.o \
775         solib-darwin.o \
776         solib-dsbt.o \
777         solib-frv.o \
778         solib-spu.o \
779         solib-svr4.o \
780         sparc-linux-tdep.o \
781         sparc-nbsd-tdep.o \
782         sparc-obsd-tdep.o \
783         sparc-ravenscar-thread.o \
784         sparc-sol2-tdep.o \
785         sparc-tdep.o \
786         spu-multiarch.o \
787         spu-tdep.o \
788         symfile-mem.o \
789         tic6x-linux-tdep.o \
790         tic6x-tdep.o \
791         tilegx-linux-tdep.o \
792         tilegx-tdep.o \
793         v850-tdep.o \
794         vax-nbsd-tdep.o \
795         vax-tdep.o \
796         windows-tdep.o \
797         x86-tdep.o \
798         xcoffread.o \
799         xstormy16-tdep.o \
800         xtensa-config.o \
801         xtensa-linux-tdep.o \
802         xtensa-tdep.o
803
804 # The following native-target dependent variables are defined on
805 # configure.nat.
806 NAT_FILE = @NAT_FILE@
807 NATDEPFILES = @NATDEPFILES@
808 NAT_CDEPS = @NAT_CDEPS@
809 LOADLIBES = @LOADLIBES@
810 MH_CFLAGS = @MH_CFLAGS@
811 XM_CLIBS = @XM_CLIBS@
812 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
813 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
814
815 # Native-target dependent makefile fragment comes in here.
816 @nat_makefile_frag@
817
818 # End of native-target dependent variables.
819
820 FLAGS_TO_PASS = \
821         "prefix=$(prefix)" \
822         "exec_prefix=$(exec_prefix)" \
823         "infodir=$(infodir)" \
824         "datarootdir=$(datarootdir)" \
825         "docdir=$(docdir)" \
826         "htmldir=$(htmldir)" \
827         "pdfdir=$(pdfdir)" \
828         "libdir=$(libdir)" \
829         "mandir=$(mandir)" \
830         "datadir=$(datadir)" \
831         "includedir=$(includedir)" \
832         "against=$(against)" \
833         "DESTDIR=$(DESTDIR)" \
834         "AR=$(AR)" \
835         "AR_FLAGS=$(AR_FLAGS)" \
836         "CC=$(CC)" \
837         "CFLAGS=$(CFLAGS)" \
838         "CXX=$(CXX)" \
839         "CXX_DIALECT=$(CXX_DIALECT)" \
840         "CXXFLAGS=$(CXXFLAGS)" \
841         "DLLTOOL=$(DLLTOOL)" \
842         "LDFLAGS=$(LDFLAGS)" \
843         "RANLIB=$(RANLIB)" \
844         "MAKEINFO=$(MAKEINFO)" \
845         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
846         "MAKEINFO_EXTRA_FLAGS=$(MAKEINFO_EXTRA_FLAGS)" \
847         "MAKEHTML=$(MAKEHTML)" \
848         "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
849         "INSTALL=$(INSTALL)" \
850         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
851         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
852         "INSTALL_DATA=$(INSTALL_DATA)" \
853         "RUNTEST=$(RUNTEST)" \
854         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
855
856 # Flags that we pass when building the testsuite.
857
858 # empty for native, $(target_alias)/ for cross
859 target_subdir = @target_subdir@
860
861 CC_FOR_TARGET = ` \
862   if [ -f $${rootme}/../gcc/xgcc ] ; then \
863     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
864       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/; \
865     else \
866       echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
867     fi; \
868   else \
869     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
870       echo $(CC); \
871     else \
872       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
873     fi; \
874   fi`
875
876 CXX_FOR_TARGET = ` \
877   if [ -f $${rootme}/../gcc/xg++ ] ; then \
878     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
879       echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
880     else \
881       echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
882     fi; \
883   else \
884     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
885       echo $(CXX); \
886     else \
887       t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
888     fi; \
889   fi`
890
891 # The use of $$(x_FOR_TARGET) reduces the command line length by not
892 # duplicating the lengthy definition.
893 TARGET_FLAGS_TO_PASS = \
894         "prefix=$(prefix)" \
895         "exec_prefix=$(exec_prefix)" \
896         "against=$(against)" \
897         'CC=$$(CC_FOR_TARGET)' \
898         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
899         "CFLAGS=$(CFLAGS)" \
900         'CXX=$$(CXX_FOR_TARGET)' \
901         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
902         "CXXFLAGS=$(CXXFLAGS)" \
903         "INSTALL=$(INSTALL)" \
904         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
905         "INSTALL_DATA=$(INSTALL_DATA)" \
906         "MAKEINFO=$(MAKEINFO)" \
907         "MAKEHTML=$(MAKEHTML)" \
908         "RUNTEST=$(RUNTEST)" \
909         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
910         "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
911         "TESTS=$(TESTS)"
912
913 # All source files that go into linking GDB.
914
915 # Files that should wind up in SFILES and whose corresponding .o
916 # should be in COMMON_OBS.
917 COMMON_SFILES = \
918         ada-lang.c \
919         ada-tasks.c \
920         ada-typeprint.c \
921         ada-valprint.c \
922         ada-varobj.c \
923         addrmap.c \
924         agent.c \
925         alloc.c \
926         annotate.c \
927         arch-utils.c \
928         auto-load.c \
929         auxv.c \
930         ax-gdb.c \
931         ax-general.c \
932         bcache.c \
933         bfd-target.c \
934         block.c \
935         blockframe.c \
936         break-catch-sig.c \
937         break-catch-syscall.c \
938         break-catch-throw.c \
939         breakpoint.c \
940         btrace.c \
941         build-id.c \
942         buildsym-legacy.c \
943         buildsym.c \
944         c-lang.c \
945         c-typeprint.c \
946         c-valprint.c \
947         c-varobj.c \
948         charset.c \
949         cli-out.c \
950         coff-pe-read.c \
951         coffread.c \
952         gdbsupport/agent.c \
953         gdbsupport/btrace-common.c \
954         gdbsupport/buffer.c \
955         gdbsupport/cleanups.c \
956         gdbsupport/common-debug.c \
957         gdbsupport/common-exceptions.c \
958         gdbsupport/common-regcache.c \
959         gdbsupport/common-utils.c \
960         gdbsupport/errors.c \
961         gdbsupport/environ.c \
962         gdbsupport/fileio.c \
963         gdbsupport/filestuff.c \
964         gdbsupport/format.c \
965         gdbsupport/job-control.c \
966         gdbsupport/gdb_tilde_expand.c \
967         gdbsupport/gdb_vecs.c \
968         gdbsupport/netstuff.c \
969         gdbsupport/new-op.c \
970         gdbsupport/pathstuff.c \
971         gdbsupport/print-utils.c \
972         gdbsupport/ptid.c \
973         gdbsupport/rsp-low.c \
974         gdbsupport/run-time-clock.c \
975         gdbsupport/scoped_mmap.c \
976         gdbsupport/signals.c \
977         gdbsupport/signals-state-save-restore.c \
978         gdbsupport/tdesc.c \
979         gdbsupport/vec.c \
980         gdbsupport/xml-utils.c \
981         complaints.c \
982         completer.c \
983         continuations.c \
984         copying.c \
985         corefile.c \
986         corelow.c \
987         cp-abi.c \
988         cp-namespace.c \
989         cp-support.c \
990         cp-valprint.c \
991         ctf.c \
992         d-lang.c \
993         d-namespace.c \
994         d-valprint.c \
995         dbxread.c \
996         dcache.c \
997         debug.c \
998         demangle.c \
999         dictionary.c \
1000         disasm.c \
1001         disasm-selftests.c \
1002         dummy-frame.c \
1003         dwarf-index-cache.c \
1004         dwarf-index-common.c \
1005         dwarf-index-write.c \
1006         dwarf2-frame.c \
1007         dwarf2-frame-tailcall.c \
1008         dwarf2expr.c \
1009         dwarf2loc.c \
1010         dwarf2read.c \
1011         eval.c \
1012         event-loop.c \
1013         event-top.c \
1014         exceptions.c \
1015         exec.c \
1016         expprint.c \
1017         extension.c \
1018         f-lang.c \
1019         f-typeprint.c \
1020         f-valprint.c \
1021         filename-seen-cache.c \
1022         filesystem.c \
1023         findcmd.c \
1024         findvar.c \
1025         frame.c \
1026         frame-base.c \
1027         frame-unwind.c \
1028         gcore.c \
1029         gdb_bfd.c \
1030         gdb-dlfcn.c \
1031         gdb_obstack.c \
1032         gdb_regex.c \
1033         gdb_usleep.c \
1034         gdbarch.c \
1035         gdbarch-selftests.c \
1036         gdbtypes.c \
1037         gnu-v2-abi.c \
1038         gnu-v3-abi.c \
1039         go-lang.c \
1040         go-typeprint.c \
1041         go-valprint.c \
1042         inf-child.c \
1043         inf-loop.c \
1044         infcall.c \
1045         infcmd.c \
1046         inferior.c \
1047         inflow.c \
1048         infrun.c \
1049         inline-frame.c \
1050         interps.c \
1051         jit.c \
1052         language.c \
1053         linespec.c \
1054         location.c \
1055         m2-lang.c \
1056         m2-typeprint.c \
1057         m2-valprint.c \
1058         macrocmd.c \
1059         macroexp.c \
1060         macroscope.c \
1061         macrotab.c \
1062         main.c \
1063         maint.c \
1064         maint-test-options.c \
1065         maint-test-settings.c \
1066         mdebugread.c \
1067         mem-break.c \
1068         memattr.c \
1069         memory-map.c \
1070         memrange.c \
1071         minidebug.c \
1072         minsyms.c \
1073         mipsread.c \
1074         namespace.c \
1075         objc-lang.c \
1076         objfiles.c \
1077         observable.c \
1078         opencl-lang.c \
1079         osabi.c \
1080         osdata.c \
1081         p-lang.c \
1082         p-typeprint.c \
1083         p-valprint.c \
1084         parse.c \
1085         printcmd.c \
1086         probe.c \
1087         process-stratum-target.c \
1088         producer.c \
1089         progspace.c \
1090         progspace-and-thread.c \
1091         prologue-value.c \
1092         psymtab.c \
1093         record.c \
1094         record-btrace.c \
1095         record-full.c \
1096         regcache.c \
1097         regcache-dump.c \
1098         reggroups.c \
1099         registry.c \
1100         remote.c \
1101         remote-fileio.c \
1102         remote-notif.c \
1103         reverse.c \
1104         rust-lang.c \
1105         sentinel-frame.c \
1106         ser-event.c \
1107         serial.c \
1108         skip.c \
1109         solib.c \
1110         solib-target.c \
1111         source.c \
1112         source-cache.c \
1113         stabsread.c \
1114         stack.c \
1115         std-regs.c \
1116         symfile.c \
1117         symfile-debug.c \
1118         symmisc.c \
1119         symtab.c \
1120         target.c \
1121         target-dcache.c \
1122         target-descriptions.c \
1123         target-memory.c \
1124         test-target.c \
1125         thread.c \
1126         thread-iter.c \
1127         tid-parse.c \
1128         top.c \
1129         tracefile.c \
1130         tracefile-tfile.c \
1131         tracepoint.c \
1132         trad-frame.c \
1133         tramp-frame.c \
1134         target-float.c \
1135         type-stack.c \
1136         typeprint.c \
1137         ui-file.c \
1138         ui-out.c \
1139         ui-style.c \
1140         user-regs.c \
1141         utils.c \
1142         valarith.c \
1143         valops.c \
1144         valprint.c \
1145         value.c \
1146         varobj.c \
1147         xml-support.c \
1148         xml-syscall.c \
1149         xml-tdesc.c
1150
1151 # Links made at configuration time should not be specified here, since
1152 # SFILES is used in building the distribution archive.
1153 SFILES = \
1154         ada-exp.y \
1155         arch/i386.c \
1156         c-exp.y \
1157         cp-name-parser.y \
1158         d-exp.y \
1159         dtrace-probe.c \
1160         elfread.c \
1161         f-exp.y \
1162         gdb.c \
1163         go-exp.y \
1164         m2-exp.y \
1165         p-exp.y \
1166         proc-service.list \
1167         rust-exp.y \
1168         ser-base.c \
1169         ser-unix.c \
1170         sol-thread.c \
1171         stap-probe.c \
1172         stub-termcap.c \
1173         symfile-mem.c \
1174         ui-file.h \
1175         mi/mi-common.c \
1176         $(SUBDIR_CLI_SRCS) \
1177         $(SUBDIR_TARGET_SRCS) \
1178         $(COMMON_SFILES) \
1179         $(SUBDIR_GCC_COMPILE_SRCS)
1180
1181 # Header files that need to have srcdir added.  Note that in the cases
1182 # where we use a macro like $(gdbcmd_h), things are carefully arranged
1183 # so that each .h file is listed exactly once (M-x tags-search works
1184 # wrong if TAGS has files twice).  Because this is tricky to get
1185 # right, it is probably easiest just to list .h files here directly.
1186
1187 HFILES_NO_SRCDIR = \
1188         aarch32-tdep.h \
1189         aarch64-ravenscar-thread.h \
1190         aarch64-tdep.h \
1191         ada-lang.h \
1192         addrmap.h \
1193         alpha-bsd-tdep.h \
1194         alpha-tdep.h \
1195         amd64-darwin-tdep.h \
1196         amd64-linux-tdep.h \
1197         amd64-nat.h \
1198         amd64-tdep.h \
1199         annotate.h \
1200         arc-tdep.h \
1201         arch-utils.h \
1202         arm-linux-tdep.h \
1203         arm-tdep.h \
1204         auto-load.h \
1205         auxv.h \
1206         ax.h \
1207         ax-gdb.h \
1208         bcache.h \
1209         bfd-target.h \
1210         bfin-tdep.h \
1211         block.h \
1212         breakpoint.h \
1213         bsd-kvm.h \
1214         bsd-uthread.h \
1215         build-id.h \
1216         buildsym-legacy.h \
1217         buildsym.h \
1218         c-lang.h \
1219         charset.h \
1220         charset-list.h \
1221         cli-out.h \
1222         coff-pe-read.h \
1223         command.h \
1224         complaints.h \
1225         completer.h \
1226         cp-abi.h \
1227         cp-support.h \
1228         csky-tdep.h \
1229         ctf.h \
1230         d-lang.h \
1231         darwin-nat.h \
1232         dcache.h \
1233         defs.h \
1234         dicos-tdep.h \
1235         dictionary.h \
1236         disasm.h \
1237         dummy-frame.h \
1238         dwarf-index-cache.h \
1239         dwarf-index-common.h \
1240         dwarf2-frame.h \
1241         dwarf2-frame-tailcall.h \
1242         dwarf2expr.h \
1243         dwarf2loc.h \
1244         dwarf2read.h \
1245         event-loop.h \
1246         event-top.h \
1247         exceptions.h \
1248         exec.h \
1249         expression.h \
1250         extension.h \
1251         extension-priv.h \
1252         f-lang.h \
1253         fbsd-nat.h \
1254         fbsd-tdep.h \
1255         filesystem.h \
1256         frame.h \
1257         frame-base.h \
1258         frame-unwind.h \
1259         frv-tdep.h \
1260         ft32-tdep.h \
1261         gcore.h \
1262         gdb_bfd.h \
1263         gdb_curses.h \
1264         gdb-dlfcn.h \
1265         gdb_expat.h \
1266         gdb_obstack.h \
1267         gdb_proc_service.h \
1268         gdb_regex.h \
1269         gdb_select.h \
1270         gdb-stabs.h \
1271         gdb_usleep.h \
1272         gdb_vfork.h \
1273         gdb_wchar.h \
1274         gdbarch.h \
1275         gdbcmd.h \
1276         gdbcore.h \
1277         gdbthread.h \
1278         gdbtypes.h \
1279         glibc-tdep.h \
1280         gnu-nat.h \
1281         go-lang.h \
1282         gregset.h \
1283         hppa-bsd-tdep.h \
1284         hppa-linux-offsets.h \
1285         hppa-tdep.h \
1286         i386-bsd-nat.h \
1287         i386-darwin-tdep.h \
1288         i386-linux-nat.h \
1289         i386-linux-tdep.h \
1290         i386-tdep.h \
1291         i387-tdep.h \
1292         ia64-libunwind-tdep.h \
1293         ia64-tdep.h \
1294         inf-child.h \
1295         inf-loop.h \
1296         inf-ptrace.h \
1297         infcall.h \
1298         inferior.h \
1299         inflow.h \
1300         inline-frame.h \
1301         interps.h \
1302         jit.h \
1303         language.h \
1304         linespec.h \
1305         linux-fork.h \
1306         linux-nat.h \
1307         linux-record.h \
1308         linux-tdep.h \
1309         location.h \
1310         m2-lang.h \
1311         m32r-tdep.h \
1312         m68k-tdep.h \
1313         macroexp.h \
1314         macroscope.h \
1315         macrotab.h \
1316         main.h \
1317         mdebugread.h \
1318         memattr.h \
1319         memory-map.h \
1320         memrange.h \
1321         microblaze-tdep.h \
1322         mips-linux-tdep.h \
1323         mips-nbsd-tdep.h \
1324         mips-tdep.h \
1325         mn10300-tdep.h \
1326         moxie-tdep.h \
1327         nbsd-nat.h \
1328         nbsd-tdep.h \
1329         nds32-tdep.h \
1330         nios2-tdep.h \
1331         nto-tdep.h \
1332         objc-lang.h \
1333         objfiles.h \
1334         obsd-nat.h \
1335         obsd-tdep.h \
1336         osabi.h \
1337         osdata.h \
1338         p-lang.h \
1339         parser-defs.h \
1340         ppc-fbsd-tdep.h \
1341         ppc-linux-tdep.h \
1342         ppc-nbsd-tdep.h \
1343         ppc-obsd-tdep.h \
1344         ppc-ravenscar-thread.h \
1345         ppc-tdep.h \
1346         ppc64-tdep.h \
1347         probe.h \
1348         proc-utils.h \
1349         procfs.h \
1350         progspace.h \
1351         progspace-and-thread.h \
1352         prologue-value.h \
1353         psympriv.h \
1354         psymtab.h \
1355         ravenscar-thread.h \
1356         record.h \
1357         record-full.h \
1358         regcache.h \
1359         reggroups.h \
1360         regset.h \
1361         remote.h \
1362         remote-fileio.h \
1363         remote-notif.h \
1364         riscv-fbsd-tdep.h \
1365         riscv-tdep.h \
1366         rs6000-aix-tdep.h \
1367         rs6000-tdep.h \
1368         s390-linux-tdep.h \
1369         s390-tdep.h \
1370         score-tdep.h \
1371         selftest-arch.h \
1372         sentinel-frame.h \
1373         ser-base.h \
1374         ser-event.h \
1375         ser-tcp.h \
1376         ser-unix.h \
1377         serial.h \
1378         sh-tdep.h \
1379         sim-regno.h \
1380         skip.h \
1381         sol2-tdep.h \
1382         solib.h \
1383         solib-aix.h \
1384         solib-darwin.h \
1385         solib-spu.h \
1386         solib-svr4.h \
1387         solib-target.h \
1388         solist.h \
1389         source.h \
1390         source-cache.h \
1391         sparc-nat.h \
1392         sparc-ravenscar-thread.h \
1393         sparc-tdep.h \
1394         sparc64-tdep.h \
1395         spu-tdep.h \
1396         stabsread.h \
1397         stack.h \
1398         stap-probe.h \
1399         symfile.h \
1400         symtab.h \
1401         target.h \
1402         target-dcache.h \
1403         target-descriptions.h \
1404         terminal.h \
1405         tid-parse.h \
1406         top.h \
1407         tracefile.h \
1408         tracepoint.h \
1409         trad-frame.h \
1410         target-float.h \
1411         tramp-frame.h \
1412         type-stack.h \
1413         typeprint.h \
1414         ui-file.h \
1415         ui-out.h \
1416         ui-style.h \
1417         user-regs.h \
1418         utils.h \
1419         valprint.h \
1420         value.h \
1421         varobj.h \
1422         varobj-iter.h \
1423         vax-tdep.h \
1424         windows-nat.h \
1425         windows-tdep.h \
1426         x86-bsd-nat.h \
1427         x86-linux-nat.h \
1428         x86-nat.h \
1429         xcoffread.h \
1430         xml-support.h \
1431         xml-syscall.h \
1432         xml-tdesc.h \
1433         xtensa-tdep.h \
1434         arch/aarch32.h \
1435         arch/aarch64.h \
1436         arch/aarch64-insn.h \
1437         arch/arm.h \
1438         arch/i386.h \
1439         arch/ppc-linux-common.h \
1440         arch/ppc-linux-tdesc.h \
1441         arch/riscv.h \
1442         cli/cli-cmds.h \
1443         cli/cli-decode.h \
1444         cli/cli-script.h \
1445         cli/cli-setshow.h \
1446         cli/cli-style.h \
1447         cli/cli-utils.h \
1448         gdbsupport/buffer.h \
1449         gdbsupport/cleanups.h \
1450         gdbsupport/common-debug.h \
1451         gdbsupport/common-defs.h \
1452         gdbsupport/common-exceptions.h \
1453         gdbsupport/common-gdbthread.h \
1454         gdbsupport/common-regcache.h \
1455         gdbsupport/common-types.h \
1456         gdbsupport/common-utils.h \
1457         gdbsupport/job-control.h \
1458         gdbsupport/errors.h \
1459         gdbsupport/environ.h \
1460         gdbsupport/fileio.h \
1461         gdbsupport/format.h \
1462         gdbsupport/gdb_assert.h \
1463         gdbsupport/gdb_tilde_expand.h \
1464         gdbsupport/gdb_locale.h \
1465         gdbsupport/gdb_proc_service.h \
1466         gdbsupport/gdb_setjmp.h \
1467         gdbsupport/gdb_signals.h \
1468         gdbsupport/gdb_sys_time.h \
1469         gdbsupport/gdb_vecs.h \
1470         gdbsupport/gdb_wait.h \
1471         gdbsupport/common-inferior.h \
1472         gdbsupport/netstuff.h \
1473         gdbsupport/host-defs.h \
1474         gdbsupport/pathstuff.h \
1475         gdbsupport/print-utils.h \
1476         gdbsupport/ptid.h \
1477         gdbsupport/queue.h \
1478         gdbsupport/rsp-low.h \
1479         gdbsupport/run-time-clock.h \
1480         gdbsupport/signals-state-save-restore.h \
1481         gdbsupport/symbol.h \
1482         gdbsupport/tdesc.h \
1483         gdbsupport/vec.h \
1484         gdbsupport/version.h \
1485         gdbsupport/x86-xstate.h \
1486         gdbsupport/xml-utils.h \
1487         compile/compile.h \
1488         compile/compile-c.h \
1489         compile/compile-cplus.h \
1490         compile/compile-internal.h \
1491         compile/compile-object-load.h \
1492         compile/compile-object-run.h \
1493         compile/gcc-c-plugin.h \
1494         compile/gcc-cp-plugin.h \
1495         config/nm-linux.h \
1496         config/nm-nto.h \
1497         config/djgpp/langinfo.h \
1498         config/djgpp/nl_types.h \
1499         config/i386/nm-i386gnu.h \
1500         config/sparc/nm-sol2.h \
1501         mi/mi-cmds.h \
1502         mi/mi-common.h \
1503         mi/mi-console.h \
1504         mi/mi-getopt.h \
1505         mi/mi-main.h \
1506         mi/mi-out.h \
1507         mi/mi-parse.h \
1508         nat/aarch64-linux.h \
1509         nat/aarch64-linux-hw-point.h \
1510         nat/aarch64-sve-linux-ptrace.h \
1511         nat/amd64-linux-siginfo.h \
1512         nat/gdb_ptrace.h \
1513         nat/gdb_thread_db.h \
1514         nat/fork-inferior.h \
1515         nat/linux-btrace.h \
1516         nat/linux-namespaces.h \
1517         nat/linux-nat.h \
1518         nat/linux-osdata.h \
1519         nat/linux-personality.h \
1520         nat/linux-ptrace.h \
1521         nat/linux-waitpid.h \
1522         nat/mips-linux-watch.h \
1523         nat/ppc-linux.h \
1524         nat/x86-cpuid.h \
1525         nat/x86-dregs.h \
1526         nat/x86-gcc-cpuid.h \
1527         nat/x86-linux.h \
1528         nat/x86-linux-dregs.h \
1529         python/py-event.h \
1530         python/py-events.h \
1531         python/py-stopevent.h \
1532         python/python.h \
1533         python/python-internal.h \
1534         regformats/regdef.h \
1535         target/resume.h \
1536         target/target.h \
1537         target/wait.h \
1538         target/waitstatus.h \
1539         tui/tui.h \
1540         tui/tui-command.h \
1541         tui/tui-data.h \
1542         tui/tui-disasm.h \
1543         tui/tui-file.h \
1544         tui/tui-hooks.h \
1545         tui/tui-io.h \
1546         tui/tui-layout.h \
1547         tui/tui-regs.h \
1548         tui/tui-source.h \
1549         tui/tui-stack.h \
1550         tui/tui-win.h \
1551         tui/tui-windata.h \
1552         tui/tui-wingeneral.h \
1553         tui/tui-winsource.h \
1554         x86-tdep.h
1555
1556 # Header files that already have srcdir in them, or which are in objdir.
1557
1558 HFILES_WITH_SRCDIR = \
1559         ../bfd/bfd.h \
1560         jit-reader.h
1561
1562 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
1563 # default their values the way we do for SER_HARDWIRE; in the future
1564 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
1565 # variables analogous to SER_HARDWIRE which get defaulted in this
1566 # Makefile.in
1567
1568 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) $(SIM_OBS)
1569
1570 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
1571 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
1572 # and it's more useful to see it in the .y file.
1573 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
1574         $(CONFIG_SRCS)
1575 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
1576
1577 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
1578         mi/mi-common.o \
1579         version.o \
1580         xml-builtin.o \
1581         $(patsubst %.c,%.o,$(COMMON_SFILES)) \
1582         $(SUBDIR_CLI_OBS) \
1583         $(SUBDIR_TARGET_OBS) \
1584         $(SUBDIR_GCC_COMPILE_OBS)
1585
1586 SUBDIRS = doc @subdirs@ data-directory
1587 CLEANDIRS = $(SUBDIRS)
1588
1589 # List of subdirectories in the build tree that must exist.
1590 # This is used to force build failures in existing trees when
1591 # a new directory is added.
1592 # The format here is for the `case' shell command.
1593 REQUIRED_SUBDIRS = doc | testsuite | data-directory
1594
1595 # Parser intermediate files.
1596 YYFILES = \
1597         ada-exp.c \
1598         ada-lex.c \
1599         c-exp.c \
1600         cp-name-parser.c \
1601         d-exp.c \
1602         f-exp.c \
1603         go-exp.c \
1604         m2-exp.c \
1605         p-exp.c \
1606         rust-exp.c
1607
1608 # ada-lex.c is included by another file, so it shouldn't wind up as a
1609 # .o itself.
1610 YYOBJ = $(filter-out ada-lex.o,$(patsubst %.c,%.o,$(YYFILES)))
1611
1612 # Things which need to be built when making a distribution.
1613
1614 DISTSTUFF = $(YYFILES)
1615
1616
1617 # All generated files which can be included by another file.
1618 generated_files = \
1619         ada-lex.c \
1620         config.h \
1621         gcore \
1622         jit-reader.h \
1623         $(NAT_GENERATED_FILES)
1624
1625 # Flags needed to compile Python code
1626 PYTHON_CFLAGS = @PYTHON_CFLAGS@
1627
1628 all: gdb$(EXEEXT) $(CONFIG_ALL) gdb-gdb.py gdb-gdb.gdb
1629         @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
1630
1631 # Rule for compiling .c files in the top-level gdb directory.
1632 # The order-only dependencies ensure that we create the build subdirectories.
1633 %.o: %.c | $(CONFIG_DEP_SUBDIR)
1634         $(COMPILE) $<
1635         $(POSTCOMPILE)
1636
1637 $(CONFIG_DEP_SUBDIR):
1638         $(SHELL) $(srcdir)/../mkinstalldirs $@
1639
1640 # Python files need special flags.
1641 python/%.o: INTERNAL_CFLAGS += $(PYTHON_CFLAGS)
1642
1643 # Rules for compiling .c files in the various source subdirectories.
1644 %.o: $(srcdir)/gdbtk/generic/%.c
1645         $(COMPILE) $(all_gdbtk_cflags) $<
1646         $(POSTCOMPILE)
1647
1648 installcheck:
1649
1650 # The check target can not use subdir_do, because subdir_do does not
1651 # use TARGET_FLAGS_TO_PASS.
1652 check: force
1653         @if [ -f testsuite/Makefile ]; then \
1654           rootme=`pwd`; export rootme; \
1655           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1656           cd testsuite; \
1657           $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
1658         else true; fi
1659
1660 check-perf: force
1661         @if [ -f testsuite/Makefile ]; then \
1662           rootme=`pwd`; export rootme; \
1663           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1664           cd testsuite; \
1665           $(MAKE) $(TARGET_FLAGS_TO_PASS) check-perf; \
1666         else true; fi
1667
1668 check-read1: force
1669         @if [ -f testsuite/Makefile ]; then \
1670           rootme=`pwd`; export rootme; \
1671           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1672           cd testsuite; \
1673           $(MAKE) $(TARGET_FLAGS_TO_PASS) check-read1; \
1674         else true; fi
1675
1676 check-parallel: force
1677         @if [ -f testsuite/Makefile ]; then \
1678           rootme=`pwd`; export rootme; \
1679           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1680           cd testsuite; \
1681           $(MAKE) $(TARGET_FLAGS_TO_PASS) check-parallel; \
1682         else true; fi
1683
1684 # The idea is to parallelize testing of multilibs, for example:
1685 #   make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
1686 # will run 3 concurrent sessions of check, eventually testing all 10
1687 # combinations.  GNU make is required for the % pattern to work, as is
1688 # a shell that expands alternations within braces.  If GNU make is not
1689 # used, this rule will harmlessly fail to match.  Used FORCE_PARALLEL to
1690 # prevent serialized checking due to the passed RUNTESTFLAGS.
1691 # FIXME: use config.status --config not --version, when available.
1692 check//%: force
1693         @if [ -f testsuite/config.status ]; then \
1694           rootme=`pwd`; export rootme; \
1695           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1696           target=`echo "$@" | sed 's,//.*,,'`; \
1697           variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
1698           vardots=`echo "$$variant" | sed 's,/,.,g'`; \
1699           testdir=testsuite.$$vardots; \
1700           if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
1701             configargs=`cd testsuite && ./config.status --version | \
1702               sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
1703             $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
1704             (cd $$testdir && \
1705              eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
1706                            "\"--srcdir=\$$rootsrc/testsuite\"" \
1707              ); \
1708           else :; fi && cd $$testdir && \
1709           $(MAKE) $(TARGET_FLAGS_TO_PASS) \
1710             RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
1711             FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
1712             "$$target"; \
1713         else true; fi
1714
1715 # The set of headers checked by 'check-headers' by default.
1716 CHECK_HEADERS = $(HFILES_NO_SRCDIR)
1717
1718 # Try to compile each header in isolation, thus ensuring headers are
1719 # self-contained.
1720 #
1721 # Defaults to checking all $HFILES_NO_SRCDIR headers.
1722 #
1723 # Do:
1724 #
1725 #    make check-headers CHECK_HEADERS="header.h list.h"
1726 #
1727 # to check specific headers.
1728 #
1729 check-headers:
1730         @echo Checking headers.
1731         for i in $(CHECK_HEADERS) ; do \
1732                 $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
1733                 $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
1734         done
1735 .PHONY: check-headers
1736
1737 info install-info clean-info dvi pdf install-pdf html install-html: force
1738         @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
1739
1740 # Traditionally "install" depends on "all".  But it may be useful
1741 # not to; for example, if the user has made some trivial change to a
1742 # source file and doesn't care about rebuilding or just wants to save the
1743 # time it takes for make to check that all is up to date.
1744 # install-only is intended to address that need.
1745 install: all
1746         @$(MAKE) $(FLAGS_TO_PASS) install-only
1747
1748 install-only: $(CONFIG_INSTALL)
1749         transformed_name=`t='$(program_transform_name)'; \
1750                           echo gdb | sed -e "$$t"` ; \
1751                 if test "x$$transformed_name" = x; then \
1752                   transformed_name=gdb ; \
1753                 else \
1754                   true ; \
1755                 fi ; \
1756                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1757                 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1758                         $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1759                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
1760                 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
1761         if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
1762         then \
1763           transformed_name=`t='$(program_transform_name)'; \
1764                             echo gcore | sed -e "$$t"` ; \
1765                   if test "x$$transformed_name" = x; then \
1766                     transformed_name=gcore ; \
1767                   else \
1768                     true ; \
1769                   fi ; \
1770                   $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1771                   $(INSTALL_SCRIPT) gcore \
1772                           $(DESTDIR)$(bindir)/$$transformed_name; \
1773         fi
1774         transformed_name=`t='$(program_transform_name)'; \
1775                           echo gdb-add-index | sed -e "$$t"` ; \
1776         if test "x$$transformed_name" = x; then \
1777           transformed_name=gdb-add-index ; \
1778         else \
1779           true ; \
1780         fi ; \
1781         $(INSTALL_SCRIPT) $(srcdir)/contrib/gdb-add-index.sh \
1782                 $(DESTDIR)$(bindir)/$$transformed_name
1783         @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1784
1785 install-strip:
1786         $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1787           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1788           `test -z '$(STRIP)' || \
1789             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
1790
1791 install-guile:
1792         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
1793
1794 install-python:
1795         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
1796
1797 uninstall: force $(CONFIG_UNINSTALL)
1798         transformed_name=`t='$(program_transform_name)'; \
1799                           echo gdb | sed -e $$t` ; \
1800                 if test "x$$transformed_name" = x; then \
1801                   transformed_name=gdb ; \
1802                 else \
1803                   true ; \
1804                 fi ; \
1805                 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1806                       $(DESTDIR)$(man1dir)/$$transformed_name.1
1807         if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
1808         then \
1809           transformed_name=`t='$(program_transform_name)'; \
1810                             echo gcore | sed -e "$$t"` ; \
1811                   if test "x$$transformed_name" = x; then \
1812                     transformed_name=gcore ; \
1813                   else \
1814                     true ; \
1815                   fi ; \
1816                   rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
1817         fi
1818         @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1819
1820 # The C++ name parser can be built standalone for testing.
1821 test-cp-name-parser.o: cp-name-parser.c
1822         $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
1823         $(POSTCOMPILE)
1824
1825 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
1826         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) \
1827                 -o test-cp-name-parser$(EXEEXT) test-cp-name-parser.o \
1828                 $(LIBIBERTY)
1829
1830 # We do this by grepping through sources.  If that turns out to be too slow,
1831 # maybe we could just require every .o file to have an initialization routine
1832 # of a given name (top.o -> _initialize_top, etc.).
1833 #
1834 # Formatting conventions:  The name of the _initialize_* routines must start
1835 # in column zero, and must not be inside #if.
1836 #
1837 # Note that the set of files with init functions might change, or the names
1838 # of the functions might change, so this files needs to depend on all the
1839 # source files that will be linked into gdb.  However, due to the way
1840 # this Makefile has generally been written, we do this indirectly, by
1841 # computing the list of source files from the list of object files.
1842
1843 INIT_FILES = \
1844         $(patsubst %.o,%.c, \
1845           $(patsubst %-exp.o,%-exp.y, \
1846             $(filter-out init.o version.o %_S.o %_U.o,\
1847               $(COMMON_OBS))))
1848
1849 init.c: stamp-init; @true
1850 stamp-init: $(INIT_FILES)
1851         @$(ECHO_INIT_C) echo "Making init.c"
1852         @rm -f init.c-tmp init.l-tmp
1853         @touch init.c-tmp
1854         @-for f in $(INIT_FILES); do \
1855             sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' \
1856                 $(srcdir)/$$f 2>/dev/null; \
1857         done > init.l-tmp
1858         @echo '/* Do not modify this file.  */' >>init.c-tmp
1859         @echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
1860         @echo '#include "defs.h"      /* For initialize_file_ftype.  */' >>init.c-tmp
1861         @echo 'extern void initialize_all_files(void);' >>init.c-tmp
1862         @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
1863         @echo 'void' >>init.c-tmp
1864         @echo 'initialize_all_files (void)' >>init.c-tmp
1865         @echo '{' >>init.c-tmp
1866         @sed -e 's/\(.*\)/  _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
1867         @echo '}' >>init.c-tmp
1868         @$(SHELL) $(srcdir)/../move-if-change init.c-tmp init.c
1869         @echo stamp > stamp-init
1870
1871 .PRECIOUS: init.c
1872
1873 # Create a library of the gdb object files and build GDB by linking
1874 # against that.
1875 #
1876 # init.o is very important.  It pulls in the rest of GDB.
1877 LIBGDB_OBS = $(sort $(COMMON_OBS)) init.o
1878 libgdb.a: $(LIBGDB_OBS)
1879         -rm -f libgdb.a
1880         $(AR) q libgdb.a $(LIBGDB_OBS)
1881         $(RANLIB) libgdb.a
1882
1883 # Removing the old gdb first works better if it is running, at least on SunOS.
1884 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(CDEPS) $(TDEPLIBS)
1885         $(SILENCE) rm -f gdb$(EXEEXT)
1886         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1887                 -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
1888                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1889 ifneq ($(CODESIGN_CERT),)
1890         $(ECHO_SIGN) $(CODESIGN) -s $(CODESIGN_CERT) gdb$(EXEEXT)
1891 endif
1892
1893 # Convenience rule to handle recursion.
1894 .PHONY: all-data-directory
1895 all-data-directory: data-directory/Makefile
1896         @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
1897
1898 # This is useful when debugging GDB, because some Unix's don't let you run GDB
1899 # on itself without copying the executable.  So "make gdb1" will make
1900 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1901 # Removing gdb1 before the copy is the right thing if gdb1 is open
1902 # in another process.
1903 gdb1$(EXEEXT): gdb$(EXEEXT)
1904         rm -f gdb1$(EXEEXT)
1905         cp gdb$(EXEEXT) gdb1$(EXEEXT)
1906
1907 # Put the proper machine-specific files first, so M-. on a machine
1908 # specific routine gets the one for the correct machine.  (FIXME: those
1909 # files go in twice; we should be removing them from the main list).
1910
1911 # TAGS depends on all the files that go into it so you can rebuild TAGS
1912 # with `make TAGS' and not have to say `rm TAGS' first.
1913
1914 GDB_NM_FILE = @GDB_NM_FILE@
1915 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
1916         @echo Making TAGS
1917         etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
1918         `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
1919                 echo $(srcdir)/$$i ; \
1920         done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1921                 echo $$i ; \
1922         done) | sed -e 's/\.o$$/\.c/'` \
1923         `find $(srcdir)/config -name '*.h' -print`
1924
1925 tags: TAGS
1926
1927 clean mostlyclean: $(CONFIG_CLEAN)
1928         @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
1929         rm -f *.o *.a *~ init.c-tmp init.l-tmp version.c-tmp
1930         rm -f init.c stamp-init version.c stamp-version
1931         rm -f gdb$(EXEEXT) core make.log
1932         rm -f gdb[0-9]$(EXEEXT)
1933         rm -f test-cp-name-parser$(EXEEXT)
1934         rm -f xml-builtin.c stamp-xml
1935         rm -f $(DEPDIR)/*
1936         for i in $(CONFIG_SRC_SUBDIR); do \
1937                 rm -f $$i/*.o;  \
1938                 rm -f $$i/$(DEPDIR)/*; \
1939         done
1940
1941 # This used to depend on c-exp.c m2-exp.c TAGS
1942 # I believe this is wrong; the makefile standards for distclean just
1943 # describe removing files; the only sort of "re-create a distribution"
1944 # functionality described is if the distributed files are unmodified.
1945 # NB: While GDBSERVER might be configured on native systems, it isn't
1946 # always included in SUBDIRS.  Remove the gdbserver files explicitly.
1947 distclean: clean
1948         @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
1949         rm -f gdbserver/config.status gdbserver/config.log
1950         rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1951         rm -f gdbserver/Makefile gdbserver/config.cache
1952         rm -f nm.h config.status config.h stamp-h b jit-reader.h
1953         rm -f gdb-gdb.py gdb-gdb.gdb
1954         rm -f y.output yacc.acts yacc.tmp y.tab.h
1955         rm -f config.log config.cache
1956         rm -f Makefile
1957         rm -rf $(DEPDIR)
1958         for i in $(CONFIG_SRC_SUBDIR); do \
1959                 if test -d $$i/$(DEPDIR); then rmdir $$i/$(DEPDIR); fi \
1960         done
1961
1962 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1963 realclean: maintainer-clean
1964
1965 local-maintainer-clean:
1966         @echo "This command is intended for maintainers to use;"
1967         @echo "it deletes files that may require special tools to rebuild."
1968         rm -f c-exp.c \
1969                 cp-name-parser.c \
1970                 ada-lex.c ada-exp.c \
1971                 d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
1972         rm -f TAGS
1973         rm -f $(YYFILES)
1974         rm -f nm.h config.status
1975
1976 do-maintainer-clean:
1977         @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
1978                 subdir_do
1979
1980 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1981         cd doc; $(MAKE) $(MFLAGS) diststuff
1982
1983 subdir_do: force
1984         @for i in $(DODIRS); do \
1985                 case $$i in \
1986                 $(REQUIRED_SUBDIRS)) \
1987                         if [ ! -f ./$$i/Makefile ] ; then \
1988                                 echo "Missing $$i/Makefile" >&2 ; \
1989                                 exit 1 ; \
1990                         fi ;; \
1991                 esac ; \
1992                 if [ -f ./$$i/Makefile ] ; then \
1993                         if (cd ./$$i; \
1994                                 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1995                         else exit 1 ; fi ; \
1996                 else true ; fi ; \
1997         done
1998
1999 Makefile: Makefile.in config.status
2000         # Regenerate the Makefile and the tm.h / nm.h links.
2001         CONFIG_FILES="Makefile" \
2002           CONFIG_COMMANDS= \
2003           CONFIG_HEADERS= \
2004           $(SHELL) config.status
2005
2006 data-directory/Makefile: data-directory/Makefile.in config.status
2007         CONFIG_FILES="data-directory/Makefile" \
2008           CONFIG_COMMANDS="depfiles" \
2009           CONFIG_HEADERS= \
2010           CONFIG_LINKS= \
2011           $(SHELL) config.status
2012
2013 .PHONY: run
2014 run: Makefile
2015         ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
2016
2017 jit-reader.h: $(srcdir)/jit-reader.in
2018         $(SHELL) config.status $@
2019
2020 gcore: $(srcdir)/gcore.in
2021         $(SHELL) config.status $@
2022
2023 gdb-gdb.py: $(srcdir)/gdb-gdb.py.in
2024         $(SHELL) config.status $@
2025
2026 gdb-gdb.gdb: $(srcdir)/gdb-gdb.gdb.in
2027         $(SHELL) config.status $@
2028
2029 config.h: stamp-h ; @true
2030 stamp-h: $(srcdir)/config.in config.status
2031         CONFIG_HEADERS=config.h:config.in \
2032           CONFIG_COMMANDS="default depdir" \
2033           CONFIG_FILES= \
2034           CONFIG_LINKS= \
2035           $(SHELL) config.status
2036
2037 config.status: $(srcdir)/configure configure.nat configure.tgt configure.host ../bfd/development.sh
2038         $(SHELL) config.status --recheck
2039
2040 ACLOCAL = aclocal
2041 ACLOCAL_AMFLAGS = -I ../config
2042
2043 # Keep these in sync with the includes in acinclude.m4.
2044 aclocal_m4_deps = \
2045         configure.ac \
2046         acx_configure_dir.m4 \
2047         transform.m4 \
2048         ../bfd/bfd.m4 \
2049         ../config/acinclude.m4 \
2050         ../config/plugins.m4 \
2051         ../config/lead-dot.m4 \
2052         ../config/override.m4 \
2053         ../config/largefile.m4 \
2054         ../config/gettext-sister.m4 \
2055         ../config/lib-ld.m4 \
2056         ../config/lib-prefix.m4 \
2057         ../config/lib-link.m4 \
2058         ../config/acx.m4 \
2059         ../config/tcl.m4 \
2060         ../config/depstand.m4 \
2061         ../config/lcmessage.m4 \
2062         ../config/codeset.m4 \
2063         ../config/zlib.m4
2064
2065 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
2066         cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2067
2068 AUTOCONF = autoconf
2069 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2070 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2071         cd $(srcdir) && $(AUTOCONF)
2072
2073 AUTOHEADER = autoheader
2074 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2075         cd $(srcdir) && $(AUTOHEADER)
2076         rm -f stamp-h
2077         touch $@
2078
2079 # automatic rebuilding in automake-generated Makefiles requires
2080 # this rule in the toplevel Makefile, which, with GNU make, causes
2081 # the desired updates through the implicit regeneration of the Makefile
2082 # and all of its prerequisites.
2083 am--refresh:
2084         @:
2085
2086 force:
2087
2088 # Documentation!
2089 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2090 doc/refcard.dvi:
2091         cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
2092
2093 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
2094 doc/refcard.ps:
2095         cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
2096
2097 # GDB MANUAL: TeX dvi file
2098 doc/gdb.dvi:
2099         cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
2100
2101 # GDB MANUAL: info file
2102 doc/gdb.info:
2103         cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
2104
2105 # Make copying.c from COPYING
2106 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
2107         awk -f $(srcdir)/copying.awk \
2108                 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
2109         mv $(srcdir)/copying.tmp $(srcdir)/copying.c
2110
2111 version.c: stamp-version; @true
2112 # Note that the obvious names for the temp file are taken by
2113 # create-version.sh.
2114 stamp-version: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/gdbsupport/create-version.sh
2115         $(ECHO_GEN) $(SHELL) $(srcdir)/gdbsupport/create-version.sh $(srcdir) \
2116             $(host_alias) $(target_alias) version-t.t
2117         @$(SHELL) $(srcdir)/../move-if-change version-t.t version.c
2118         @echo stamp > stamp-version
2119
2120
2121 gdb.cxref: $(SFILES)
2122         cxref -I. $(SFILES) >gdb.cxref
2123
2124 force_update:
2125
2126 # GNU Make has an annoying habit of putting *all* the Makefile variables
2127 # into the environment, unless you include this target as a circumvention.
2128 # Rumor is that this will be fixed (and this target can be removed)
2129 # in GNU Make 4.0.
2130 .NOEXPORT:
2131
2132 # GNU Make 3.63 has a different problem: it keeps tacking command line
2133 # overrides onto the definition of $(MAKE).  This variable setting
2134 # will remove them.
2135 MAKEOVERRIDES =
2136
2137 ALLDEPFILES = \
2138         aarch32-tdep.c \
2139         aarch64-fbsd-nat.c \
2140         aarch64-fbsd-tdep.c \
2141         aarch64-linux-nat.c \
2142         aarch64-linux-tdep.c \
2143         aarch64-newlib-tdep.c \
2144         aarch64-ravenscar-thread.c \
2145         aarch64-tdep.c \
2146         aix-thread.c \
2147         alpha-bsd-nat.c \
2148         alpha-bsd-tdep.c \
2149         alpha-linux-nat.c \
2150         alpha-linux-tdep.c \
2151         alpha-mdebug-tdep.c \
2152         alpha-nbsd-tdep.c \
2153         alpha-obsd-tdep.c \
2154         alpha-tdep.c \
2155         amd64-bsd-nat.c \
2156         amd64-darwin-tdep.c \
2157         amd64-dicos-tdep.c \
2158         amd64-fbsd-nat.c \
2159         amd64-fbsd-tdep.c \
2160         amd64-linux-nat.c \
2161         amd64-linux-tdep.c \
2162         amd64-nat.c \
2163         amd64-nbsd-nat.c \
2164         amd64-nbsd-tdep.c \
2165         amd64-obsd-nat.c \
2166         amd64-obsd-tdep.c \
2167         amd64-sol2-tdep.c \
2168         amd64-tdep.c \
2169         arc-tdep.c \
2170         arm.c \
2171         arm-bsd-tdep.c \
2172         arm-fbsd-nat.c \
2173         arm-fbsd-tdep.c \
2174         arm-get-next-pcs.c \
2175         arm-linux.c \
2176         arm-linux-nat.c \
2177         arm-linux-tdep.c \
2178         arm-nbsd-nat.c \
2179         arm-nbsd-tdep.c \
2180         arm-obsd-tdep.c \
2181         arm-symbian-tdep.c \
2182         arm-tdep.c \
2183         avr-tdep.c \
2184         bfin-linux-tdep.c \
2185         bfin-tdep.c \
2186         bsd-kvm.c \
2187         bsd-uthread.c \
2188         csky-linux-tdep.c \
2189         csky-tdep.c \
2190         darwin-nat.c \
2191         dicos-tdep.c \
2192         fbsd-nat.c \
2193         fbsd-tdep.c \
2194         fork-child.c \
2195         ft32-tdep.c \
2196         glibc-tdep.c \
2197         go32-nat.c \
2198         h8300-tdep.c \
2199         hppa-bsd-tdep.c \
2200         hppa-linux-nat.c \
2201         hppa-linux-tdep.c \
2202         hppa-nbsd-nat.c \
2203         hppa-nbsd-tdep.c \
2204         hppa-obsd-nat.c \
2205         hppa-obsd-tdep.c \
2206         hppa-tdep.c \
2207         i386-bsd-nat.c \
2208         i386-bsd-tdep.c \
2209         i386-cygwin-tdep.c \
2210         i386-darwin-nat.c \
2211         i386-darwin-tdep.c \
2212         i386-dicos-tdep.c \
2213         i386-fbsd-nat.c \
2214         i386-fbsd-tdep.c \
2215         i386-gnu-nat.c \
2216         i386-gnu-tdep.c \
2217         i386-linux-nat.c \
2218         i386-linux-tdep.c \
2219         i386-nbsd-nat.c \
2220         i386-nbsd-tdep.c \
2221         i386-obsd-nat.c \
2222         i386-obsd-tdep.c \
2223         i386-sol2-nat.c \
2224         i386-sol2-tdep.c \
2225         i386-tdep.c \
2226         i387-tdep.c \
2227         ia64-libunwind-tdep.c \
2228         ia64-linux-nat.c \
2229         ia64-linux-tdep.c \
2230         ia64-tdep.c \
2231         ia64-vms-tdep.c \
2232         inf-ptrace.c \
2233         linux-fork.c \
2234         linux-record.c \
2235         linux-tdep.c \
2236         lm32-tdep.c \
2237         m32r-linux-nat.c \
2238         m32r-linux-tdep.c \
2239         m32r-tdep.c \
2240         m68hc11-tdep.c \
2241         m68k-bsd-nat.c \
2242         m68k-bsd-tdep.c \
2243         m68k-linux-nat.c \
2244         m68k-linux-tdep.c \
2245         m68k-tdep.c \
2246         microblaze-linux-tdep.c \
2247         microblaze-tdep.c \
2248         mingw-hdep.c \
2249         mips-fbsd-nat.c \
2250         mips-fbsd-tdep.c \
2251         mips-linux-nat.c \
2252         mips-linux-tdep.c \
2253         mips-nbsd-nat.c \
2254         mips-nbsd-tdep.c \
2255         mips-sde-tdep.c \
2256         mips-tdep.c \
2257         mips64-obsd-nat.c \
2258         mips64-obsd-tdep.c \
2259         msp430-tdep.c \
2260         nbsd-nat.c \
2261         nbsd-tdep.c \
2262         nds32-tdep.c \
2263         nios2-linux-tdep.c \
2264         nios2-tdep.c \
2265         obsd-nat.c \
2266         obsd-tdep.c \
2267         posix-hdep.c \
2268         ppc-fbsd-nat.c \
2269         ppc-fbsd-tdep.c \
2270         ppc-linux-nat.c \
2271         ppc-linux-tdep.c \
2272         ppc-nbsd-nat.c \
2273         ppc-nbsd-tdep.c \
2274         ppc-obsd-nat.c \
2275         ppc-obsd-tdep.c \
2276         ppc-ravenscar-thread.c \
2277         ppc-sysv-tdep.c \
2278         ppc64-tdep.c \
2279         procfs.c \
2280         ravenscar-thread.c \
2281         remote-sim.c \
2282         riscv-fbsd-nat.c \
2283         riscv-fbsd-tdep.c \
2284         riscv-linux-nat.c \
2285         riscv-linux-tdep.c \
2286         riscv-tdep.c \
2287         rl78-tdep.c \
2288         rs6000-lynx178-tdep.c \
2289         rs6000-nat.c \
2290         rs6000-tdep.c \
2291         rx-tdep.c \
2292         s390-linux-nat.c \
2293         s390-linux-tdep.c \
2294         s390-tdep.c \
2295         score-tdep.c \
2296         ser-go32.c \
2297         ser-mingw.c \
2298         ser-pipe.c \
2299         ser-tcp.c \
2300         ser-uds.c \
2301         sh-nbsd-nat.c \
2302         sh-nbsd-tdep.c \
2303         sh-tdep.c \
2304         sol2-tdep.c \
2305         solib-aix.c \
2306         solib-spu.c \
2307         solib-svr4.c \
2308         sparc-linux-nat.c \
2309         sparc-linux-tdep.c \
2310         sparc-nat.c \
2311         sparc-nbsd-nat.c \
2312         sparc-nbsd-tdep.c \
2313         sparc-obsd-tdep.c \
2314         sparc-ravenscar-thread.c \
2315         sparc-sol2-nat.c \
2316         sparc-sol2-tdep.c \
2317         sparc-tdep.c \
2318         sparc64-fbsd-nat.c \
2319         sparc64-fbsd-tdep.c \
2320         sparc64-linux-nat.c \
2321         sparc64-linux-tdep.c \
2322         sparc64-nat.c \
2323         sparc64-nbsd-nat.c \
2324         sparc64-nbsd-tdep.c \
2325         sparc64-obsd-nat.c \
2326         sparc64-obsd-tdep.c \
2327         sparc64-sol2-tdep.c \
2328         sparc64-tdep.c \
2329         spu-linux-nat.c \
2330         spu-multiarch.c \
2331         spu-tdep.c \
2332         tilegx-linux-nat.c \
2333         tilegx-linux-tdep.c \
2334         tilegx-tdep.c \
2335         v850-tdep.c \
2336         vax-bsd-nat.c \
2337         vax-nbsd-tdep.c \
2338         vax-tdep.c \
2339         windows-nat.c \
2340         windows-tdep.c \
2341         x86-nat.c \
2342         x86-tdep.c \
2343         xcoffread.c \
2344         xstormy16-tdep.c \
2345         xtensa-config.c \
2346         xtensa-linux-nat.c \
2347         xtensa-linux-tdep.c \
2348         xtensa-tdep.c \
2349         xtensa-xtregs.c \
2350         gdbsupport/mingw-strerror.c \
2351         gdbsupport/posix-strerror.c
2352
2353 # Some files need explicit build rules (due to -Werror problems) or due
2354 # to sub-directory fun 'n' games.
2355
2356 # ada-exp.c can appear in srcdir, for releases; or in ., for
2357 # development builds.
2358 ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
2359
2360 ada-exp.o: ada-exp.c
2361         $(COMPILE) $(ADA_EXP_C)
2362         $(POSTCOMPILE)
2363
2364 # Message files.  Based on code in gcc/Makefile.in.
2365
2366 # Rules for generating translated message descriptions.  Disabled by
2367 # autoconf if the tools are not available.
2368
2369 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
2370
2371 all-po: $(CATALOGS)
2372
2373 # This notation should be acceptable to all Make implementations used
2374 # by people who are interested in updating .po files.
2375 update-po: $(CATALOGS:.gmo=.pox)
2376
2377 # N.B. We do not attempt to copy these into $(srcdir).  The snapshot
2378 # script does that.
2379 %.gmo: %.po
2380         -test -d po || mkdir po
2381         $(GMSGFMT) --statistics -o $@ $<
2382
2383 # The new .po has to be gone over by hand, so we deposit it into
2384 # build/po with a different extension.  If build/po/$(PACKAGE).pot
2385 # exists, use it (it was just created), else use the one in srcdir.
2386 %.pox: %.po
2387         -test -d po || mkdir po
2388         $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
2389                         then echo po/$(PACKAGE).pot; \
2390                         else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
2391
2392 # This rule has to look for .gmo modules in both srcdir and the cwd,
2393 # and has to check that we actually have a catalog for each language,
2394 # in case they weren't built or included with the distribution.
2395 install-po:
2396         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
2397         cats="$(CATALOGS)"; for cat in $$cats; do \
2398           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2399           if [ -f $$cat ]; then :; \
2400           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2401           else continue; \
2402           fi; \
2403           dir=$(localedir)/$$lang/LC_MESSAGES; \
2404           echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
2405           $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
2406           echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2407           $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2408         done
2409 uninstall-po:
2410         cats="$(CATALOGS)"; for cat in $$cats; do \
2411           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2412           if [ -f $$cat ]; then :; \
2413           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2414           else continue; \
2415           fi; \
2416           dir=$(localedir)/$$lang/LC_MESSAGES; \
2417           rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
2418         done
2419 # Delete po/*.gmo only if we are not building in the source directory.
2420 clean-po:
2421         -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
2422
2423 # Rule for regenerating the message template (gdb.pot).  Instead of
2424 # forcing everyone to edit POTFILES.in, which proved impractical, this
2425 # rule has no dependencies and always regenerates gdb.pot.  This is
2426 # relatively harmless since the .po files do not directly depend on
2427 # it.  The .pot file is left in the build directory.  Since GDB's
2428 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
2429 # files) force this rule.
2430 $(PACKAGE).pot: po/$(PACKAGE).pot
2431 po/$(PACKAGE).pot: force
2432         -test -d po || mkdir po
2433         sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
2434
2435
2436 #
2437 # YACC/LEX dependencies
2438 #
2439 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
2440 # exist in srcdir, then compiled in objdir to LANG-exp.o.  If we
2441 # said LANG-exp.c rather than ./c-exp.c some makes would
2442 # sometimes re-write it into $(srcdir)/c-exp.c.  Remove bogus
2443 # decls for malloc/realloc/free which conflict with everything else.
2444 # Strictly speaking c-exp.c should therefore depend on
2445 # Makefile.in, but that was a pretty big annoyance.
2446
2447 %.c: %.y
2448         $(ECHO_YACC) $(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- \
2449                 $(YACC) $(YFLAGS) || (rm -f $@.tmp; false)
2450         @sed -e '/extern.*malloc/d' \
2451              -e '/extern.*realloc/d' \
2452              -e '/extern.*free/d' \
2453              -e '/include.*malloc.h/d' \
2454              -e 's/\([^x]\)malloc/\1xmalloc/g' \
2455              -e 's/\([^x]\)realloc/\1xrealloc/g' \
2456              -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2457              -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2458              -e '/^#line.*y.tab.c/d' \
2459              -e 's/YY_NULL/YY_NULLPTR/g' \
2460           < $@.tmp > $@.new && \
2461           rm -f $@.tmp && \
2462           mv $@.new $@
2463 %.c: %.l
2464         $(ECHO_LEX) $(FLEX) -t $<  \
2465             | sed -e '/extern.*malloc/d' \
2466                 -e '/extern.*realloc/d' \
2467                 -e '/extern.*free/d' \
2468                 -e '/include.*malloc.h/d' \
2469                 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2470                 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2471                 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2472                 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2473                 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
2474               > $@.new && \
2475             mv $@.new $@
2476
2477 .PRECIOUS: ada-lex.c
2478
2479 # XML rules
2480
2481 xml-builtin.c: stamp-xml; @true
2482 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
2483         $(SILENCE) rm -f xml-builtin.tmp
2484         $(ECHO_GEN_XML_BUILTIN) AWK="$(AWK)" \
2485           $(SHELL) $(srcdir)/features/feature_to_c.sh \
2486           xml-builtin.tmp $(XMLFILES)
2487         $(SILENCE) $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
2488         $(SILENCE) echo stamp > stamp-xml
2489
2490 .PRECIOUS: xml-builtin.c
2491
2492 #
2493 # GDBTK sub-directory
2494 #
2495
2496 all-gdbtk: insight$(EXEEXT)
2497
2498 install-gdbtk:
2499         transformed_name=`t='$(program_transform_name)'; \
2500                   echo insight | sed -e $$t` ; \
2501         if test "x$$transformed_name" = x; then \
2502           transformed_name=insight ; \
2503         else \
2504           true ; \
2505         fi ; \
2506         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
2507         $(INSTALL_PROGRAM) insight$(EXEEXT) \
2508                 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2509         $(SHELL) $(srcdir)/../mkinstalldirs \
2510                 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2511         $(SHELL) $(srcdir)/../mkinstalldirs \
2512                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2513         $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2514                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2515         $(SHELL) $(srcdir)/../mkinstalldirs \
2516                 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2517                 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
2518         $(SHELL) $(srcdir)/../mkinstalldirs \
2519                 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2520                 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2521                 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
2522         cd $(srcdir)/gdbtk/library ; \
2523         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; \
2524           do \
2525                 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
2526           done ;
2527
2528 uninstall-gdbtk:
2529         transformed_name=`t='$(program_transform_name)'; \
2530                   echo insight | sed -e $$t` ; \
2531         if test "x$$transformed_name" = x; then \
2532                 transformed_name=insight ; \
2533         else \
2534                 true ; \
2535         fi ; \
2536         rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2537         rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
2538
2539 clean-gdbtk:
2540         rm -f insight$(EXEEXT)
2541
2542 # Removing the old gdb first works better if it is running, at least on SunOS.
2543 insight$(EXEEXT): gdbtk-main.o libgdb.a $(CDEPS) $(TDEPLIBS)
2544         rm -f insight$(EXEEXT)
2545         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2546                 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
2547                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2548
2549 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2550         $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2551
2552 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2553                 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
2554                 $(GDBTK_CFLAGS) \
2555                 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
2556                 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2557
2558 #
2559 # Dependency tracking.
2560 #
2561
2562 ifeq ($(DEPMODE),depmode=gcc3)
2563 # Note that we put the dependencies into a .Tpo file, then move them
2564 # into place if the compile succeeds.  We need this because gcc does
2565 # not atomically write the dependency output file.
2566 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2567         -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
2568 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
2569         $(@D)/$(DEPDIR)/$(basename $(@F)).Po
2570 else
2571 override COMPILE.pre = source='$<' object='$@' libtool=no \
2572         DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
2573         $(CXX) -x c++ $(CXX_DIALECT)
2574 # depcomp handles atomicity for us, so we don't need a postcompile
2575 # step.
2576 override POSTCOMPILE =
2577 endif
2578
2579 # A list of all the objects we might care about in this build, for
2580 # dependency tracking.
2581 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2582         test-cp-name-parser.o
2583
2584 # All the .deps files to include.
2585 all_deps_files = $(foreach dep,$(patsubst %.o,%.Po,$(all_object_files)),\
2586     $(dir $(dep))/$(DEPDIR)/$(notdir $(dep)))
2587
2588 # Ensure that generated files are created early.  Use order-only
2589 # dependencies if available.  They require GNU make 3.80 or newer,
2590 # and the .VARIABLES variable was introduced at the same time.
2591 ifdef .VARIABLES
2592 $(all_object_files): | $(generated_files)
2593 else
2594 $(all_object_files) : $(generated_files)
2595 endif
2596
2597 # Dependencies.
2598 -include $(all_deps_files)
2599
2600 # Disable implicit make rules.
2601 include $(srcdir)/disable-implicit-rules.mk
2602
2603 ### end of the gdb Makefile.in.