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