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