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