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