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