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