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