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