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