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