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