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