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