Rearrange TUI data window code
[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         arc-tdep.o \
668         arch/arm.o \
669         arch/arm-get-next-pcs.o \
670         arch/arm-linux.o \
671         arch/i386.o \
672         arch/ppc-linux-common.o \
673         arch/riscv.o \
674         arm-bsd-tdep.o \
675         arm-fbsd-tdep.o \
676         arm-linux-tdep.o \
677         arm-nbsd-tdep.o \
678         arm-obsd-tdep.o \
679         arm-pikeos-tdep.o \
680         arm-symbian-tdep.o \
681         arm-tdep.o \
682         arm-wince-tdep.o \
683         avr-tdep.o \
684         bfin-linux-tdep.o \
685         bfin-tdep.o \
686         bsd-uthread.o \
687         cris-linux-tdep.o \
688         cris-tdep.o \
689         csky-linux-tdep.o \
690         csky-tdep.o \
691         dicos-tdep.o \
692         fbsd-tdep.o \
693         frv-linux-tdep.o \
694         frv-tdep.o \
695         ft32-tdep.o \
696         glibc-tdep.o \
697         h8300-tdep.o \
698         hppa-bsd-tdep.o \
699         hppa-linux-tdep.o \
700         hppa-nbsd-tdep.o \
701         hppa-obsd-tdep.o \
702         hppa-tdep.o \
703         i386-bsd-tdep.o \
704         i386-cygwin-tdep.o \
705         i386-darwin-tdep.o \
706         i386-dicos-tdep.o \
707         i386-fbsd-tdep.o \
708         i386-gnu-tdep.o \
709         i386-go32-tdep.o \
710         i386-linux-tdep.o \
711         i386-nbsd-tdep.o \
712         i386-nto-tdep.o \
713         i386-obsd-tdep.o \
714         i386-sol2-tdep.o \
715         i386-tdep.o \
716         i387-tdep.o \
717         iq2000-tdep.o \
718         linux-record.o \
719         linux-tdep.o \
720         lm32-tdep.o \
721         m32c-tdep.o \
722         m32r-linux-tdep.o \
723         m32r-tdep.o \
724         m68hc11-tdep.o \
725         m68k-bsd-tdep.o \
726         m68k-linux-tdep.o \
727         m68k-tdep.o \
728         mep-tdep.o \
729         microblaze-linux-tdep.o \
730         microblaze-tdep.o \
731         mips-fbsd-tdep.o \
732         mips-linux-tdep.o \
733         mips-nbsd-tdep.o \
734         mips-sde-tdep.o \
735         mips-tdep.o \
736         mn10300-linux-tdep.o \
737         mn10300-tdep.o \
738         moxie-tdep.o \
739         msp430-tdep.o \
740         nbsd-tdep.o \
741         nds32-tdep.o \
742         nios2-linux-tdep.o \
743         nios2-tdep.o \
744         nto-tdep.o \
745         obsd-tdep.o \
746         or1k-linux-tdep.o \
747         or1k-tdep.o \
748         ppc-fbsd-tdep.o \
749         ppc-linux-tdep.o \
750         ppc-nbsd-tdep.o \
751         ppc-obsd-tdep.o \
752         ppc-ravenscar-thread.o \
753         ppc-sysv-tdep.o \
754         ppc64-tdep.o \
755         ravenscar-thread.o \
756         riscv-fbsd-tdep.o \
757         riscv-linux-tdep.o \
758         riscv-tdep.o \
759         rl78-tdep.o \
760         rs6000-aix-tdep.o \
761         rs6000-lynx178-tdep.o \
762         rs6000-tdep.o \
763         rx-tdep.o \
764         s12z-tdep.o \
765         s390-linux-tdep.o \
766         s390-tdep.o \
767         score-tdep.o \
768         sh-linux-tdep.o \
769         sh-nbsd-tdep.o \
770         sh-tdep.o \
771         sol2-tdep.o \
772         solib-aix.o \
773         solib-darwin.o \
774         solib-dsbt.o \
775         solib-frv.o \
776         solib-spu.o \
777         solib-svr4.o \
778         sparc-linux-tdep.o \
779         sparc-nbsd-tdep.o \
780         sparc-obsd-tdep.o \
781         sparc-ravenscar-thread.o \
782         sparc-sol2-tdep.o \
783         sparc-tdep.o \
784         spu-multiarch.o \
785         spu-tdep.o \
786         symfile-mem.o \
787         tic6x-linux-tdep.o \
788         tic6x-tdep.o \
789         tilegx-linux-tdep.o \
790         tilegx-tdep.o \
791         v850-tdep.o \
792         vax-nbsd-tdep.o \
793         vax-tdep.o \
794         windows-tdep.o \
795         x86-tdep.o \
796         xcoffread.o \
797         xstormy16-tdep.o \
798         xtensa-config.o \
799         xtensa-linux-tdep.o \
800         xtensa-tdep.o
801
802 # The following native-target dependent variables are defined on
803 # configure.nat.
804 NAT_FILE = @NAT_FILE@
805 NATDEPFILES = @NATDEPFILES@
806 NAT_CDEPS = @NAT_CDEPS@
807 LOADLIBES = @LOADLIBES@
808 MH_CFLAGS = @MH_CFLAGS@
809 XM_CLIBS = @XM_CLIBS@
810 NAT_GENERATED_FILES = @NAT_GENERATED_FILES@
811 HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
812
813 # Native-target dependent makefile fragment comes in here.
814 @nat_makefile_frag@
815
816 # End of native-target dependent variables.
817
818 FLAGS_TO_PASS = \
819         "prefix=$(prefix)" \
820         "exec_prefix=$(exec_prefix)" \
821         "infodir=$(infodir)" \
822         "datarootdir=$(datarootdir)" \
823         "docdir=$(docdir)" \
824         "htmldir=$(htmldir)" \
825         "pdfdir=$(pdfdir)" \
826         "libdir=$(libdir)" \
827         "mandir=$(mandir)" \
828         "datadir=$(datadir)" \
829         "includedir=$(includedir)" \
830         "against=$(against)" \
831         "DESTDIR=$(DESTDIR)" \
832         "AR=$(AR)" \
833         "AR_FLAGS=$(AR_FLAGS)" \
834         "CC=$(CC)" \
835         "CFLAGS=$(CFLAGS)" \
836         "CXX=$(CXX)" \
837         "CXX_DIALECT=$(CXX_DIALECT)" \
838         "CXXFLAGS=$(CXXFLAGS)" \
839         "DLLTOOL=$(DLLTOOL)" \
840         "LDFLAGS=$(LDFLAGS)" \
841         "RANLIB=$(RANLIB)" \
842         "MAKEINFO=$(MAKEINFO)" \
843         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
844         "MAKEINFO_EXTRA_FLAGS=$(MAKEINFO_EXTRA_FLAGS)" \
845         "MAKEHTML=$(MAKEHTML)" \
846         "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
847         "INSTALL=$(INSTALL)" \
848         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
849         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
850         "INSTALL_DATA=$(INSTALL_DATA)" \
851         "RUNTEST=$(RUNTEST)" \
852         "RUNTESTFLAGS=$(RUNTESTFLAGS)"
853
854 # Flags that we pass when building the testsuite.
855
856 # empty for native, $(target_alias)/ for cross
857 target_subdir = @target_subdir@
858
859 CC_FOR_TARGET = ` \
860   if [ -f $${rootme}/../gcc/xgcc ] ; then \
861     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
862       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/; \
863     else \
864       echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
865     fi; \
866   else \
867     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
868       echo $(CC); \
869     else \
870       t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
871     fi; \
872   fi`
873
874 CXX_FOR_TARGET = ` \
875   if [ -f $${rootme}/../gcc/xg++ ] ; then \
876     if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
877       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/; \
878     else \
879       echo $${rootme}/../gcc/xg++ -B$${rootme}/../gcc/; \
880     fi; \
881   else \
882     if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
883       echo $(CXX); \
884     else \
885       t='$(program_transform_name)'; echo g++ | sed -e '' $$t; \
886     fi; \
887   fi`
888
889 # The use of $$(x_FOR_TARGET) reduces the command line length by not
890 # duplicating the lengthy definition.
891 TARGET_FLAGS_TO_PASS = \
892         "prefix=$(prefix)" \
893         "exec_prefix=$(exec_prefix)" \
894         "against=$(against)" \
895         'CC=$$(CC_FOR_TARGET)' \
896         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
897         "CFLAGS=$(CFLAGS)" \
898         'CXX=$$(CXX_FOR_TARGET)' \
899         "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
900         "CXXFLAGS=$(CXXFLAGS)" \
901         "INSTALL=$(INSTALL)" \
902         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
903         "INSTALL_DATA=$(INSTALL_DATA)" \
904         "MAKEINFO=$(MAKEINFO)" \
905         "MAKEHTML=$(MAKEHTML)" \
906         "RUNTEST=$(RUNTEST)" \
907         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
908         "FORCE_PARALLEL=$(FORCE_PARALLEL)" \
909         "TESTS=$(TESTS)"
910
911 # All source files that go into linking GDB.
912
913 # Files that should wind up in SFILES and whose corresponding .o
914 # should be in COMMON_OBS.
915 COMMON_SFILES = \
916         ada-lang.c \
917         ada-tasks.c \
918         ada-typeprint.c \
919         ada-valprint.c \
920         ada-varobj.c \
921         addrmap.c \
922         agent.c \
923         alloc.c \
924         annotate.c \
925         arch-utils.c \
926         auto-load.c \
927         auxv.c \
928         ax-gdb.c \
929         ax-general.c \
930         bcache.c \
931         bfd-target.c \
932         block.c \
933         blockframe.c \
934         break-catch-sig.c \
935         break-catch-syscall.c \
936         break-catch-throw.c \
937         breakpoint.c \
938         btrace.c \
939         build-id.c \
940         buildsym-legacy.c \
941         buildsym.c \
942         c-lang.c \
943         c-typeprint.c \
944         c-valprint.c \
945         c-varobj.c \
946         charset.c \
947         cli-out.c \
948         coff-pe-read.c \
949         coffread.c \
950         gdbsupport/agent.c \
951         gdbsupport/btrace-common.c \
952         gdbsupport/buffer.c \
953         gdbsupport/cleanups.c \
954         gdbsupport/common-debug.c \
955         gdbsupport/common-exceptions.c \
956         gdbsupport/common-regcache.c \
957         gdbsupport/common-utils.c \
958         gdbsupport/errors.c \
959         gdbsupport/environ.c \
960         gdbsupport/fileio.c \
961         gdbsupport/filestuff.c \
962         gdbsupport/format.c \
963         gdbsupport/job-control.c \
964         gdbsupport/gdb_tilde_expand.c \
965         gdbsupport/gdb_vecs.c \
966         gdbsupport/netstuff.c \
967         gdbsupport/new-op.c \
968         gdbsupport/pathstuff.c \
969         gdbsupport/print-utils.c \
970         gdbsupport/ptid.c \
971         gdbsupport/rsp-low.c \
972         gdbsupport/run-time-clock.c \
973         gdbsupport/scoped_mmap.c \
974         gdbsupport/signals.c \
975         gdbsupport/signals-state-save-restore.c \
976         gdbsupport/tdesc.c \
977         gdbsupport/vec.c \
978         gdbsupport/xml-utils.c \
979         complaints.c \
980         completer.c \
981         continuations.c \
982         copying.c \
983         corefile.c \
984         corelow.c \
985         cp-abi.c \
986         cp-namespace.c \
987         cp-support.c \
988         cp-valprint.c \
989         ctf.c \
990         d-lang.c \
991         d-namespace.c \
992         d-valprint.c \
993         dbxread.c \
994         dcache.c \
995         debug.c \
996         demangle.c \
997         dictionary.c \
998         disasm.c \
999         disasm-selftests.c \
1000         dummy-frame.c \
1001         dwarf-index-cache.c \
1002         dwarf-index-common.c \
1003         dwarf-index-write.c \
1004         dwarf2-frame.c \
1005         dwarf2-frame-tailcall.c \
1006         dwarf2expr.c \
1007         dwarf2loc.c \
1008         dwarf2read.c \
1009         eval.c \
1010         event-loop.c \
1011         event-top.c \
1012         exceptions.c \
1013         exec.c \
1014         expprint.c \
1015         extension.c \
1016         f-lang.c \
1017         f-typeprint.c \
1018         f-valprint.c \
1019         filename-seen-cache.c \
1020         filesystem.c \
1021         findcmd.c \
1022         findvar.c \
1023         frame.c \
1024         frame-base.c \
1025         frame-unwind.c \
1026         gcore.c \
1027         gdb_bfd.c \
1028         gdb-dlfcn.c \
1029         gdb_obstack.c \
1030         gdb_regex.c \
1031         gdb_usleep.c \
1032         gdbarch.c \
1033         gdbarch-selftests.c \
1034         gdbtypes.c \
1035         gnu-v2-abi.c \
1036         gnu-v3-abi.c \
1037         go-lang.c \
1038         go-typeprint.c \
1039         go-valprint.c \
1040         inf-child.c \
1041         inf-loop.c \
1042         infcall.c \
1043         infcmd.c \
1044         inferior.c \
1045         inflow.c \
1046         infrun.c \
1047         inline-frame.c \
1048         interps.c \
1049         jit.c \
1050         language.c \
1051         linespec.c \
1052         location.c \
1053         m2-lang.c \
1054         m2-typeprint.c \
1055         m2-valprint.c \
1056         macrocmd.c \
1057         macroexp.c \
1058         macroscope.c \
1059         macrotab.c \
1060         main.c \
1061         maint.c \
1062         maint-test-options.c \
1063         maint-test-settings.c \
1064         mdebugread.c \
1065         mem-break.c \
1066         memattr.c \
1067         memory-map.c \
1068         memrange.c \
1069         minidebug.c \
1070         minsyms.c \
1071         mipsread.c \
1072         namespace.c \
1073         objc-lang.c \
1074         objfiles.c \
1075         observable.c \
1076         opencl-lang.c \
1077         osabi.c \
1078         osdata.c \
1079         p-lang.c \
1080         p-typeprint.c \
1081         p-valprint.c \
1082         parse.c \
1083         printcmd.c \
1084         probe.c \
1085         process-stratum-target.c \
1086         producer.c \
1087         progspace.c \
1088         progspace-and-thread.c \
1089         prologue-value.c \
1090         psymtab.c \
1091         record.c \
1092         record-btrace.c \
1093         record-full.c \
1094         regcache.c \
1095         regcache-dump.c \
1096         reggroups.c \
1097         registry.c \
1098         remote.c \
1099         remote-fileio.c \
1100         remote-notif.c \
1101         reverse.c \
1102         rust-lang.c \
1103         sentinel-frame.c \
1104         ser-event.c \
1105         serial.c \
1106         skip.c \
1107         solib.c \
1108         solib-target.c \
1109         source.c \
1110         source-cache.c \
1111         stabsread.c \
1112         stack.c \
1113         std-regs.c \
1114         symfile.c \
1115         symfile-debug.c \
1116         symmisc.c \
1117         symtab.c \
1118         target.c \
1119         target-dcache.c \
1120         target-descriptions.c \
1121         target-memory.c \
1122         test-target.c \
1123         thread.c \
1124         thread-iter.c \
1125         tid-parse.c \
1126         top.c \
1127         tracefile.c \
1128         tracefile-tfile.c \
1129         tracepoint.c \
1130         trad-frame.c \
1131         tramp-frame.c \
1132         target-float.c \
1133         type-stack.c \
1134         typeprint.c \
1135         ui-file.c \
1136         ui-out.c \
1137         ui-style.c \
1138         user-regs.c \
1139         utils.c \
1140         valarith.c \
1141         valops.c \
1142         valprint.c \
1143         value.c \
1144         varobj.c \
1145         xml-support.c \
1146         xml-syscall.c \
1147         xml-tdesc.c
1148
1149 # Links made at configuration time should not be specified here, since
1150 # SFILES is used in building the distribution archive.
1151 SFILES = \
1152         ada-exp.y \
1153         arch/i386.c \
1154         c-exp.y \
1155         cp-name-parser.y \
1156         d-exp.y \
1157         dtrace-probe.c \
1158         elfread.c \
1159         f-exp.y \
1160         gdb.c \
1161         go-exp.y \
1162         m2-exp.y \
1163         p-exp.y \
1164         proc-service.list \
1165         rust-exp.y \
1166         ser-base.c \
1167         ser-unix.c \
1168         sol-thread.c \
1169         stap-probe.c \
1170         stub-termcap.c \
1171         symfile-mem.c \
1172         ui-file.h \
1173         mi/mi-common.c \
1174         $(SUBDIR_CLI_SRCS) \
1175         $(SUBDIR_TARGET_SRCS) \
1176         $(COMMON_SFILES) \
1177         $(SUBDIR_GCC_COMPILE_SRCS)
1178
1179 # Header files that need to have srcdir added.  Note that in the cases
1180 # where we use a macro like $(gdbcmd_h), things are carefully arranged
1181 # so that each .h file is listed exactly once (M-x tags-search works
1182 # wrong if TAGS has files twice).  Because this is tricky to get
1183 # right, it is probably easiest just to list .h files here directly.
1184
1185 HFILES_NO_SRCDIR = \
1186         aarch64-ravenscar-thread.h \
1187         aarch64-tdep.h \
1188         ada-lang.h \
1189         addrmap.h \
1190         alpha-bsd-tdep.h \
1191         alpha-tdep.h \
1192         amd64-darwin-tdep.h \
1193         amd64-linux-tdep.h \
1194         amd64-nat.h \
1195         amd64-tdep.h \
1196         annotate.h \
1197         arc-tdep.h \
1198         arch-utils.h \
1199         arm-linux-tdep.h \
1200         arm-tdep.h \
1201         auto-load.h \
1202         auxv.h \
1203         ax.h \
1204         ax-gdb.h \
1205         bcache.h \
1206         bfd-target.h \
1207         bfin-tdep.h \
1208         block.h \
1209         breakpoint.h \
1210         bsd-kvm.h \
1211         bsd-uthread.h \
1212         build-id.h \
1213         buildsym-legacy.h \
1214         buildsym.h \
1215         c-lang.h \
1216         charset.h \
1217         charset-list.h \
1218         cli-out.h \
1219         coff-pe-read.h \
1220         command.h \
1221         complaints.h \
1222         completer.h \
1223         cp-abi.h \
1224         cp-support.h \
1225         csky-tdep.h \
1226         ctf.h \
1227         d-lang.h \
1228         darwin-nat.h \
1229         dcache.h \
1230         defs.h \
1231         dicos-tdep.h \
1232         dictionary.h \
1233         disasm.h \
1234         dummy-frame.h \
1235         dwarf-index-cache.h \
1236         dwarf-index-common.h \
1237         dwarf2-frame.h \
1238         dwarf2-frame-tailcall.h \
1239         dwarf2expr.h \
1240         dwarf2loc.h \
1241         dwarf2read.h \
1242         event-loop.h \
1243         event-top.h \
1244         exceptions.h \
1245         exec.h \
1246         expression.h \
1247         extension.h \
1248         extension-priv.h \
1249         f-lang.h \
1250         fbsd-nat.h \
1251         fbsd-tdep.h \
1252         filesystem.h \
1253         frame.h \
1254         frame-base.h \
1255         frame-unwind.h \
1256         frv-tdep.h \
1257         ft32-tdep.h \
1258         gcore.h \
1259         gdb_bfd.h \
1260         gdb_curses.h \
1261         gdb-dlfcn.h \
1262         gdb_expat.h \
1263         gdb_obstack.h \
1264         gdb_proc_service.h \
1265         gdb_regex.h \
1266         gdb_select.h \
1267         gdb-stabs.h \
1268         gdb_usleep.h \
1269         gdb_vfork.h \
1270         gdb_wchar.h \
1271         gdbarch.h \
1272         gdbcmd.h \
1273         gdbcore.h \
1274         gdbthread.h \
1275         gdbtypes.h \
1276         glibc-tdep.h \
1277         gnu-nat.h \
1278         go-lang.h \
1279         gregset.h \
1280         hppa-bsd-tdep.h \
1281         hppa-linux-offsets.h \
1282         hppa-tdep.h \
1283         i386-bsd-nat.h \
1284         i386-darwin-tdep.h \
1285         i386-linux-nat.h \
1286         i386-linux-tdep.h \
1287         i386-tdep.h \
1288         i387-tdep.h \
1289         ia64-libunwind-tdep.h \
1290         ia64-tdep.h \
1291         inf-child.h \
1292         inf-loop.h \
1293         inf-ptrace.h \
1294         infcall.h \
1295         inferior.h \
1296         inflow.h \
1297         inline-frame.h \
1298         interps.h \
1299         jit.h \
1300         language.h \
1301         linespec.h \
1302         linux-fork.h \
1303         linux-nat.h \
1304         linux-record.h \
1305         linux-tdep.h \
1306         location.h \
1307         m2-lang.h \
1308         m32r-tdep.h \
1309         m68k-tdep.h \
1310         macroexp.h \
1311         macroscope.h \
1312         macrotab.h \
1313         main.h \
1314         mdebugread.h \
1315         memattr.h \
1316         memory-map.h \
1317         memrange.h \
1318         microblaze-tdep.h \
1319         mips-linux-tdep.h \
1320         mips-nbsd-tdep.h \
1321         mips-tdep.h \
1322         mn10300-tdep.h \
1323         moxie-tdep.h \
1324         nbsd-nat.h \
1325         nbsd-tdep.h \
1326         nds32-tdep.h \
1327         nios2-tdep.h \
1328         nto-tdep.h \
1329         objc-lang.h \
1330         objfiles.h \
1331         obsd-nat.h \
1332         obsd-tdep.h \
1333         osabi.h \
1334         osdata.h \
1335         p-lang.h \
1336         parser-defs.h \
1337         ppc-fbsd-tdep.h \
1338         ppc-linux-tdep.h \
1339         ppc-nbsd-tdep.h \
1340         ppc-obsd-tdep.h \
1341         ppc-ravenscar-thread.h \
1342         ppc-tdep.h \
1343         ppc64-tdep.h \
1344         probe.h \
1345         proc-utils.h \
1346         procfs.h \
1347         progspace.h \
1348         progspace-and-thread.h \
1349         prologue-value.h \
1350         psympriv.h \
1351         psymtab.h \
1352         ravenscar-thread.h \
1353         record.h \
1354         record-full.h \
1355         regcache.h \
1356         reggroups.h \
1357         regset.h \
1358         remote.h \
1359         remote-fileio.h \
1360         remote-notif.h \
1361         riscv-fbsd-tdep.h \
1362         riscv-tdep.h \
1363         rs6000-aix-tdep.h \
1364         rs6000-tdep.h \
1365         s390-linux-tdep.h \
1366         s390-tdep.h \
1367         score-tdep.h \
1368         selftest-arch.h \
1369         sentinel-frame.h \
1370         ser-base.h \
1371         ser-event.h \
1372         ser-tcp.h \
1373         ser-unix.h \
1374         serial.h \
1375         sh-tdep.h \
1376         sim-regno.h \
1377         skip.h \
1378         sol2-tdep.h \
1379         solib.h \
1380         solib-aix.h \
1381         solib-darwin.h \
1382         solib-spu.h \
1383         solib-svr4.h \
1384         solib-target.h \
1385         solist.h \
1386         source.h \
1387         source-cache.h \
1388         sparc-nat.h \
1389         sparc-ravenscar-thread.h \
1390         sparc-tdep.h \
1391         sparc64-tdep.h \
1392         spu-tdep.h \
1393         stabsread.h \
1394         stack.h \
1395         stap-probe.h \
1396         symfile.h \
1397         symtab.h \
1398         target.h \
1399         target-dcache.h \
1400         target-descriptions.h \
1401         terminal.h \
1402         tid-parse.h \
1403         top.h \
1404         tracefile.h \
1405         tracepoint.h \
1406         trad-frame.h \
1407         target-float.h \
1408         tramp-frame.h \
1409         type-stack.h \
1410         typeprint.h \
1411         ui-file.h \
1412         ui-out.h \
1413         ui-style.h \
1414         user-regs.h \
1415         utils.h \
1416         valprint.h \
1417         value.h \
1418         varobj.h \
1419         varobj-iter.h \
1420         vax-tdep.h \
1421         windows-nat.h \
1422         windows-tdep.h \
1423         x86-bsd-nat.h \
1424         x86-linux-nat.h \
1425         x86-nat.h \
1426         xcoffread.h \
1427         xml-support.h \
1428         xml-syscall.h \
1429         xml-tdesc.h \
1430         xtensa-tdep.h \
1431         arch/aarch64.h \
1432         arch/aarch64-insn.h \
1433         arch/arm.h \
1434         arch/i386.h \
1435         arch/ppc-linux-common.h \
1436         arch/ppc-linux-tdesc.h \
1437         arch/riscv.h \
1438         cli/cli-cmds.h \
1439         cli/cli-decode.h \
1440         cli/cli-script.h \
1441         cli/cli-setshow.h \
1442         cli/cli-style.h \
1443         cli/cli-utils.h \
1444         gdbsupport/buffer.h \
1445         gdbsupport/cleanups.h \
1446         gdbsupport/common-debug.h \
1447         gdbsupport/common-defs.h \
1448         gdbsupport/common-exceptions.h \
1449         gdbsupport/common-gdbthread.h \
1450         gdbsupport/common-regcache.h \
1451         gdbsupport/common-types.h \
1452         gdbsupport/common-utils.h \
1453         gdbsupport/job-control.h \
1454         gdbsupport/errors.h \
1455         gdbsupport/environ.h \
1456         gdbsupport/fileio.h \
1457         gdbsupport/format.h \
1458         gdbsupport/gdb_assert.h \
1459         gdbsupport/gdb_tilde_expand.h \
1460         gdbsupport/gdb_locale.h \
1461         gdbsupport/gdb_proc_service.h \
1462         gdbsupport/gdb_setjmp.h \
1463         gdbsupport/gdb_signals.h \
1464         gdbsupport/gdb_sys_time.h \
1465         gdbsupport/gdb_vecs.h \
1466         gdbsupport/gdb_wait.h \
1467         gdbsupport/common-inferior.h \
1468         gdbsupport/netstuff.h \
1469         gdbsupport/host-defs.h \
1470         gdbsupport/pathstuff.h \
1471         gdbsupport/print-utils.h \
1472         gdbsupport/ptid.h \
1473         gdbsupport/queue.h \
1474         gdbsupport/rsp-low.h \
1475         gdbsupport/run-time-clock.h \
1476         gdbsupport/signals-state-save-restore.h \
1477         gdbsupport/symbol.h \
1478         gdbsupport/tdesc.h \
1479         gdbsupport/vec.h \
1480         gdbsupport/version.h \
1481         gdbsupport/x86-xstate.h \
1482         gdbsupport/xml-utils.h \
1483         compile/compile.h \
1484         compile/compile-c.h \
1485         compile/compile-cplus.h \
1486         compile/compile-internal.h \
1487         compile/compile-object-load.h \
1488         compile/compile-object-run.h \
1489         compile/gcc-c-plugin.h \
1490         compile/gcc-cp-plugin.h \
1491         config/nm-linux.h \
1492         config/nm-nto.h \
1493         config/djgpp/langinfo.h \
1494         config/djgpp/nl_types.h \
1495         config/i386/nm-i386gnu.h \
1496         config/sparc/nm-sol2.h \
1497         mi/mi-cmds.h \
1498         mi/mi-common.h \
1499         mi/mi-console.h \
1500         mi/mi-getopt.h \
1501         mi/mi-main.h \
1502         mi/mi-out.h \
1503         mi/mi-parse.h \
1504         nat/aarch64-linux.h \
1505         nat/aarch64-linux-hw-point.h \
1506         nat/aarch64-sve-linux-ptrace.h \
1507         nat/amd64-linux-siginfo.h \
1508         nat/gdb_ptrace.h \
1509         nat/gdb_thread_db.h \
1510         nat/fork-inferior.h \
1511         nat/linux-btrace.h \
1512         nat/linux-namespaces.h \
1513         nat/linux-nat.h \
1514         nat/linux-osdata.h \
1515         nat/linux-personality.h \
1516         nat/linux-ptrace.h \
1517         nat/linux-waitpid.h \
1518         nat/mips-linux-watch.h \
1519         nat/ppc-linux.h \
1520         nat/x86-cpuid.h \
1521         nat/x86-dregs.h \
1522         nat/x86-gcc-cpuid.h \
1523         nat/x86-linux.h \
1524         nat/x86-linux-dregs.h \
1525         python/py-event.h \
1526         python/py-events.h \
1527         python/py-stopevent.h \
1528         python/python.h \
1529         python/python-internal.h \
1530         regformats/regdef.h \
1531         target/resume.h \
1532         target/target.h \
1533         target/wait.h \
1534         target/waitstatus.h \
1535         tui/tui.h \
1536         tui/tui-command.h \
1537         tui/tui-data.h \
1538         tui/tui-disasm.h \
1539         tui/tui-file.h \
1540         tui/tui-hooks.h \
1541         tui/tui-io.h \
1542         tui/tui-layout.h \
1543         tui/tui-regs.h \
1544         tui/tui-source.h \
1545         tui/tui-stack.h \
1546         tui/tui-win.h \
1547         tui/tui-windata.h \
1548         tui/tui-wingeneral.h \
1549         tui/tui-winsource.h \
1550         x86-tdep.h
1551
1552 # Header files that already have srcdir in them, or which are in objdir.
1553
1554 HFILES_WITH_SRCDIR = \
1555         ../bfd/bfd.h \
1556         jit-reader.h
1557
1558 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
1559 # default their values the way we do for SER_HARDWIRE; in the future
1560 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
1561 # variables analogous to SER_HARDWIRE which get defaulted in this
1562 # Makefile.in
1563
1564 DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) $(SIM_OBS)
1565
1566 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
1567 # Don't include YYFILES (*.c) because we already include *.y in SFILES,
1568 # and it's more useful to see it in the .y file.
1569 TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
1570         $(CONFIG_SRCS)
1571 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
1572
1573 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
1574         mi/mi-common.o \
1575         version.o \
1576         xml-builtin.o \
1577         $(patsubst %.c,%.o,$(COMMON_SFILES)) \
1578         $(SUBDIR_CLI_OBS) \
1579         $(SUBDIR_TARGET_OBS) \
1580         $(SUBDIR_GCC_COMPILE_OBS)
1581
1582 SUBDIRS = doc @subdirs@ data-directory
1583 CLEANDIRS = $(SUBDIRS)
1584
1585 # List of subdirectories in the build tree that must exist.
1586 # This is used to force build failures in existing trees when
1587 # a new directory is added.
1588 # The format here is for the `case' shell command.
1589 REQUIRED_SUBDIRS = doc | testsuite | data-directory
1590
1591 # Parser intermediate files.
1592 YYFILES = \
1593         ada-exp.c \
1594         ada-lex.c \
1595         c-exp.c \
1596         cp-name-parser.c \
1597         d-exp.c \
1598         f-exp.c \
1599         go-exp.c \
1600         m2-exp.c \
1601         p-exp.c \
1602         rust-exp.c
1603
1604 # ada-lex.c is included by another file, so it shouldn't wind up as a
1605 # .o itself.
1606 YYOBJ = $(filter-out ada-lex.o,$(patsubst %.c,%.o,$(YYFILES)))
1607
1608 # Things which need to be built when making a distribution.
1609
1610 DISTSTUFF = $(YYFILES)
1611
1612
1613 # All generated files which can be included by another file.
1614 generated_files = \
1615         ada-lex.c \
1616         config.h \
1617         gcore \
1618         jit-reader.h \
1619         $(NAT_GENERATED_FILES)
1620
1621 # Flags needed to compile Python code
1622 PYTHON_CFLAGS = @PYTHON_CFLAGS@
1623
1624 all: gdb$(EXEEXT) $(CONFIG_ALL) gdb-gdb.py gdb-gdb.gdb
1625         @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
1626
1627 # Rule for compiling .c files in the top-level gdb directory.
1628 # The order-only dependencies ensure that we create the build subdirectories.
1629 %.o: %.c | $(CONFIG_DEP_SUBDIR)
1630         $(COMPILE) $<
1631         $(POSTCOMPILE)
1632
1633 $(CONFIG_DEP_SUBDIR):
1634         $(SHELL) $(srcdir)/../mkinstalldirs $@
1635
1636 # Python files need special flags.
1637 python/%.o: INTERNAL_CFLAGS += $(PYTHON_CFLAGS)
1638
1639 # Rules for compiling .c files in the various source subdirectories.
1640 %.o: $(srcdir)/gdbtk/generic/%.c
1641         $(COMPILE) $(all_gdbtk_cflags) $<
1642         $(POSTCOMPILE)
1643
1644 installcheck:
1645
1646 # The check target can not use subdir_do, because subdir_do does not
1647 # use TARGET_FLAGS_TO_PASS.
1648 check: force
1649         @if [ -f testsuite/Makefile ]; then \
1650           rootme=`pwd`; export rootme; \
1651           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1652           cd testsuite; \
1653           $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
1654         else true; fi
1655
1656 check-perf: 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-perf; \
1662         else true; fi
1663
1664 check-read1: 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-read1; \
1670         else true; fi
1671
1672 check-parallel: 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-parallel; \
1678         else true; fi
1679
1680 # The idea is to parallelize testing of multilibs, for example:
1681 #   make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
1682 # will run 3 concurrent sessions of check, eventually testing all 10
1683 # combinations.  GNU make is required for the % pattern to work, as is
1684 # a shell that expands alternations within braces.  If GNU make is not
1685 # used, this rule will harmlessly fail to match.  Used FORCE_PARALLEL to
1686 # prevent serialized checking due to the passed RUNTESTFLAGS.
1687 # FIXME: use config.status --config not --version, when available.
1688 check//%: force
1689         @if [ -f testsuite/config.status ]; then \
1690           rootme=`pwd`; export rootme; \
1691           rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
1692           target=`echo "$@" | sed 's,//.*,,'`; \
1693           variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
1694           vardots=`echo "$$variant" | sed 's,/,.,g'`; \
1695           testdir=testsuite.$$vardots; \
1696           if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
1697             configargs=`cd testsuite && ./config.status --version | \
1698               sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
1699             $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
1700             (cd $$testdir && \
1701              eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
1702                            "\"--srcdir=\$$rootsrc/testsuite\"" \
1703              ); \
1704           else :; fi && cd $$testdir && \
1705           $(MAKE) $(TARGET_FLAGS_TO_PASS) \
1706             RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
1707             FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
1708             "$$target"; \
1709         else true; fi
1710
1711 # The set of headers checked by 'check-headers' by default.
1712 CHECK_HEADERS = $(HFILES_NO_SRCDIR)
1713
1714 # Try to compile each header in isolation, thus ensuring headers are
1715 # self-contained.
1716 #
1717 # Defaults to checking all $HFILES_NO_SRCDIR headers.
1718 #
1719 # Do:
1720 #
1721 #    make check-headers CHECK_HEADERS="header.h list.h"
1722 #
1723 # to check specific headers.
1724 #
1725 check-headers:
1726         @echo Checking headers.
1727         for i in $(CHECK_HEADERS) ; do \
1728                 $(CXX) $(CXX_DIALECT) -x c++-header -c -fsyntax-only \
1729                 $(INTERNAL_CFLAGS) -include defs.h $(srcdir)/$$i ; \
1730         done
1731 .PHONY: check-headers
1732
1733 info install-info clean-info dvi pdf install-pdf html install-html: force
1734         @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
1735
1736 # Traditionally "install" depends on "all".  But it may be useful
1737 # not to; for example, if the user has made some trivial change to a
1738 # source file and doesn't care about rebuilding or just wants to save the
1739 # time it takes for make to check that all is up to date.
1740 # install-only is intended to address that need.
1741 install: all
1742         @$(MAKE) $(FLAGS_TO_PASS) install-only
1743
1744 install-only: $(CONFIG_INSTALL)
1745         transformed_name=`t='$(program_transform_name)'; \
1746                           echo gdb | sed -e "$$t"` ; \
1747                 if test "x$$transformed_name" = x; then \
1748                   transformed_name=gdb ; \
1749                 else \
1750                   true ; \
1751                 fi ; \
1752                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1753                 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1754                         $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1755                 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(includedir)/gdb ; \
1756                 $(INSTALL_DATA) jit-reader.h $(DESTDIR)$(includedir)/gdb/jit-reader.h
1757         if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
1758         then \
1759           transformed_name=`t='$(program_transform_name)'; \
1760                             echo gcore | sed -e "$$t"` ; \
1761                   if test "x$$transformed_name" = x; then \
1762                     transformed_name=gcore ; \
1763                   else \
1764                     true ; \
1765                   fi ; \
1766                   $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1767                   $(INSTALL_SCRIPT) gcore \
1768                           $(DESTDIR)$(bindir)/$$transformed_name; \
1769         fi
1770         transformed_name=`t='$(program_transform_name)'; \
1771                           echo gdb-add-index | sed -e "$$t"` ; \
1772         if test "x$$transformed_name" = x; then \
1773           transformed_name=gdb-add-index ; \
1774         else \
1775           true ; \
1776         fi ; \
1777         $(INSTALL_SCRIPT) $(srcdir)/contrib/gdb-add-index.sh \
1778                 $(DESTDIR)$(bindir)/$$transformed_name
1779         @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1780
1781 install-strip:
1782         $(MAKE) $(FLAGS_TO_PASS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1783           install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1784           `test -z '$(STRIP)' || \
1785             echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install-only
1786
1787 install-guile:
1788         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/guile/gdb
1789
1790 install-python:
1791         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(GDB_DATADIR)/python/gdb
1792
1793 uninstall: force $(CONFIG_UNINSTALL)
1794         transformed_name=`t='$(program_transform_name)'; \
1795                           echo gdb | sed -e $$t` ; \
1796                 if test "x$$transformed_name" = x; then \
1797                   transformed_name=gdb ; \
1798                 else \
1799                   true ; \
1800                 fi ; \
1801                 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1802                       $(DESTDIR)$(man1dir)/$$transformed_name.1
1803         if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" != x; \
1804         then \
1805           transformed_name=`t='$(program_transform_name)'; \
1806                             echo gcore | sed -e "$$t"` ; \
1807                   if test "x$$transformed_name" = x; then \
1808                     transformed_name=gcore ; \
1809                   else \
1810                     true ; \
1811                   fi ; \
1812                   rm -f $(DESTDIR)$(bindir)/$$transformed_name; \
1813         fi
1814         @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
1815
1816 # The C++ name parser can be built standalone for testing.
1817 test-cp-name-parser.o: cp-name-parser.c
1818         $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
1819         $(POSTCOMPILE)
1820
1821 test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
1822         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) \
1823                 -o test-cp-name-parser$(EXEEXT) test-cp-name-parser.o \
1824                 $(LIBIBERTY)
1825
1826 # We do this by grepping through sources.  If that turns out to be too slow,
1827 # maybe we could just require every .o file to have an initialization routine
1828 # of a given name (top.o -> _initialize_top, etc.).
1829 #
1830 # Formatting conventions:  The name of the _initialize_* routines must start
1831 # in column zero, and must not be inside #if.
1832 #
1833 # Note that the set of files with init functions might change, or the names
1834 # of the functions might change, so this files needs to depend on all the
1835 # source files that will be linked into gdb.  However, due to the way
1836 # this Makefile has generally been written, we do this indirectly, by
1837 # computing the list of source files from the list of object files.
1838
1839 INIT_FILES = \
1840         $(patsubst %.o,%.c, \
1841           $(patsubst %-exp.o,%-exp.y, \
1842             $(filter-out init.o version.o %_S.o %_U.o,\
1843               $(COMMON_OBS))))
1844
1845 init.c: stamp-init; @true
1846 stamp-init: $(INIT_FILES)
1847         @$(ECHO_INIT_C) echo "Making init.c"
1848         @rm -f init.c-tmp init.l-tmp
1849         @touch init.c-tmp
1850         @-for f in $(INIT_FILES); do \
1851             sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' \
1852                 $(srcdir)/$$f 2>/dev/null; \
1853         done > init.l-tmp
1854         @echo '/* Do not modify this file.  */' >>init.c-tmp
1855         @echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
1856         @echo '#include "defs.h"      /* For initialize_file_ftype.  */' >>init.c-tmp
1857         @echo 'extern void initialize_all_files(void);' >>init.c-tmp
1858         @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
1859         @echo 'void' >>init.c-tmp
1860         @echo 'initialize_all_files (void)' >>init.c-tmp
1861         @echo '{' >>init.c-tmp
1862         @sed -e 's/\(.*\)/  _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
1863         @echo '}' >>init.c-tmp
1864         @$(SHELL) $(srcdir)/../move-if-change init.c-tmp init.c
1865         @echo stamp > stamp-init
1866
1867 .PRECIOUS: init.c
1868
1869 # Create a library of the gdb object files and build GDB by linking
1870 # against that.
1871 #
1872 # init.o is very important.  It pulls in the rest of GDB.
1873 LIBGDB_OBS = $(sort $(COMMON_OBS)) init.o
1874 libgdb.a: $(LIBGDB_OBS)
1875         -rm -f libgdb.a
1876         $(AR) q libgdb.a $(LIBGDB_OBS)
1877         $(RANLIB) libgdb.a
1878
1879 # Removing the old gdb first works better if it is running, at least on SunOS.
1880 gdb$(EXEEXT): gdb.o $(LIBGDB_OBS) $(CDEPS) $(TDEPLIBS)
1881         $(SILENCE) rm -f gdb$(EXEEXT)
1882         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1883                 -o gdb$(EXEEXT) gdb.o $(LIBGDB_OBS) \
1884                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1885 ifneq ($(CODESIGN_CERT),)
1886         $(ECHO_SIGN) $(CODESIGN) -s $(CODESIGN_CERT) gdb$(EXEEXT)
1887 endif
1888
1889 # Convenience rule to handle recursion.
1890 .PHONY: all-data-directory
1891 all-data-directory: data-directory/Makefile
1892         @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=data-directory subdir_do
1893
1894 # This is useful when debugging GDB, because some Unix's don't let you run GDB
1895 # on itself without copying the executable.  So "make gdb1" will make
1896 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1897 # Removing gdb1 before the copy is the right thing if gdb1 is open
1898 # in another process.
1899 gdb1$(EXEEXT): gdb$(EXEEXT)
1900         rm -f gdb1$(EXEEXT)
1901         cp gdb$(EXEEXT) gdb1$(EXEEXT)
1902
1903 # Put the proper machine-specific files first, so M-. on a machine
1904 # specific routine gets the one for the correct machine.  (FIXME: those
1905 # files go in twice; we should be removing them from the main list).
1906
1907 # TAGS depends on all the files that go into it so you can rebuild TAGS
1908 # with `make TAGS' and not have to say `rm TAGS' first.
1909
1910 GDB_NM_FILE = @GDB_NM_FILE@
1911 TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
1912         @echo Making TAGS
1913         etags `(test -n "$(GDB_NM_FILE)" && echo "$(srcdir)/$(GDB_NM_FILE)")` \
1914         `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
1915                 echo $(srcdir)/$$i ; \
1916         done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1917                 echo $$i ; \
1918         done) | sed -e 's/\.o$$/\.c/'` \
1919         `find $(srcdir)/config -name '*.h' -print`
1920
1921 tags: TAGS
1922
1923 clean mostlyclean: $(CONFIG_CLEAN)
1924         @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
1925         rm -f *.o *.a *~ init.c-tmp init.l-tmp version.c-tmp
1926         rm -f init.c stamp-init version.c stamp-version
1927         rm -f gdb$(EXEEXT) core make.log
1928         rm -f gdb[0-9]$(EXEEXT)
1929         rm -f test-cp-name-parser$(EXEEXT)
1930         rm -f xml-builtin.c stamp-xml
1931         rm -f $(DEPDIR)/*
1932         for i in $(CONFIG_SRC_SUBDIR); do \
1933                 rm -f $$i/*.o;  \
1934                 rm -f $$i/$(DEPDIR)/*; \
1935         done
1936
1937 # This used to depend on c-exp.c m2-exp.c TAGS
1938 # I believe this is wrong; the makefile standards for distclean just
1939 # describe removing files; the only sort of "re-create a distribution"
1940 # functionality described is if the distributed files are unmodified.
1941 # NB: While GDBSERVER might be configured on native systems, it isn't
1942 # always included in SUBDIRS.  Remove the gdbserver files explicitly.
1943 distclean: clean
1944         @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
1945         rm -f gdbserver/config.status gdbserver/config.log
1946         rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1947         rm -f gdbserver/Makefile gdbserver/config.cache
1948         rm -f nm.h config.status config.h stamp-h b jit-reader.h
1949         rm -f gdb-gdb.py gdb-gdb.gdb
1950         rm -f y.output yacc.acts yacc.tmp y.tab.h
1951         rm -f config.log config.cache
1952         rm -f Makefile
1953         rm -rf $(DEPDIR)
1954         for i in $(CONFIG_SRC_SUBDIR); do \
1955                 if test -d $$i/$(DEPDIR); then rmdir $$i/$(DEPDIR); fi \
1956         done
1957
1958 maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1959 realclean: maintainer-clean
1960
1961 local-maintainer-clean:
1962         @echo "This command is intended for maintainers to use;"
1963         @echo "it deletes files that may require special tools to rebuild."
1964         rm -f c-exp.c \
1965                 cp-name-parser.c \
1966                 ada-lex.c ada-exp.c \
1967                 d-exp.c f-exp.c go-exp.c m2-exp.c p-exp.c rust-exp.c
1968         rm -f TAGS
1969         rm -f $(YYFILES)
1970         rm -f nm.h config.status
1971
1972 do-maintainer-clean:
1973         @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
1974                 subdir_do
1975
1976 diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1977         cd doc; $(MAKE) $(MFLAGS) diststuff
1978
1979 subdir_do: force
1980         @for i in $(DODIRS); do \
1981                 case $$i in \
1982                 $(REQUIRED_SUBDIRS)) \
1983                         if [ ! -f ./$$i/Makefile ] ; then \
1984                                 echo "Missing $$i/Makefile" >&2 ; \
1985                                 exit 1 ; \
1986                         fi ;; \
1987                 esac ; \
1988                 if [ -f ./$$i/Makefile ] ; then \
1989                         if (cd ./$$i; \
1990                                 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1991                         else exit 1 ; fi ; \
1992                 else true ; fi ; \
1993         done
1994
1995 Makefile: Makefile.in config.status
1996         # Regenerate the Makefile and the tm.h / nm.h links.
1997         CONFIG_FILES="Makefile" \
1998           CONFIG_COMMANDS= \
1999           CONFIG_HEADERS= \
2000           $(SHELL) config.status
2001
2002 data-directory/Makefile: data-directory/Makefile.in config.status
2003         CONFIG_FILES="data-directory/Makefile" \
2004           CONFIG_COMMANDS="depfiles" \
2005           CONFIG_HEADERS= \
2006           CONFIG_LINKS= \
2007           $(SHELL) config.status
2008
2009 .PHONY: run
2010 run: Makefile
2011         ./gdb$(EXEEXT) --data-directory=`pwd`/data-directory $(GDBFLAGS)
2012
2013 jit-reader.h: $(srcdir)/jit-reader.in
2014         $(SHELL) config.status $@
2015
2016 gcore: $(srcdir)/gcore.in
2017         $(SHELL) config.status $@
2018
2019 gdb-gdb.py: $(srcdir)/gdb-gdb.py.in
2020         $(SHELL) config.status $@
2021
2022 gdb-gdb.gdb: $(srcdir)/gdb-gdb.gdb.in
2023         $(SHELL) config.status $@
2024
2025 config.h: stamp-h ; @true
2026 stamp-h: $(srcdir)/config.in config.status
2027         CONFIG_HEADERS=config.h:config.in \
2028           CONFIG_COMMANDS="default depdir" \
2029           CONFIG_FILES= \
2030           CONFIG_LINKS= \
2031           $(SHELL) config.status
2032
2033 config.status: $(srcdir)/configure configure.nat configure.tgt configure.host ../bfd/development.sh
2034         $(SHELL) config.status --recheck
2035
2036 ACLOCAL = aclocal
2037 ACLOCAL_AMFLAGS = -I ../config
2038
2039 # Keep these in sync with the includes in acinclude.m4.
2040 aclocal_m4_deps = \
2041         configure.ac \
2042         acx_configure_dir.m4 \
2043         libmcheck.m4 \
2044         transform.m4 \
2045         ../bfd/bfd.m4 \
2046         ../config/acinclude.m4 \
2047         ../config/plugins.m4 \
2048         ../config/lead-dot.m4 \
2049         ../config/override.m4 \
2050         ../config/largefile.m4 \
2051         ../config/gettext-sister.m4 \
2052         ../config/lib-ld.m4 \
2053         ../config/lib-prefix.m4 \
2054         ../config/lib-link.m4 \
2055         ../config/acx.m4 \
2056         ../config/tcl.m4 \
2057         ../config/depstand.m4 \
2058         ../config/lcmessage.m4 \
2059         ../config/codeset.m4 \
2060         ../config/zlib.m4
2061
2062 $(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
2063         cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
2064
2065 AUTOCONF = autoconf
2066 configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
2067 $(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2068         cd $(srcdir) && $(AUTOCONF)
2069
2070 AUTOHEADER = autoheader
2071 $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
2072         cd $(srcdir) && $(AUTOHEADER)
2073         rm -f stamp-h
2074         touch $@
2075
2076 # automatic rebuilding in automake-generated Makefiles requires
2077 # this rule in the toplevel Makefile, which, with GNU make, causes
2078 # the desired updates through the implicit regeneration of the Makefile
2079 # and all of its prerequisites.
2080 am--refresh:
2081         @:
2082
2083 force:
2084
2085 # Documentation!
2086 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2087 doc/refcard.dvi:
2088         cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
2089
2090 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
2091 doc/refcard.ps:
2092         cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
2093
2094 # GDB MANUAL: TeX dvi file
2095 doc/gdb.dvi:
2096         cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
2097
2098 # GDB MANUAL: info file
2099 doc/gdb.info:
2100         cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
2101
2102 # Make copying.c from COPYING
2103 $(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
2104         awk -f $(srcdir)/copying.awk \
2105                 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
2106         mv $(srcdir)/copying.tmp $(srcdir)/copying.c
2107
2108 version.c: stamp-version; @true
2109 # Note that the obvious names for the temp file are taken by
2110 # create-version.sh.
2111 stamp-version: Makefile version.in $(srcdir)/../bfd/version.h $(srcdir)/gdbsupport/create-version.sh
2112         $(ECHO_GEN) $(SHELL) $(srcdir)/gdbsupport/create-version.sh $(srcdir) \
2113             $(host_alias) $(target_alias) version-t.t
2114         @$(SHELL) $(srcdir)/../move-if-change version-t.t version.c
2115         @echo stamp > stamp-version
2116
2117
2118 gdb.cxref: $(SFILES)
2119         cxref -I. $(SFILES) >gdb.cxref
2120
2121 force_update:
2122
2123 # GNU Make has an annoying habit of putting *all* the Makefile variables
2124 # into the environment, unless you include this target as a circumvention.
2125 # Rumor is that this will be fixed (and this target can be removed)
2126 # in GNU Make 4.0.
2127 .NOEXPORT:
2128
2129 # GNU Make 3.63 has a different problem: it keeps tacking command line
2130 # overrides onto the definition of $(MAKE).  This variable setting
2131 # will remove them.
2132 MAKEOVERRIDES =
2133
2134 ALLDEPFILES = \
2135         aarch64-fbsd-nat.c \
2136         aarch64-fbsd-tdep.c \
2137         aarch64-linux-nat.c \
2138         aarch64-linux-tdep.c \
2139         aarch64-newlib-tdep.c \
2140         aarch64-ravenscar-thread.c \
2141         aarch64-tdep.c \
2142         aix-thread.c \
2143         alpha-bsd-nat.c \
2144         alpha-bsd-tdep.c \
2145         alpha-linux-nat.c \
2146         alpha-linux-tdep.c \
2147         alpha-mdebug-tdep.c \
2148         alpha-nbsd-tdep.c \
2149         alpha-obsd-tdep.c \
2150         alpha-tdep.c \
2151         amd64-bsd-nat.c \
2152         amd64-darwin-tdep.c \
2153         amd64-dicos-tdep.c \
2154         amd64-fbsd-nat.c \
2155         amd64-fbsd-tdep.c \
2156         amd64-linux-nat.c \
2157         amd64-linux-tdep.c \
2158         amd64-nat.c \
2159         amd64-nbsd-nat.c \
2160         amd64-nbsd-tdep.c \
2161         amd64-obsd-nat.c \
2162         amd64-obsd-tdep.c \
2163         amd64-sol2-tdep.c \
2164         amd64-tdep.c \
2165         arc-tdep.c \
2166         arm.c \
2167         arm-bsd-tdep.c \
2168         arm-fbsd-nat.c \
2169         arm-fbsd-tdep.c \
2170         arm-get-next-pcs.c \
2171         arm-linux.c \
2172         arm-linux-nat.c \
2173         arm-linux-tdep.c \
2174         arm-nbsd-nat.c \
2175         arm-nbsd-tdep.c \
2176         arm-obsd-tdep.c \
2177         arm-symbian-tdep.c \
2178         arm-tdep.c \
2179         avr-tdep.c \
2180         bfin-linux-tdep.c \
2181         bfin-tdep.c \
2182         bsd-kvm.c \
2183         bsd-uthread.c \
2184         csky-linux-tdep.c \
2185         csky-tdep.c \
2186         darwin-nat.c \
2187         dicos-tdep.c \
2188         fbsd-nat.c \
2189         fbsd-tdep.c \
2190         fork-child.c \
2191         ft32-tdep.c \
2192         glibc-tdep.c \
2193         go32-nat.c \
2194         h8300-tdep.c \
2195         hppa-bsd-tdep.c \
2196         hppa-linux-nat.c \
2197         hppa-linux-tdep.c \
2198         hppa-nbsd-nat.c \
2199         hppa-nbsd-tdep.c \
2200         hppa-obsd-nat.c \
2201         hppa-obsd-tdep.c \
2202         hppa-tdep.c \
2203         i386-bsd-nat.c \
2204         i386-bsd-tdep.c \
2205         i386-cygwin-tdep.c \
2206         i386-darwin-nat.c \
2207         i386-darwin-tdep.c \
2208         i386-dicos-tdep.c \
2209         i386-fbsd-nat.c \
2210         i386-fbsd-tdep.c \
2211         i386-gnu-nat.c \
2212         i386-gnu-tdep.c \
2213         i386-linux-nat.c \
2214         i386-linux-tdep.c \
2215         i386-nbsd-nat.c \
2216         i386-nbsd-tdep.c \
2217         i386-obsd-nat.c \
2218         i386-obsd-tdep.c \
2219         i386-sol2-nat.c \
2220         i386-sol2-tdep.c \
2221         i386-tdep.c \
2222         i387-tdep.c \
2223         ia64-libunwind-tdep.c \
2224         ia64-linux-nat.c \
2225         ia64-linux-tdep.c \
2226         ia64-tdep.c \
2227         ia64-vms-tdep.c \
2228         inf-ptrace.c \
2229         linux-fork.c \
2230         linux-record.c \
2231         linux-tdep.c \
2232         lm32-tdep.c \
2233         m32r-linux-nat.c \
2234         m32r-linux-tdep.c \
2235         m32r-tdep.c \
2236         m68hc11-tdep.c \
2237         m68k-bsd-nat.c \
2238         m68k-bsd-tdep.c \
2239         m68k-linux-nat.c \
2240         m68k-linux-tdep.c \
2241         m68k-tdep.c \
2242         microblaze-linux-tdep.c \
2243         microblaze-tdep.c \
2244         mingw-hdep.c \
2245         mips-fbsd-nat.c \
2246         mips-fbsd-tdep.c \
2247         mips-linux-nat.c \
2248         mips-linux-tdep.c \
2249         mips-nbsd-nat.c \
2250         mips-nbsd-tdep.c \
2251         mips-sde-tdep.c \
2252         mips-tdep.c \
2253         mips64-obsd-nat.c \
2254         mips64-obsd-tdep.c \
2255         msp430-tdep.c \
2256         nbsd-nat.c \
2257         nbsd-tdep.c \
2258         nds32-tdep.c \
2259         nios2-linux-tdep.c \
2260         nios2-tdep.c \
2261         obsd-nat.c \
2262         obsd-tdep.c \
2263         posix-hdep.c \
2264         ppc-fbsd-nat.c \
2265         ppc-fbsd-tdep.c \
2266         ppc-linux-nat.c \
2267         ppc-linux-tdep.c \
2268         ppc-nbsd-nat.c \
2269         ppc-nbsd-tdep.c \
2270         ppc-obsd-nat.c \
2271         ppc-obsd-tdep.c \
2272         ppc-ravenscar-thread.c \
2273         ppc-sysv-tdep.c \
2274         ppc64-tdep.c \
2275         procfs.c \
2276         ravenscar-thread.c \
2277         remote-sim.c \
2278         riscv-fbsd-nat.c \
2279         riscv-fbsd-tdep.c \
2280         riscv-linux-nat.c \
2281         riscv-linux-tdep.c \
2282         riscv-tdep.c \
2283         rl78-tdep.c \
2284         rs6000-lynx178-tdep.c \
2285         rs6000-nat.c \
2286         rs6000-tdep.c \
2287         rx-tdep.c \
2288         s390-linux-nat.c \
2289         s390-linux-tdep.c \
2290         s390-tdep.c \
2291         score-tdep.c \
2292         ser-go32.c \
2293         ser-mingw.c \
2294         ser-pipe.c \
2295         ser-tcp.c \
2296         ser-uds.c \
2297         sh-nbsd-nat.c \
2298         sh-nbsd-tdep.c \
2299         sh-tdep.c \
2300         sol2-tdep.c \
2301         solib-aix.c \
2302         solib-spu.c \
2303         solib-svr4.c \
2304         sparc-linux-nat.c \
2305         sparc-linux-tdep.c \
2306         sparc-nat.c \
2307         sparc-nbsd-nat.c \
2308         sparc-nbsd-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-nbsd-nat.c \
2320         sparc64-nbsd-tdep.c \
2321         sparc64-obsd-nat.c \
2322         sparc64-obsd-tdep.c \
2323         sparc64-sol2-tdep.c \
2324         sparc64-tdep.c \
2325         spu-linux-nat.c \
2326         spu-multiarch.c \
2327         spu-tdep.c \
2328         tilegx-linux-nat.c \
2329         tilegx-linux-tdep.c \
2330         tilegx-tdep.c \
2331         v850-tdep.c \
2332         vax-bsd-nat.c \
2333         vax-nbsd-tdep.c \
2334         vax-tdep.c \
2335         windows-nat.c \
2336         windows-tdep.c \
2337         x86-nat.c \
2338         x86-tdep.c \
2339         xcoffread.c \
2340         xstormy16-tdep.c \
2341         xtensa-config.c \
2342         xtensa-linux-nat.c \
2343         xtensa-linux-tdep.c \
2344         xtensa-tdep.c \
2345         xtensa-xtregs.c \
2346         gdbsupport/mingw-strerror.c \
2347         gdbsupport/posix-strerror.c
2348
2349 # Some files need explicit build rules (due to -Werror problems) or due
2350 # to sub-directory fun 'n' games.
2351
2352 # ada-exp.c can appear in srcdir, for releases; or in ., for
2353 # development builds.
2354 ADA_EXP_C = `if test -f ada-exp.c; then echo ada-exp.c; else echo $(srcdir)/ada-exp.c; fi`
2355
2356 ada-exp.o: ada-exp.c
2357         $(COMPILE) $(ADA_EXP_C)
2358         $(POSTCOMPILE)
2359
2360 # Message files.  Based on code in gcc/Makefile.in.
2361
2362 # Rules for generating translated message descriptions.  Disabled by
2363 # autoconf if the tools are not available.
2364
2365 .PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
2366
2367 all-po: $(CATALOGS)
2368
2369 # This notation should be acceptable to all Make implementations used
2370 # by people who are interested in updating .po files.
2371 update-po: $(CATALOGS:.gmo=.pox)
2372
2373 # N.B. We do not attempt to copy these into $(srcdir).  The snapshot
2374 # script does that.
2375 %.gmo: %.po
2376         -test -d po || mkdir po
2377         $(GMSGFMT) --statistics -o $@ $<
2378
2379 # The new .po has to be gone over by hand, so we deposit it into
2380 # build/po with a different extension.  If build/po/$(PACKAGE).pot
2381 # exists, use it (it was just created), else use the one in srcdir.
2382 %.pox: %.po
2383         -test -d po || mkdir po
2384         $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
2385                         then echo po/$(PACKAGE).pot; \
2386                         else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
2387
2388 # This rule has to look for .gmo modules in both srcdir and the cwd,
2389 # and has to check that we actually have a catalog for each language,
2390 # in case they weren't built or included with the distribution.
2391 install-po:
2392         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
2393         cats="$(CATALOGS)"; for cat in $$cats; do \
2394           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2395           if [ -f $$cat ]; then :; \
2396           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2397           else continue; \
2398           fi; \
2399           dir=$(localedir)/$$lang/LC_MESSAGES; \
2400           echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
2401           $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
2402           echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2403           $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
2404         done
2405 uninstall-po:
2406         cats="$(CATALOGS)"; for cat in $$cats; do \
2407           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
2408           if [ -f $$cat ]; then :; \
2409           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
2410           else continue; \
2411           fi; \
2412           dir=$(localedir)/$$lang/LC_MESSAGES; \
2413           rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
2414         done
2415 # Delete po/*.gmo only if we are not building in the source directory.
2416 clean-po:
2417         -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
2418
2419 # Rule for regenerating the message template (gdb.pot).  Instead of
2420 # forcing everyone to edit POTFILES.in, which proved impractical, this
2421 # rule has no dependencies and always regenerates gdb.pot.  This is
2422 # relatively harmless since the .po files do not directly depend on
2423 # it.  The .pot file is left in the build directory.  Since GDB's
2424 # Makefile lacks a cannonical list of sources (missing xm, tm and nm
2425 # files) force this rule.
2426 $(PACKAGE).pot: po/$(PACKAGE).pot
2427 po/$(PACKAGE).pot: force
2428         -test -d po || mkdir po
2429         sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
2430
2431
2432 #
2433 # YACC/LEX dependencies
2434 #
2435 # LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
2436 # exist in srcdir, then compiled in objdir to LANG-exp.o.  If we
2437 # said LANG-exp.c rather than ./c-exp.c some makes would
2438 # sometimes re-write it into $(srcdir)/c-exp.c.  Remove bogus
2439 # decls for malloc/realloc/free which conflict with everything else.
2440 # Strictly speaking c-exp.c should therefore depend on
2441 # Makefile.in, but that was a pretty big annoyance.
2442
2443 %.c: %.y
2444         $(ECHO_YACC) $(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- \
2445                 $(YACC) $(YFLAGS) || (rm -f $@.tmp; false)
2446         @sed -e '/extern.*malloc/d' \
2447              -e '/extern.*realloc/d' \
2448              -e '/extern.*free/d' \
2449              -e '/include.*malloc.h/d' \
2450              -e 's/\([^x]\)malloc/\1xmalloc/g' \
2451              -e 's/\([^x]\)realloc/\1xrealloc/g' \
2452              -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2453              -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2454              -e '/^#line.*y.tab.c/d' \
2455              -e 's/YY_NULL/YY_NULLPTR/g' \
2456           < $@.tmp > $@.new && \
2457           rm -f $@.tmp && \
2458           mv $@.new $@
2459 %.c: %.l
2460         $(ECHO_LEX) $(FLEX) -t $<  \
2461             | sed -e '/extern.*malloc/d' \
2462                 -e '/extern.*realloc/d' \
2463                 -e '/extern.*free/d' \
2464                 -e '/include.*malloc.h/d' \
2465                 -e 's/\([^x]\)malloc/\1xmalloc/g' \
2466                 -e 's/\([^x]\)realloc/\1xrealloc/g' \
2467                 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
2468                 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
2469                 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
2470               > $@.new && \
2471             mv $@.new $@
2472
2473 .PRECIOUS: ada-lex.c
2474
2475 # XML rules
2476
2477 xml-builtin.c: stamp-xml; @true
2478 stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
2479         $(SILENCE) rm -f xml-builtin.tmp
2480         $(ECHO_GEN_XML_BUILTIN) AWK="$(AWK)" \
2481           $(SHELL) $(srcdir)/features/feature_to_c.sh \
2482           xml-builtin.tmp $(XMLFILES)
2483         $(SILENCE) $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
2484         $(SILENCE) echo stamp > stamp-xml
2485
2486 .PRECIOUS: xml-builtin.c
2487
2488 #
2489 # GDBTK sub-directory
2490 #
2491
2492 all-gdbtk: insight$(EXEEXT)
2493
2494 install-gdbtk:
2495         transformed_name=`t='$(program_transform_name)'; \
2496                   echo insight | sed -e $$t` ; \
2497         if test "x$$transformed_name" = x; then \
2498           transformed_name=insight ; \
2499         else \
2500           true ; \
2501         fi ; \
2502         $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
2503         $(INSTALL_PROGRAM) insight$(EXEEXT) \
2504                 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2505         $(SHELL) $(srcdir)/../mkinstalldirs \
2506                 $(DESTDIR)$(GDBTK_LIBRARY) ; \
2507         $(SHELL) $(srcdir)/../mkinstalldirs \
2508                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
2509         $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
2510                 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
2511         $(SHELL) $(srcdir)/../mkinstalldirs \
2512                 $(DESTDIR)$(GDBTK_LIBRARY)/images \
2513                 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
2514         $(SHELL) $(srcdir)/../mkinstalldirs \
2515                 $(DESTDIR)$(GDBTK_LIBRARY)/help \
2516                 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
2517                 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
2518         cd $(srcdir)/gdbtk/library ; \
2519         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; \
2520           do \
2521                 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
2522           done ;
2523
2524 uninstall-gdbtk:
2525         transformed_name=`t='$(program_transform_name)'; \
2526                   echo insight | sed -e $$t` ; \
2527         if test "x$$transformed_name" = x; then \
2528                 transformed_name=insight ; \
2529         else \
2530                 true ; \
2531         fi ; \
2532         rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
2533         rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
2534
2535 clean-gdbtk:
2536         rm -f insight$(EXEEXT)
2537
2538 # Removing the old gdb first works better if it is running, at least on SunOS.
2539 insight$(EXEEXT): gdbtk-main.o libgdb.a $(CDEPS) $(TDEPLIBS)
2540         rm -f insight$(EXEEXT)
2541         $(ECHO_CXXLD) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
2542                 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
2543                 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
2544
2545 gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
2546         $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
2547
2548 all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
2549                 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
2550                 $(GDBTK_CFLAGS) \
2551                 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
2552                 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
2553
2554 #
2555 # Dependency tracking.
2556 #
2557
2558 ifeq ($(DEPMODE),depmode=gcc3)
2559 # Note that we put the dependencies into a .Tpo file, then move them
2560 # into place if the compile succeeds.  We need this because gcc does
2561 # not atomically write the dependency output file.
2562 override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2563         -MF $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo
2564 override POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(basename $(@F)).Tpo \
2565         $(@D)/$(DEPDIR)/$(basename $(@F)).Po
2566 else
2567 override COMPILE.pre = source='$<' object='$@' libtool=no \
2568         DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) \
2569         $(CXX) -x c++ $(CXX_DIALECT)
2570 # depcomp handles atomicity for us, so we don't need a postcompile
2571 # step.
2572 override POSTCOMPILE =
2573 endif
2574
2575 # A list of all the objects we might care about in this build, for
2576 # dependency tracking.
2577 all_object_files = gdb.o $(LIBGDB_OBS) gdbtk-main.o \
2578         test-cp-name-parser.o
2579
2580 # All the .deps files to include.
2581 all_deps_files = $(foreach dep,$(patsubst %.o,%.Po,$(all_object_files)),\
2582     $(dir $(dep))/$(DEPDIR)/$(notdir $(dep)))
2583
2584 # Ensure that generated files are created early.  Use order-only
2585 # dependencies if available.  They require GNU make 3.80 or newer,
2586 # and the .VARIABLES variable was introduced at the same time.
2587 ifdef .VARIABLES
2588 $(all_object_files): | $(generated_files)
2589 else
2590 $(all_object_files) : $(generated_files)
2591 endif
2592
2593 # Dependencies.
2594 -include $(all_deps_files)
2595
2596 # Disable implicit make rules.
2597 include $(srcdir)/disable-implicit-rules.mk
2598
2599 ### end of the gdb Makefile.in.