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