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