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