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