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