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