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