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