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