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