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