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