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