* windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
6aba47ca 1# Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4c38e0a4 2# 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
281b533b 3# Free Software Foundation, Inc.
c906108c
SS
4
5# This file is part of GDB.
6
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
5b1ba0e5 9# the Free Software Foundation; either version 3 of the License, or
c906108c 10# (at your option) any later version.
3cf93817 11#
c906108c
SS
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
3cf93817 16#
c906108c 17# You should have received a copy of the GNU General Public License
5b1ba0e5 18# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
19
20prefix = @prefix@
21exec_prefix = @exec_prefix@
22
23host_alias = @host_alias@
24target_alias = @target_alias@
25program_transform_name = @program_transform_name@
26bindir = @bindir@
27libdir = @libdir@
28tooldir = $(libdir)/$(target_alias)
29
30datadir = @datadir@
ddc9cd0f 31localedir = @localedir@
c906108c
SS
32mandir = @mandir@
33man1dir = $(mandir)/man1
34man2dir = $(mandir)/man2
35man3dir = $(mandir)/man3
36man4dir = $(mandir)/man4
37man5dir = $(mandir)/man5
38man6dir = $(mandir)/man6
39man7dir = $(mandir)/man7
40man8dir = $(mandir)/man8
41man9dir = $(mandir)/man9
42infodir = @infodir@
89a34d1b
JM
43datarootdir = @datarootdir@
44docdir = @docdir@
45htmldir = @htmldir@
46pdfdir = @pdfdir@
c906108c
SS
47includedir = @includedir@
48
20e95c23
DJ
49# This can be referenced by `LIBINTL' as computed by
50# ZW_GNU_GETTEXT_SISTER_DIR.
c906108c
SS
51top_builddir = .
52
53SHELL = @SHELL@
54EXEEXT = @EXEEXT@
55
7a292a7a 56AWK = @AWK@
b3a90332 57LN_S = @LN_S@
7a292a7a 58
c906108c
SS
59INSTALL = @INSTALL@
60INSTALL_PROGRAM = @INSTALL_PROGRAM@
61INSTALL_DATA = @INSTALL_DATA@
62
72bdd927
AC
63DESTDIR =
64
c906108c
SS
65AR = @AR@
66AR_FLAGS = qv
67RANLIB = @RANLIB@
68DLLTOOL = @DLLTOOL@
69WINDRES = @WINDRES@
b9f21955 70MIG = @MIG@
c906108c 71
ddc9cd0f
AC
72XGETTEXT = @XGETTEXT@
73GMSGFMT = @GMSGFMT@
74MSGMERGE = msgmerge
75
76PACKAGE = @PACKAGE@
77CATALOGS = @CATALOGS@
78
c906108c
SS
79# If you are compiling with GCC, make sure that either 1) You have the
80# fixed include files where GCC can reach them, or 2) You use the
81# -traditional flag. Otherwise the ioctl calls in inflow.c
82# will be incorrectly compiled. The "fixincludes" script in the gcc
83# distribution will fix your include files up.
84CC=@CC@
85
a417dc56
RW
86# Dependency tracking information.
87DEPMODE = @CCDEPMODE@
88DEPDIR = @DEPDIR@
89depcomp = $(SHELL) $(srcdir)/../depcomp
90
91# Note that these are overridden by GNU make-specific code below if
92# GNU make is used. The overrides implement dependency tracking.
93COMPILE.pre = $(CC)
94COMPILE.post = -c -o $@
95COMPILE = $(COMPILE.pre) $(INTERNAL_CFLAGS) $(COMPILE.post)
96POSTCOMPILE = @true
97
c906108c
SS
98# Directory containing source files.
99srcdir = @srcdir@
100VPATH = @srcdir@
101
102YACC=@YACC@
103
3cf93817 104# This is used to rebuild ada-lex.c from ada-lex.l. If the program is
6d3e79c6
AS
105# not defined, but ada-lex.c is present, compilation will continue,
106# possibly with a warning.
107FLEX = flex
108
c906108c
SS
109YLWRAP = $(srcdir)/../ylwrap
110
111# where to find makeinfo, preferably one designed for texinfo-2
112MAKEINFO=makeinfo
113
2b831889
JM
114MAKEHTML = $(MAKEINFO) --html
115MAKEHTMLFLAGS =
085dd6e6 116
c906108c
SS
117# Set this up with gcc if you have gnu ld and the loader will print out
118# line numbers for undefined references.
119#CC_LD=gcc -static
120CC_LD=$(CC)
121
122# Where is our "include" directory? Typically $(srcdir)/../include.
123# This is essentially the header file directory for the library
124# routines in libiberty.
125INCLUDE_DIR = $(srcdir)/../include
126INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
127
128# Where is the "-liberty" library? Typically in ../libiberty.
129LIBIBERTY = ../libiberty/libiberty.a
130
c906108c
SS
131# Where is the BFD library? Typically in ../bfd.
132BFD_DIR = ../bfd
133BFD = $(BFD_DIR)/libbfd.a
134BFD_SRC = $(srcdir)/$(BFD_DIR)
135BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
136
9b913628
TJB
137# Where is the decnumber library? Typically in ../libdecnumber.
138LIBDECNUMBER_DIR = ../libdecnumber
139LIBDECNUMBER = $(LIBDECNUMBER_DIR)/libdecnumber.a
140LIBDECNUMBER_SRC = $(srcdir)/$(LIBDECNUMBER_DIR)
141LIBDECNUMBER_CFLAGS = -I$(LIBDECNUMBER_DIR) -I$(LIBDECNUMBER_SRC)
142
c906108c
SS
143# Where is the READLINE library? Typically in ../readline.
144READLINE_DIR = ../readline
c906108c 145READLINE_SRC = $(srcdir)/$(READLINE_DIR)
6a30b0a5
AS
146READLINE = @READLINE@
147READLINE_DEPS = @READLINE_DEPS@
148READLINE_CFLAGS = @READLINE_CFLAGS@
c906108c 149
7fa2210b
DJ
150# Where is expat? This will be empty if expat was not available.
151LIBEXPAT = @LIBEXPAT@
152
c906108c 153WARN_CFLAGS = @WARN_CFLAGS@
104c1213 154WERROR_CFLAGS = @WERROR_CFLAGS@
d4f3574e
SS
155GDB_WARN_CFLAGS = $(WARN_CFLAGS)
156GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
c906108c 157
46e9880c
DJ
158GDB_WARN_CFLAGS_NO_FORMAT = `echo " $(GDB_WARN_CFLAGS) " | sed "s/ -Wformat-nonliteral / /g"`
159
c906108c 160# Where is the INTL library? Typically in ../intl.
20e95c23
DJ
161INTL = @LIBINTL@
162INTL_DEPS = @LIBINTL_DEP@
163INTL_CFLAGS = @INCINTL@
c906108c 164
030292b7
DJ
165# Did the user give us a --with-sysroot option?
166TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
167TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
168
a96d9b2e 169# Did the user give us a --with-gdb-datadir option?
11e6390e 170GDB_DATADIR = @GDB_DATADIR@
a96d9b2e 171
e28b3332
DJ
172# Helper code from gnulib.
173LIBGNU = gnulib/libgnu.a
174INCGNU = -I$(srcdir)/gnulib -Ignulib
175
aa11fd3f
DJ
176# Generated headers in the gnulib directory. These must be listed
177# so that they are generated before other files are compiled.
d5af19ba 178GNULIB_H = gnulib/string.h @GNULIB_STDINT_H@
aa11fd3f 179
d318976c
FN
180#
181# CLI sub directory definitons
182#
183SUBDIR_CLI_OBS = \
f02df580 184 cli-dump.o \
f154cae1 185 cli-decode.o cli-script.o cli-cmds.o cli-setshow.o \
0fac0b41 186 cli-logging.o \
4389a95a 187 cli-interp.o
d318976c 188SUBDIR_CLI_SRCS = \
f02df580 189 cli/cli-dump.c \
12cf3f1b 190 cli/cli-decode.c cli/cli-script.c cli/cli-cmds.c cli/cli-setshow.c \
0fac0b41 191 cli/cli-logging.c \
f154cae1 192 cli/cli-interp.c
d318976c 193SUBDIR_CLI_DEPS =
d318976c
FN
194SUBDIR_CLI_LDFLAGS=
195SUBDIR_CLI_CFLAGS=
d318976c 196
fb40c209
AC
197#
198# MI sub directory definitons
199#
200SUBDIR_MI_OBS = \
201 mi-out.o mi-console.o \
c04e0a08 202 mi-cmds.o mi-cmd-env.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
a6b151f1 203 mi-cmd-file.o mi-cmd-disas.o mi-symbol-cmds.o mi-cmd-target.o \
4389a95a 204 mi-interp.o \
2f9e05b4 205 mi-main.o mi-parse.o mi-getopt.o
fb40c209
AC
206SUBDIR_MI_SRCS = \
207 mi/mi-out.c mi/mi-console.c \
c04e0a08 208 mi/mi-cmds.c mi/mi-cmd-env.c \
fb40c209 209 mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
30e221b4 210 mi/mi-cmd-file.c mi/mi-cmd-disas.c mi/mi-symbol-cmds.c \
a6b151f1 211 mi/mi-cmd-target.c mi/mi-interp.c \
2f9e05b4 212 mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
fb40c209 213SUBDIR_MI_DEPS =
fb40c209
AC
214SUBDIR_MI_LDFLAGS=
215SUBDIR_MI_CFLAGS= \
b4df4f68 216 -DMI_OUT=1
fb40c209 217
ed952ac5
AC
218#
219# TUI sub directory definitions
220#
226361c4
AC
221
222# Name of the TUI program
223TUI=gdbtui
224
ed952ac5 225SUBDIR_TUI_OBS = \
d7b2e967
AC
226 tui-command.o \
227 tui-data.o \
228 tui-disasm.o \
229 tui-file.o tui.o \
230 tui-hooks.o \
021e7609 231 tui-interp.o \
d7b2e967
AC
232 tui-io.o \
233 tui-layout.o \
234 tui-out.o \
235 tui-regs.o \
236 tui-source.o \
237 tui-stack.o \
238 tui-win.o \
239 tui-windata.o \
240 tui-wingeneral.o \
241 tui-winsource.o
ed952ac5 242SUBDIR_TUI_SRCS = \
d7b2e967
AC
243 tui/tui-command.c \
244 tui/tui-data.c \
245 tui/tui-disasm.c \
246 tui/tui-file.c \
247 tui/tui-hooks.c \
021e7609 248 tui/tui-interp.c \
d7b2e967
AC
249 tui/tui-io.c \
250 tui/tui-layout.c \
251 tui/tui-out.c \
252 tui/tui-regs.c \
253 tui/tui-source.c \
254 tui/tui-stack.c \
255 tui/tui-win.c \
256 tui/tui-windata.c \
257 tui/tui-wingeneral.c \
258 tui/tui-winsource.c \
259 tui/tui.c
ed952ac5 260SUBDIR_TUI_DEPS =
ed952ac5
AC
261SUBDIR_TUI_LDFLAGS=
262SUBDIR_TUI_CFLAGS= \
6a83354a 263 -DTUI=1
ed952ac5 264
d57a3c85
TJB
265#
266# python sub directory definitons
267#
268SUBDIR_PYTHON_OBS = \
269 python.o \
8a1ea21f 270 py-auto-load.o \
f3e9a817 271 py-block.o \
adc36818 272 py-breakpoint.o \
5172aecb
JB
273 py-cmd.o \
274 py-frame.o \
275 py-function.o \
be759fcf 276 py-lazy-string.o \
5172aecb 277 py-objfile.o \
d7b32ed3 278 py-param.o \
5172aecb 279 py-prettyprint.o \
fa33c3cd 280 py-progspace.o \
f3e9a817
PM
281 py-symbol.o \
282 py-symtab.o \
5172aecb
JB
283 py-type.o \
284 py-utils.o \
285 py-value.o
d57a3c85
TJB
286SUBDIR_PYTHON_SRCS = \
287 python/python.c \
8a1ea21f 288 python/py-auto-load.c \
f3e9a817 289 python/py-block.c \
adc36818 290 python/py-breakpoint.c \
5172aecb
JB
291 python/py-cmd.c \
292 python/py-frame.c \
293 python/py-function.c \
be759fcf 294 python/py-lazy-string.c \
5172aecb 295 python/py-objfile.c \
d7b32ed3 296 python/py-param.c \
5172aecb 297 python/py-prettyprint.c \
fa33c3cd 298 python/py-progspace.c \
f3e9a817
PM
299 python/py-symbol.c \
300 python/py-symtab.c \
5172aecb
JB
301 python/py-type.c \
302 python/py-utils.c \
303 python/py-value.c
d57a3c85
TJB
304SUBDIR_PYTHON_DEPS =
305SUBDIR_PYTHON_LDFLAGS=
306SUBDIR_PYTHON_CFLAGS=
307
ed952ac5 308
c906108c
SS
309# Opcodes currently live in one of two places. Either they are in the
310# opcode library, typically ../opcodes, or they are in a header file
311# in INCLUDE_DIR.
312# Where is the "-lopcodes" library, with (some of) the opcode tables and
313# disassemblers?
460e6ec3
AC
314OPCODES_DIR = ../opcodes
315OPCODES_SRC = $(srcdir)/$(OPCODES_DIR)
316OPCODES = $(OPCODES_DIR)/libopcodes.a
c906108c
SS
317# Where are the other opcode tables which only have header file
318# versions?
319OP_INCLUDE = $(INCLUDE_DIR)/opcode
64e3cf3d
MF
320# Some source files like to use #include "opcodes/file.h"
321OPCODES_CFLAGS = -I$(OP_INCLUDE) -I$(OPCODES_SRC)/..
c906108c
SS
322
323# The simulator is usually nonexistent; targets that include one
324# should set this to list all the .o or .a files to be linked in.
9b624dbe 325SIM = @SIM@
c906108c 326
cd0fc7c3
SS
327WIN32LIBS = @WIN32LIBS@
328
5062cc19
KS
329# Tcl et al cflags and libraries
330TCL = @TCL_LIBRARY@
331TCL_CFLAGS = @TCL_INCLUDE@
3fc11d3e
JM
332GDBTKLIBS = @GDBTKLIBS@
333# Extra flags that the GDBTK files need:
334GDBTK_CFLAGS = @GDBTK_CFLAGS@
335
5062cc19
KS
336TK = @TK_LIBRARY@
337TK_CFLAGS = @TK_INCLUDE@
3fc11d3e 338
3fc11d3e
JM
339X11_CFLAGS = @TK_XINCLUDES@
340X11_LDFLAGS =
341X11_LIBS =
342
343WIN32LDAPP = @WIN32LDAPP@
344
3fc11d3e
JM
345LIBGUI = @LIBGUI@
346GUI_CFLAGS_X = @GUI_CFLAGS_X@
347IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
4226a5a5 348
5062cc19
KS
349ALL_TCL_CFLAGS = $(TCL_CFLAGS) $(TK_CFLAGS)
350
f0b743a9
KS
351# The version of gdbtk we're building. This should be kept
352# in sync with GDBTK_VERSION and friends in gdbtk.h.
353GDBTK_VERSION = 1.0
354GDBTK_LIBRARY = $(datadir)/insight$(GDBTK_VERSION)
355
d1c3b63a
KS
356# Gdbtk requires an absolute path to the source directory or
357# the testsuite won't run properly.
358GDBTK_SRC_DIR = @GDBTK_SRC_DIR@
359
4226a5a5 360SUBDIR_GDBTK_OBS = \
5412f5f3 361 gdbtk.o gdbtk-bp.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-interp.o \
ecb9ce7e 362 gdbtk-register.o gdbtk-stack.o gdbtk-varobj.o gdbtk-wrapper.o
4226a5a5 363SUBDIR_GDBTK_SRCS = \
ecb9ce7e 364 gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-bp.c \
b9fb98bd
AC
365 gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c \
366 gdbtk/generic/gdbtk-interp.c \
ecb9ce7e 367 gdbtk/generic/gdbtk-register.c gdbtk/generic/gdbtk-stack.c \
f15ab4a7
AC
368 gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c \
369 gdbtk/generic/gdbtk-main.c
5062cc19 370SUBDIR_GDBTK_DEPS = $(LIBGUI) $(TCL_DEPS) $(TK_DEPS)
4226a5a5
FN
371SUBDIR_GDBTK_LDFLAGS=
372SUBDIR_GDBTK_CFLAGS= -DGDBTK
c906108c 373
fb40c209
AC
374CONFIG_OBS= @CONFIG_OBS@
375CONFIG_SRCS= @CONFIG_SRCS@
376CONFIG_DEPS= @CONFIG_DEPS@
fb40c209 377CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
c906108c 378ENABLE_CFLAGS= @ENABLE_CFLAGS@
b3a90332
AC
379CONFIG_ALL= @CONFIG_ALL@
380CONFIG_CLEAN= @CONFIG_CLEAN@
e56ac5c3
AC
381CONFIG_INSTALL = @CONFIG_INSTALL@
382CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
c906108c
SS
383
384# -I. for config files.
f77b92bf 385# -I$(srcdir) for gdb internal headers.
c906108c
SS
386# -I$(srcdir)/config for more generic config files.
387
388# It is also possible that you will need to add -I/usr/include/sys if
389# your system doesn't have fcntl.h in /usr/include (which is where it
390# should be according to Posix).
391DEFS = @DEFS@
2aecd87f
DE
392GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/common -I$(srcdir)/config \
393 -DLOCALEDIR="\"$(localedir)\"" $(DEFS)
c906108c 394
a4ce5b0d
UW
395# MH_CFLAGS, if defined, has host-dependent CFLAGS from the config directory.
396GLOBAL_CFLAGS = $(MH_CFLAGS)
d28f9cdf
DJ
397
398PROFILE_CFLAGS = @PROFILE_CFLAGS@
c906108c
SS
399
400# CFLAGS is specifically reserved for setting from the command line
401# when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
1decb323 402CFLAGS = @CFLAGS@
c906108c 403
d3f4f91a
DJ
404# Set by configure, for e.g. expat.
405INTERNAL_CPPFLAGS = @CPPFLAGS@
406
c906108c
SS
407# Need to pass this to testsuite for "make check". Probably should be
408# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
409# so "make check" has the same result no matter where it is run.
410CXXFLAGS = -g -O
411
412# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
46e9880c 413INTERNAL_CFLAGS_BASE = \
104c1213 414 $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
c906108c 415 $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
9b913628 416 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) $(LIBDECNUMBER_CFLAGS) \
fc3b640d 417 $(INTL_CFLAGS) $(INCGNU) $(ENABLE_CFLAGS) $(INTERNAL_CPPFLAGS)
46e9880c 418INTERNAL_WARN_CFLAGS = $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS)
d4f3574e 419INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
c906108c
SS
420
421# LDFLAGS is specifically reserved for setting from the command line
422# when running make.
697f7479 423LDFLAGS = @LDFLAGS@
c906108c
SS
424
425# Profiling options need to go here to work.
426# I think it's perfectly reasonable for a user to set -pg in CFLAGS
427# and have it work; that's why CFLAGS is here.
d28f9cdf 428# PROFILE_CFLAGS is _not_ included, however, because we use monstartup.
fc3b640d 429INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(MH_LDFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS)
c906108c 430
c906108c
SS
431# If your system is missing alloca(), or, more likely, it's there but
432# it doesn't work, then refer to libiberty.
433
434# Libraries and corresponding dependencies for compiling gdb.
435# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
c906108c
SS
436# LIBIBERTY appears twice on purpose.
437# If you have the Cygnus libraries installed,
438# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
9b913628 439INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty -ldecnumber \
f0323ca0 440 $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
e28b3332 441 -lintl -liberty $(LIBGNU)
9b913628 442CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(INTL) $(LIBIBERTY) $(LIBDECNUMBER) \
f0323ca0 443 $(XM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
fc3b640d 444 $(LIBEXPAT) \
e28b3332 445 $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU)
f0323ca0 446CDEPS = $(XM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) \
e28b3332 447 $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU)
c906108c 448
f77b92bf
MK
449ADD_FILES = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
450ADD_DEPS = $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
c906108c 451
c906108c
SS
452DIST=gdb
453
454LINT=/usr/5bin/lint
5565b556 455LINTFLAGS= $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
9175c9a3 456 $(BFD_CFLAGS) $(INCLUDE_CFLAGS) \
5565b556 457 $(INTL_CFLAGS)
c906108c 458
eb2dec72 459RUNTEST = runtest
c906108c
SS
460RUNTESTFLAGS=
461
108546a0 462# XML files to build in to GDB.
05a4558a 463XMLFILES = $(srcdir)/features/gdb-target.dtd $(srcdir)/features/xinclude.dtd \
dc146f7c
VP
464 $(srcdir)/features/library-list.dtd $(srcdir)/features/osdata.dtd \
465 $(srcdir)/features/threads.dtd
108546a0 466
c906108c
SS
467# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
468# interface to the serial port. Hopefully if get ported to OS/2, VMS,
469# etc., then there will be (as part of the C library or perhaps as
470# part of libiberty) a POSIX interface. But at least for now the
471# host-dependent makefile fragment might need to use something else
472# besides ser-unix.o
6688f7e9 473SER_HARDWIRE = @SER_HARDWIRE@
c906108c
SS
474
475# The `remote' debugging target is supported for most architectures,
476# but not all (e.g. 960)
ea35711c 477REMOTE_OBS = remote.o dcache.o tracepoint.o ax-general.o ax-gdb.o remote-fileio.o
c906108c
SS
478
479# This is remote-sim.o if a simulator is to be linked in.
9b624dbe 480SIM_OBS = @SIM_OBS@
c906108c 481
a4ce5b0d
UW
482# Target-dependent object files.
483TARGET_OBS = @TARGET_OBS@
484
c0993dbe
UW
485# All target-dependent objects files that require 64-bit CORE_ADDR
486# (used with --enable-targets=all --enable-64-bit-bfd).
487ALL_64_TARGET_OBS = \
d0c678e6
UW
488 alphabsd-tdep.o alphafbsd-tdep.o alpha-linux-tdep.o alpha-mdebug-tdep.o \
489 alphanbsd-tdep.o alphaobsd-tdep.o alpha-osf1-tdep.o alpha-tdep.o \
5cd226f2
TG
490 amd64fbsd-tdep.o amd64-darwin-tdep.o amd64-dicos-tdep.o \
491 amd64-linux-tdep.o amd64nbsd-tdep.o \
6d10c194 492 amd64obsd-tdep.o amd64-sol2-tdep.o amd64-tdep.o amd64-windows-tdep.o \
c0993dbe
UW
493 ia64-linux-tdep.o ia64-tdep.o \
494 mips64obsd-tdep.o \
495 sparc64fbsd-tdep.o sparc64-linux-tdep.o sparc64nbsd-tdep.o \
496 sparc64obsd-tdep.o sparc64-sol2-tdep.o sparc64-tdep.o
497
498# All other target-dependent objects files (used with --enable-targets=all).
499ALL_TARGET_OBS = \
78664fa3
PA
500 armbsd-tdep.o arm-linux-tdep.o arm-symbian-tdep.o \
501 armnbsd-tdep.o armobsd-tdep.o \
d0c678e6
UW
502 arm-tdep.o arm-wince-tdep.o \
503 avr-tdep.o \
504 cris-tdep.o \
4c1d2973 505 dicos-tdep.o \
d0c678e6
UW
506 frv-linux-tdep.o frv-tdep.o \
507 h8300-tdep.o \
af5ca30d
NH
508 hppabsd-tdep.o hppanbsd-tdep.o hppaobsd-tdep.o \
509 hppa-hpux-tdep.o hppa-linux-tdep.o hppa-tdep.o \
d0c678e6
UW
510 i386bsd-tdep.o i386-cygwin-tdep.o i386fbsd-tdep.o i386gnu-tdep.o \
511 i386-linux-tdep.o i386nbsd-tdep.o i386-nto-tdep.o i386obsd-tdep.o \
512 i386-sol2-tdep.o i386-tdep.o i387-tdep.o \
6d10c194 513 i386-dicos-tdep.o i386-darwin-tdep.o \
d0c678e6 514 iq2000-tdep.o \
4aa995e1 515 linux-tdep.o \
c28c63d8 516 lm32-tdep.o \
d0c678e6
UW
517 m32c-tdep.o \
518 m32r-linux-tdep.o m32r-tdep.o \
519 m68hc11-tdep.o \
520 m68kbsd-tdep.o m68klinux-tdep.o m68k-tdep.o \
521 m88k-tdep.o \
522 mep-tdep.o \
2d1c1221 523 microblaze-tdep.o microblaze-linux-tdep.o \
c0993dbe 524 mips-irix-tdep.o mips-linux-tdep.o \
d0c678e6
UW
525 mipsnbsd-tdep.o mips-tdep.o \
526 mn10300-linux-tdep.o mn10300-tdep.o \
6d10c194 527 moxie-tdep.o \
d0c678e6
UW
528 mt-tdep.o \
529 nto-tdep.o \
530 ppc-linux-tdep.o ppcnbsd-tdep.o ppcobsd-tdep.o ppc-sysv-tdep.o \
531 rs6000-aix-tdep.o rs6000-tdep.o \
532 s390-tdep.o \
533 score-tdep.o \
534 sh64-tdep.o sh-linux-tdep.o shnbsd-tdep.o sh-tdep.o \
d0c678e6
UW
535 sparc-linux-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
536 sparc-sol2-tdep.o sparc-tdep.o \
85e747d2 537 spu-tdep.o spu-multiarch.o solib-spu.o \
d0c678e6
UW
538 v850-tdep.o \
539 vaxnbsd-tdep.o vaxobsd-tdep.o vax-tdep.o \
540 xstormy16-tdep.o \
f6fbcbf9 541 xtensa-config.o xtensa-tdep.o xtensa-linux-tdep.o \
d0c678e6
UW
542 glibc-tdep.o \
543 bsd-uthread.o \
544 nbsd-tdep.o obsd-tdep.o \
545 sol2-tdep.o \
a8d1234e 546 solib-frv.o solib-irix.o solib-svr4.o solib-target.o \
6d10c194 547 solib-som.o solib-pa64.o solib-darwin.o \
d0c678e6
UW
548 dbug-rom.o dink32-rom.o ppcbug-rom.o m32r-rom.o dsrec.o monitor.o \
549 remote-m32r-sdi.o \
550 xcoffread.o \
d0c678e6 551 symfile-mem.o \
31b060a2 552 corelow.o \
b7f6bf22
HZ
553 windows-tdep.o \
554 linux-record.o
d0c678e6 555
a4ce5b0d 556# Host-dependent makefile fragment comes in here.
c906108c 557@host_makefile_frag@
a4ce5b0d 558# End of host-dependent makefile fragment
c906108c
SS
559
560FLAGS_TO_PASS = \
561 "prefix=$(prefix)" \
562 "exec_prefix=$(exec_prefix)" \
6688f7e9 563 "infodir=$(infodir)" \
89a34d1b
JM
564 "datarootdir=$(datarootdir)" \
565 "docdir=$(docdir)" \
566 "htmldir=$(htmldir)" \
9453113a 567 "pdfdir=$(pdfdir)" \
36af0b35
L
568 "libdir=$(libdir)" \
569 "mandir=$(mandir)" \
570 "datadir=$(datadir)" \
571 "includedir=$(includedir)" \
c906108c 572 "against=$(against)" \
c938e9b0 573 "DESTDIR=$(DESTDIR)" \
c906108c
SS
574 "AR=$(AR)" \
575 "AR_FLAGS=$(AR_FLAGS)" \
576 "CC=$(CC)" \
577 "CFLAGS=$(CFLAGS)" \
c906108c
SS
578 "CXX=$(CXX)" \
579 "CXXFLAGS=$(CXXFLAGS)" \
580 "DLLTOOL=$(DLLTOOL)" \
ed363b1b 581 "LDFLAGS=$(LDFLAGS)" \
c906108c
SS
582 "RANLIB=$(RANLIB)" \
583 "MAKEINFO=$(MAKEINFO)" \
085dd6e6
JM
584 "MAKEHTML=$(MAKEHTML)" \
585 "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
c906108c
SS
586 "INSTALL=$(INSTALL)" \
587 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
588 "INSTALL_DATA=$(INSTALL_DATA)" \
589 "RUNTEST=$(RUNTEST)" \
590 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
591
592# Flags that we pass when building the testsuite.
593
594# empty for native, $(target_alias)/ for cross
595target_subdir = @target_subdir@
596
597CC_FOR_TARGET = ` \
598 if [ -f $${rootme}/../gcc/xgcc ] ; then \
599 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
600 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/; \
601 else \
602 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
603 fi; \
604 else \
605 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
606 echo $(CC); \
607 else \
608 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
609 fi; \
610 fi`
611
612CXX = gcc
613CXX_FOR_TARGET = ` \
614 if [ -f $${rootme}/../gcc/xgcc ] ; then \
615 if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
616 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/; \
617 else \
618 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
619 fi; \
620 else \
621 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
622 echo $(CXX); \
623 else \
624 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
625 fi; \
626 fi`
627
c906108c
SS
628# The use of $$(x_FOR_TARGET) reduces the command line length by not
629# duplicating the lengthy definition.
630TARGET_FLAGS_TO_PASS = \
631 "prefix=$(prefix)" \
632 "exec_prefix=$(exec_prefix)" \
633 "against=$(against)" \
634 'CC=$$(CC_FOR_TARGET)' \
635 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
636 "CFLAGS=$(CFLAGS)" \
c906108c
SS
637 'CXX=$$(CXX_FOR_TARGET)' \
638 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
639 "CXXFLAGS=$(CXXFLAGS)" \
640 "INSTALL=$(INSTALL)" \
641 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
642 "INSTALL_DATA=$(INSTALL_DATA)" \
643 "MAKEINFO=$(MAKEINFO)" \
085dd6e6 644 "MAKEHTML=$(MAKEHTML)" \
c906108c 645 "RUNTEST=$(RUNTEST)" \
59dd3af6
JK
646 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
647 "FORCE_PARALLEL=$(FORCE_PARALLEL)"
c906108c
SS
648
649# All source files that go into linking GDB.
650# Links made at configuration time should not be specified here, since
651# SFILES is used in building the distribution archive.
652
0ef643c8 653SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
801e3a5b 654 addrmap.c \
424163ea 655 auxv.c ax-general.c ax-gdb.c \
bba2d28d
AC
656 bcache.c \
657 bfd-target.c \
658 block.c blockframe.c breakpoint.c buildsym.c \
92df71f0 659 c-exp.y c-lang.c c-typeprint.c c-valprint.c \
1b6bc7e0
CF
660 charset.c cli-out.c coffread.c coff-pe-read.c \
661 complaints.c completer.c corefile.c \
9219021c 662 cp-abi.c cp-support.c cp-namespace.c cp-valprint.c \
6aecb9c2 663 d-lang.c d-valprint.c \
847f5ce8 664 cp-name-parser.y \
de4f826b 665 dbxread.c demangle.c dictionary.c disasm.c doublest.c dummy-frame.c \
7ce59000 666 dwarf2expr.c dwarf2loc.c dwarf2read.c dwarf2-frame.c \
f747b78d
TT
667 elfread.c environ.c eval.c event-loop.c event-top.c \
668 exceptions.c expprint.c \
ab38a727
PA
669 f-exp.y f-lang.c f-typeprint.c f-valprint.c filesystem.c \
670 findcmd.c findvar.c frame.c frame-base.c frame-unwind.c \
92df71f0 671 gdbarch.c arch-utils.c gdbtypes.c gnu-v2-abi.c gnu-v3-abi.c \
04714b91
AC
672 inf-loop.c \
673 infcall.c \
674 infcmd.c inflow.c infrun.c \
edb3359d 675 inline-frame.c \
4389a95a 676 interps.c \
c906108c 677 jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
92df71f0
FN
678 language.c linespec.c \
679 m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c \
680 macrotab.c macroexp.c macrocmd.c macroscope.c main.c maint.c \
fd79ecee 681 mdebugread.c memattr.c mem-break.c minsyms.c mipsread.c memory-map.c \
2f9e05b4 682 mi/mi-common.c \
a76c9d72 683 objc-exp.y objc-lang.c \
07e059b5 684 objfiles.c osabi.c observer.c osdata.c \
92df71f0 685 p-exp.y p-lang.c p-typeprint.c p-valprint.c parse.c printcmd.c \
6c95b8df 686 progspace.c \
ccefe4c4 687 prologue-value.c psymtab.c \
b2175913 688 regcache.c reggroups.c remote.c remote-fileio.c reverse.c \
d4310edb 689 scm-exp.c scm-lang.c scm-valprint.c \
a94dd1fd 690 sentinel-frame.c \
a77053c2
MK
691 serial.c ser-base.c ser-unix.c \
692 solib.c solib-null.c source.c \
eb4556d7
JB
693 stabsread.c stack.c std-regs.c symfile.c symfile-mem.c symmisc.c \
694 symtab.c \
424163ea
DJ
695 target.c target-descriptions.c target-memory.c \
696 thread.c top.c tracepoint.c \
a0f267c7 697 trad-frame.c \
d2259dd3 698 tramp-frame.c \
a0f267c7 699 typeprint.c \
92df71f0 700 ui-out.c utils.c ui-file.h ui-file.c \
eb8bc282 701 user-regs.c \
350da6ee 702 valarith.c valops.c valprint.c value.c varobj.c vec.c \
fd79ecee 703 wrapper.c \
b77209e0 704 xml-tdesc.c xml-support.c \
69d05d38 705 inferior.c gdb_usleep.c \
9b4eba8e 706 record.c gcore.c \
a96d9b2e
SDJ
707 jit.c \
708 xml-syscall.c \
c906108c 709
fb40c209 710LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
c906108c 711
c906108c
SS
712# Header files that need to have srcdir added. Note that in the cases
713# where we use a macro like $(gdbcmd_h), things are carefully arranged
714# so that each .h file is listed exactly once (M-x tags-search works
715# wrong if TAGS has files twice). Because this is tricky to get
716# right, it is probably easiest just to list .h files here directly.
717
a417dc56
RW
718HFILES_NO_SRCDIR = osf-share/cma_debug_client.h \
719osf-share/HP800/cma_thread_io.h osf-share/cma_sequence.h \
720osf-share/cma_mutex.h osf-share/cma_semaphore_defs.h \
721osf-share/cma_list.h osf-share/cma_handle.h osf-share/cma_stack.h \
722osf-share/cma_util.h osf-share/RIOS/cma_thread_io.h \
723osf-share/cma_errors.h osf-share/cma_tcb_defs.h osf-share/cma_attr.h \
724osf-share/cma_stack_int.h osf-share/cma_init.h \
725osf-share/cma_deb_core.h osf-share/AT386/cma_thread_io.h \
726osf-share/cma_sched.h proc-utils.h arm-tdep.h ax-gdb.h ppcnbsd-tdep.h \
f23f4c59 727cli-out.h gdb_expat.h breakpoint.h infcall.h obsd-tdep.h \
40debb5a 728exec.h m32r-tdep.h osabi.h gdbcore.h solib-som.h \
a417dc56
RW
729i386bsd-nat.h xml-support.h xml-tdesc.h alphabsd-tdep.h gdb_obstack.h \
730ia64-tdep.h ada-lang.h varobj.h frv-tdep.h nto-tdep.h serial.h \
6aecb9c2 731c-lang.h d-lang.h frame.h event-loop.h block.h cli/cli-setshow.h \
f154cae1 732cli/cli-decode.h cli/cli-cmds.h cli/cli-dump.h \
a417dc56
RW
733cli/cli-script.h macrotab.h symtab.h version.h gnulib/wchar.in.h \
734gnulib/string.in.h gnulib/str-two-way.h gnulib/extra/link-warning.h \
735gnulib/stdint.in.h remote.h gdb.h sparc-nat.h gdbserver/win32-low.h \
736gdbserver/i387-fp.h gdbserver/server.h gdbserver/terminal.h \
737gdbserver/mem-break.h gdbserver/wincecompat.h gdbserver/target.h \
738gdbserver/linux-low.h gdbserver/gdb_proc_service.h \
739gdbserver/regcache.h gdbthread.h dwarf2-frame.h nbsd-nat.h dcache.h \
740amd64-nat.h s390-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \
741gdbarch.h bsd-uthread.h gdb_thread_db.h gdb_stat.h memory-map.h \
742mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \
743ser-unix.h scm-lang.h inf-ptrace.h terminal.h ui-out.h frame-base.h \
744f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \
40debb5a 745objfiles.h vec.h disasm.h mips-tdep.h ser-base.h \
a417dc56
RW
746gdb_curses.h bfd-target.h memattr.h inferior.h ax.h dummy-frame.h \
747inflow.h fbsd-nat.h libunwind-frame.h completer.h inf-ttrace.h \
c9ac0a72 748solib-target.h gdb_vfork.h alpha-tdep.h dwarf2expr.h \
a417dc56
RW
749m2-lang.h stack.h charset.h addrmap.h command.h solist.h source.h \
750target.h prologue-value.h cp-abi.h tui/tui-hooks.h tui/tui.h \
751tui/tui-file.h tui/tui-command.h tui/tui-disasm.h tui/tui-wingeneral.h \
752tui/tui-windata.h tui/tui-data.h tui/tui-win.h tui/tui-stack.h \
753tui/tui-winsource.h tui/tui-regs.h tui/tui-io.h tui/tui-layout.h \
754tui/tui-source.h xcoffsolib.h sol2-tdep.h gregset.h sh-tdep.h \
755expression.h score-tdep.h gdb_select.h ser-tcp.h buildsym.h valprint.h \
756call-cmds.h typeprint.h mi/mi-getopt.h mi/mi-parse.h mi/mi-console.h \
757mi/mi-out.h mi/mi-main.h mi/mi-common.h mi/mi-cmds.h linux-nat.h \
758complaints.h gdb_proc_service.h gdb_regex.h xtensa-tdep.h inf-loop.h \
759gdb_wait.h gdb_assert.h solib.h ppc-tdep.h cp-support.h glibc-tdep.h \
760interps.h auxv.h gdbcmd.h tramp-frame.h mipsnbsd-tdep.h \
761amd64-linux-tdep.h linespec.h i387-tdep.h mn10300-tdep.h \
762sparc64-tdep.h monitor.h ppcobsd-tdep.h srec.h solib-pa64.h \
763coff-pe-read.h parser-defs.h gdb_ptrace.h mips-linux-tdep.h \
764m68k-tdep.h spu-tdep.h jv-lang.h environ.h solib-irix.h amd64-tdep.h \
765doublest.h regset.h hppa-tdep.h ppc-linux-tdep.h rs6000-tdep.h \
766gdb_locale.h gdb_dirent.h arch-utils.h trad-frame.h gnu-nat.h \
5abdf4bd 767language.h nbsd-tdep.h wrapper.h solib-svr4.h \
a417dc56
RW
768macroexp.h ui-file.h regcache.h gdb_string.h tracepoint.h i386-tdep.h \
769inf-child.h p-lang.h event-top.h gdbtypes.h scm-tags.h user-regs.h \
ae0a7e74 770regformats/regdef.h config/alpha/nm-osf3.h config/i386/nm-i386gnu.h \
e790e06e 771config/i386/nm-fbsd.h config/i386/nm-linux.h \
ae0a7e74 772config/nm-nto.h config/sparc/nm-sol2.h config/nm-linux.h \
a417dc56
RW
773config/rs6000/nm-rs6000.h top.h bsd-kvm.h gdb-stabs.h reggroups.h \
774annotate.h sim-regno.h dictionary.h dfp.h main.h frame-unwind.h \
775remote-fileio.h i386-linux-tdep.h vax-tdep.h objc-lang.h \
dcb626be 776sentinel-frame.h bcache.h symfile.h windows-tdep.h linux-tdep.h \
ccefe4c4
TT
777gdb_usleep.h jit.h xml-syscall.h ada-operator.inc microblaze-tdep.h \
778psymtab.h psympriv.h
c906108c
SS
779
780# Header files that already have srcdir in them, or which are in objdir.
781
03c30d4d 782HFILES_WITH_SRCDIR = ../bfd/bfd.h
c906108c
SS
783
784
785# GDB "info" files, which should be included in their entirety
786INFOFILES = gdb.info*
787
788REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
789
c906108c
SS
790# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
791# default their values the way we do for SER_HARDWIRE; in the future
792# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
793# variables analogous to SER_HARDWIRE which get defaulted in this
794# Makefile.in
795
a4ce5b0d 796DEPFILES = $(TARGET_OBS) $(SER_HARDWIRE) $(NATDEPFILES) \
b9ff61f8 797 $(REMOTE_OBS) $(SIM_OBS)
c906108c 798
fb40c209 799SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
8132723e 800# Don't include YYFILES (*.c) because we already include *.y in SFILES,
c906108c
SS
801# and it's more useful to see it in the .y file.
802TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
b9ff61f8 803 $(CONFIG_SRCS)
c906108c
SS
804TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
805
b9ff61f8 806COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
defc864c 807 version.o \
d836ee13 808 annotate.o \
801e3a5b 809 addrmap.o \
3cf93817 810 auxv.o \
bba2d28d
AC
811 bfd-target.o \
812 blockframe.o breakpoint.o findvar.o regcache.o \
9b913628 813 charset.o disasm.o dummy-frame.o dfp.o \
92e023d6 814 source.o value.o eval.o valops.o valarith.o valprint.o printcmd.o \
ccefe4c4 815 block.o symtab.o psymtab.o symfile.o symmisc.o linespec.o dictionary.o \
04714b91
AC
816 infcall.o \
817 infcmd.o infrun.o \
32178cab 818 expprint.o environ.o stack.o thread.o \
60250e8b 819 exceptions.o \
ab38a727 820 filesystem.o \
3f3db248 821 inf-child.o \
4389a95a 822 interps.o \
d836ee13 823 main.o \
6821892e 824 macrotab.o macrocmd.o macroexp.o macroscope.o \
2f9e05b4 825 mi-common.o \
c5f0f3d0 826 event-loop.o event-top.o inf-loop.o completer.o \
defc864c
AC
827 gdbarch.o arch-utils.o gdbtypes.o osabi.o copying.o \
828 memattr.o mem-break.o target.o parse.o language.o buildsym.o \
08388c79 829 findcmd.o \
eb8bc282 830 std-regs.o \
0150732f 831 signals.o \
b2175913
MS
832 exec.o reverse.o \
833 bcache.o objfiles.o observer.o minsyms.o maint.o demangle.o \
31d99776 834 dbxread.o coffread.o coff-pe-read.o \
7ce59000 835 dwarf2read.o mipsread.o stabsread.o corefile.o \
cfc14b3a 836 dwarf2expr.o dwarf2loc.o dwarf2-frame.o \
6aecb9c2 837 ada-lang.o c-lang.o d-lang.o f-lang.o objc-lang.o \
0ef643c8 838 ada-tasks.o \
8b93c638 839 ui-out.o cli-out.o \
350da6ee 840 varobj.o vec.o wrapper.o \
c906108c 841 jv-lang.o jv-valprint.o jv-typeprint.o \
454313e5 842 m2-lang.o p-lang.o p-typeprint.o p-valprint.o \
d4310edb 843 scm-exp.o scm-lang.o scm-valprint.o \
a94dd1fd
AC
844 sentinel-frame.o \
845 complaints.o typeprint.o \
1f8173e6 846 ada-typeprint.o c-typeprint.o f-typeprint.o m2-typeprint.o \
6aecb9c2
JB
847 ada-valprint.o c-valprint.o cp-valprint.o d-valprint.o f-valprint.o \
848 m2-valprint.o \
8807d78b 849 serial.o mdebugread.o top.o utils.o \
227288a0 850 ui-file.o \
eb8bc282 851 user-regs.o \
494cca16 852 frame.o frame-unwind.o doublest.o \
da62e633 853 frame-base.o \
edb3359d 854 inline-frame.o \
1a92f856 855 gnu-v2-abi.o gnu-v3-abi.o cp-abi.o cp-support.o \
9219021c 856 cp-namespace.o \
be07a590 857 reggroups.o regset.o \
d2259dd3 858 trad-frame.o \
a77053c2 859 tramp-frame.o \
d750b939 860 solib.o solib-null.o \
a96d9b2e 861 prologue-value.o memory-map.o xml-support.o xml-syscall.o \
b77209e0 862 target-descriptions.o target-memory.o xml-tdesc.o xml-builtin.o \
0ebc2096 863 inferior.o osdata.o gdb_usleep.o record.o gcore.o \
6c95b8df 864 jit.o progspace.o
c906108c 865
a96d9b2e
SDJ
866# Definitions for the syscall's XML files and dir
867XML_SYSCALLS_DIR = syscalls/
868XML_SYSCALLS_FILES = gdb-syscalls.dtd \
869 ppc-linux.xml ppc64-linux.xml \
09de9781
DM
870 i386-linux.xml amd64-linux.xml \
871 sparc-linux.xml sparc64-linux.xml
a96d9b2e 872
c906108c
SS
873TSOBS = inflow.o
874
8dcde887 875SUBDIRS = @subdirs@
e28b3332 876CLEANDIRS = $(SUBDIRS) gnulib
c906108c
SS
877
878# For now, shortcut the "configure GDB for fewer languages" stuff.
8132723e 879YYFILES = c-exp.c \
847f5ce8 880 cp-name-parser.c \
8132723e 881 objc-exp.c \
682b96ec 882 ada-lex.c \
8132723e
AC
883 ada-exp.c \
884 jv-exp.c \
885 f-exp.c m2-exp.c p-exp.c
886YYOBJ = c-exp.o \
847f5ce8 887 cp-name-parser.o \
8132723e 888 objc-exp.o \
1f8173e6 889 ada-exp.o \
8132723e
AC
890 jv-exp.o \
891 f-exp.o m2-exp.o p-exp.o
c906108c
SS
892
893# Things which need to be built when making a distribution.
894
895DISTSTUFF = $(YYFILES)
896
a417dc56
RW
897
898# All generated files which can be included by another file.
3d0bb823
PA
899generated_files = config.h observer.h observer.inc ada-lex.c \
900 $(GNULIB_H) $(NAT_GENERATED_FILES)
a417dc56 901
c906108c 902.c.o:
a417dc56
RW
903 $(COMPILE) $<
904 $(POSTCOMPILE)
c906108c 905
a96d9b2e 906all: gdb$(EXEEXT) $(CONFIG_ALL) xml-syscall-copy
c906108c 907 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
226361c4
AC
908.PHONY: all-tui
909all-tui: $(TUI)$(EXEEXT)
c906108c 910
a96d9b2e
SDJ
911# This is needed for running GDB from the build directory
912.PHONY: xml-syscall-copy
913xml-syscall-copy:
914 if [ "`cd $(srcdir) && pwd`" != "`pwd`" ] ; then \
915 mkdir -p ./$(XML_SYSCALLS_DIR) ; \
916 list='$(XML_SYSCALLS_FILES)' ; \
917 for file in $$list ; do \
918 f=$(srcdir)/$(XML_SYSCALLS_DIR)/$$file ; \
919 if test -f $$f ; then \
920 $(INSTALL_DATA) $$f \
921 ./$(XML_SYSCALLS_DIR) ; \
922 fi ; \
923 done ; \
924 fi ;
925
926# This target is responsible for properly installing the syscalls'
927# XML files in the system.
928.PHONY: xml-syscall-install
929xml-syscall-install:
930 $(SHELL) $(srcdir)/../mkinstalldirs \
11e6390e 931 $(DESTDIR)$(GDB_DATADIR)/$(XML_SYSCALLS_DIR) ; \
a96d9b2e
SDJ
932 list='$(XML_SYSCALLS_FILES)' ; \
933 for file in $$list ; do \
934 f=$(srcdir)/$(XML_SYSCALLS_DIR)/$$file ; \
935 if test -f $$f ; then \
936 $(INSTALL_DATA) $$f \
11e6390e 937 $(DESTDIR)$(GDB_DATADIR)/$(XML_SYSCALLS_DIR) ; \
a96d9b2e
SDJ
938 fi ; \
939 done ;
940
c906108c
SS
941installcheck:
942
943# The check target can not use subdir_do, because subdir_do does not
944# use TARGET_FLAGS_TO_PASS.
945check: force
946 @if [ -f testsuite/Makefile ]; then \
947 rootme=`pwd`; export rootme; \
948 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
949 cd testsuite; \
950 $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
951 else true; fi
952
e75d110c
AO
953# The idea is to parallelize testing of multilibs, for example:
954# make -j3 check//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
955# will run 3 concurrent sessions of check, eventually testing all 10
956# combinations. GNU make is required for the % pattern to work, as is
957# a shell that expands alternations within braces. If GNU make is not
59dd3af6
JK
958# used, this rule will harmlessly fail to match. Used FORCE_PARALLEL to
959# prevent serialized checking due to the passed RUNTESTFLAGS.
a5bbabf3 960# FIXME: use config.status --config not --version, when available.
e75d110c
AO
961check//%: force
962 @if [ -f testsuite/config.status ]; then \
963 rootme=`pwd`; export rootme; \
964 rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
965 target=`echo "$@" | sed 's,//.*,,'`; \
966 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
967 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
968 testdir=testsuite.$$vardots; \
a5bbabf3
RW
969 if [ ! -f $$testdir/Makefile ] && [ -f testsuite/config.status ]; then \
970 configargs=`cd testsuite && ./config.status --version | \
971 sed -n -e 's,"$$,,' -e 's,^ *with options ",,p'`; \
972 $(SHELL) $(srcdir)/../mkinstalldirs $$testdir && \
973 (cd $$testdir && \
974 eval $(SHELL) "\"\$$rootsrc/testsuite/configure\" $$configargs" \
975 "\"--srcdir=\$$rootsrc/testsuite\"" \
976 ); \
e75d110c
AO
977 else :; fi && cd $$testdir && \
978 $(MAKE) $(TARGET_FLAGS_TO_PASS) \
979 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
59dd3af6 980 FORCE_PARALLEL=$(if $(FORCE_PARALLEL),1,$(if $(RUNTESTFLAGS),,1)) \
e75d110c
AO
981 "$$target"; \
982 else true; fi
983
9453113a 984info install-info clean-info dvi pdf install-pdf html install-html: force
c906108c
SS
985 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
986
987gdb.z:gdb.1
3cf93817 988 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
c906108c
SS
989 pack gdb.t ; rm -f gdb.t
990 mv gdb.t.z gdb.z
991
992# Traditionally "install" depends on "all". But it may be useful
3cf93817 993# not to; for example, if the user has made some trivial change to a
c906108c
SS
994# source file and doesn't care about rebuilding or just wants to save the
995# time it takes for make to check that all is up to date.
996# install-only is intended to address that need.
a96d9b2e
SDJ
997install: all install-only
998
999# The "install-only" target also installs the syscalls' XML files in
1000# the system.
1001install-only: $(CONFIG_INSTALL) xml-syscall-install
c906108c 1002 transformed_name=`t='$(program_transform_name)'; \
95303a68 1003 echo gdb | sed -e "$$t"` ; \
c906108c
SS
1004 if test "x$$transformed_name" = x; then \
1005 transformed_name=gdb ; \
1006 else \
1007 true ; \
1008 fi ; \
c938e9b0 1009 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
72bdd927
AC
1010 $(INSTALL_PROGRAM) gdb$(EXEEXT) \
1011 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
b7f31508 1012 $(SHELL) $(srcdir)/../mkinstalldirs \
72bdd927
AC
1013 $(DESTDIR)$(man1dir) ; \
1014 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1015 $(DESTDIR)$(man1dir)/$$transformed_name.1
3cf93817 1016 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
226361c4
AC
1017.PHONY: install-tui
1018install-tui:
1019 transformed_name=`t='$(program_transform_name)'; \
1020 echo $(TUI) | sed -e "$$t"` ; \
1021 if test "x$$transformed_name" = x; then \
1022 transformed_name=$(TUI) ; \
1023 else \
1024 true ; \
1025 fi ; \
1026 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir) ; \
1027 $(INSTALL_PROGRAM) $(TUI)$(EXEEXT) \
1028 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1029 $(SHELL) $(srcdir)/../mkinstalldirs \
1030 $(DESTDIR)$(man1dir) ; \
1031 $(INSTALL_DATA) $(srcdir)/gdb.1 \
1032 $(DESTDIR)$(man1dir)/$$transformed_name.1
1033
c906108c 1034
e56ac5c3 1035uninstall: force $(CONFIG_UNINSTALL)
c906108c
SS
1036 transformed_name=`t='$(program_transform_name)'; \
1037 echo gdb | sed -e $$t` ; \
1038 if test "x$$transformed_name" = x; then \
1039 transformed_name=gdb ; \
1040 else \
1041 true ; \
1042 fi ; \
c938e9b0
L
1043 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1044 $(DESTDIR)$(man1dir)/$$transformed_name.1
3cf93817 1045 @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
226361c4
AC
1046.PHONY: uninstall-tui
1047uninstall-tui:
1048 transformed_name=`t='$(program_transform_name)'; \
1049 echo $(TUI) | sed -e $$t` ; \
1050 if test "x$$transformed_name" = x; then \
1051 transformed_name=$(TUI) ; \
1052 else \
1053 true ; \
1054 fi ; \
1055 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) \
1056 $(DESTDIR)$(man1dir)/$$transformed_name.1
c906108c 1057
fb4c6eba 1058# The C++ name parser can be built standalone for testing.
a417dc56
RW
1059test-cp-name-parser.o: cp-name-parser.c
1060 $(COMPILE) -DTEST_CPNAMES cp-name-parser.c
1061 $(POSTCOMPILE)
fb4c6eba 1062
847f5ce8
DJ
1063test-cp-name-parser$(EXEEXT): test-cp-name-parser.o $(LIBIBERTY)
1064 $(CC_LD) $(INTERNAL_LDFLAGS) -o test-cp-name-parser$(EXEEXT) \
1065 test-cp-name-parser.o $(LIBIBERTY)
fb4c6eba 1066
c906108c
SS
1067# We do this by grepping through sources. If that turns out to be too slow,
1068# maybe we could just require every .o file to have an initialization routine
9b4ff276 1069# of a given name (top.o -> _initialize_top, etc.).
c906108c
SS
1070#
1071# Formatting conventions: The name of the _initialize_* routines must start
1072# in column zero, and must not be inside #if.
1073#
1074# Note that the set of files with init functions might change, or the names
1075# of the functions might change, so this files needs to depend on all the
1076# object files that will be linked into gdb.
defc864c
AC
1077
1078# FIXME: There is a problem with this approach - init.c may force
1079# unnecessary files to be linked in.
dd12a101
AC
1080
1081# FIXME: cagney/2002-06-09: gdb/564: gdb/563: Force the order so that
defc864c
AC
1082# the first call is to _initialize_gdbtypes (implemented by explicitly
1083# putting that function's name first in the init.l-tmp file). This is
1084# a hack to ensure that all the architecture dependant global
1085# builtin_type_* variables are initialized before anything else
1086# (per-architecture code is called in the same order that it is
1087# registered). The ``correct fix'' is to have all the builtin types
1088# made part of the architecture and initialize them on-demand (using
1089# gdbarch_data) just like everything else. The catch is that other
1090# modules still take the address of these builtin types forcing them
1091# to be variables, sigh!
c906108c 1092
0022b738
AC
1093# NOTE: cagney/2003-03-18: The sed pattern ``s|^\([^ /]...'' is
1094# anchored on the first column and excludes the ``/'' character so
1095# that it doesn't add the $(srcdir) prefix to any file that already
1096# has an absolute path. It turns out that $(DEC)'s True64 make
1097# automatically adds the $(srcdir) prefixes when it encounters files
1098# in sub-directories such as cli/ and mi/.
1099
defc864c
AC
1100# NOTE: cagney/2004-02-08: The ``case "$$fs" in'' eliminates
1101# duplicates. Files in the gdb/ directory can end up appearing in
1102# COMMON_OBS (as a .o file) and CONFIG_SRCS (as a .c file).
1103
1104INIT_FILES = $(COMMON_OBS) $(TSOBS) $(CONFIG_SRCS)
c2d11a7d 1105init.c: $(INIT_FILES)
c906108c 1106 @echo Making init.c
6426a772 1107 @rm -f init.c-tmp init.l-tmp
defc864c
AC
1108 @touch init.c-tmp
1109 @echo gdbtypes > init.l-tmp
25fc6591
AS
1110 @-LANG=C ; export LANG ; \
1111 LC_ALL=C ; export LC_ALL ; \
6e2c7fa1 1112 echo $(INIT_FILES) | \
c906108c 1113 tr ' ' '\012' | \
b1364885 1114 sed \
defc864c
AC
1115 -e '/^gdbtypes.[co]$$/d' \
1116 -e '/^init.[co]$$/d' \
1117 -e '/xdr_ld.[co]$$/d' \
1118 -e '/xdr_ptrace.[co]$$/d' \
1119 -e '/xdr_rdb.[co]$$/d' \
1120 -e '/udr.[co]$$/d' \
1121 -e '/udip2soc.[co]$$/d' \
1122 -e '/udi2go32.[co]$$/d' \
1123 -e '/version.[co]$$/d' \
1124 -e '/^[a-z0-9A-Z_]*_[SU].[co]$$/d' \
1125 -e '/[a-z0-9A-Z_]*-exp.tab.[co]$$/d' \
1126 -e 's/\.[co]$$/.c/' \
2aecd87f 1127 -e 's,signals\.c,common/signals\.c,' \
0022b738 1128 -e 's|^\([^ /][^ ]*\)|$(srcdir)/\1|g' | \
defc864c
AC
1129 while read f; do \
1130 sed -n -e 's/^_initialize_\([a-z_0-9A-Z]*\).*/\1/p' $$f 2>/dev/null; \
1131 done | \
1132 while read f; do \
4ff2cc4d
AC
1133 case " $$fs " in \
1134 *" $$f "* ) ;; \
1135 * ) echo $$f ; fs="$$fs $$f";; \
defc864c
AC
1136 esac; \
1137 done >> init.l-tmp
6426a772
JM
1138 @echo '/* Do not modify this file. */' >>init.c-tmp
1139 @echo '/* It is created automatically by the Makefile. */'>>init.c-tmp
defc864c
AC
1140 @echo '#include "defs.h" /* For initialize_file_ftype. */' >>init.c-tmp
1141 @echo '#include "call-cmds.h" /* For initialize_all_files. */' >>init.c-tmp
1142 @sed -e 's/\(.*\)/extern initialize_file_ftype _initialize_\1;/' <init.l-tmp >>init.c-tmp
6426a772
JM
1143 @echo 'void' >>init.c-tmp
1144 @echo 'initialize_all_files (void)' >>init.c-tmp
1145 @echo '{' >>init.c-tmp
defc864c 1146 @sed -e 's/\(.*\)/ _initialize_\1 ();/' <init.l-tmp >>init.c-tmp
c906108c 1147 @echo '}' >>init.c-tmp
6426a772 1148 @rm init.l-tmp
c906108c
SS
1149 @mv init.c-tmp init.c
1150
1151.PRECIOUS: init.c
1152
1153# Removing the old gdb first works better if it is running, at least on SunOS.
d836ee13 1154gdb$(EXEEXT): gdb.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
c906108c 1155 rm -f gdb$(EXEEXT)
72cfdc76 1156 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
d836ee13 1157 -o gdb$(EXEEXT) gdb.o libgdb.a \
f15ab4a7 1158 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
c906108c 1159
226361c4
AC
1160$(TUI)$(EXEEXT): tui-main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
1161 rm -f $(TUI)$(EXEEXT)
1162 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
1163 -o $(TUI)$(EXEEXT) tui-main.o libgdb.a \
1164 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1165
e28b3332 1166# Convenience rule to handle recursion.
aa11fd3f
DJ
1167$(LIBGNU) $(GNULIB_H): all-lib
1168all-lib: gnulib/Makefile
e28b3332
DJ
1169 @$(MAKE) $(FLAGS_TO_PASS) DO=all DODIRS=gnulib subdir_do
1170.PHONY: all-lib
1171
104c1213
JM
1172# Create a library of the gdb object files and build GDB by linking
1173# against that.
1174#
1175# init.o is very important. It pulls in the rest of GDB.
defc864c 1176LIBGDB_OBS= $(COMMON_OBS) $(TSOBS) $(ADD_FILES) init.o
104c1213
JM
1177libgdb.a: $(LIBGDB_OBS)
1178 -rm -f libgdb.a
1179 $(AR) q libgdb.a $(LIBGDB_OBS)
1180 $(RANLIB) libgdb.a
c906108c 1181
c906108c
SS
1182# This is useful when debugging GDB, because some Unix's don't let you run GDB
1183# on itself without copying the executable. So "make gdb1" will make
1184# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
1185# Removing gdb1 before the copy is the right thing if gdb1 is open
1186# in another process.
1187gdb1$(EXEEXT): gdb$(EXEEXT)
1188 rm -f gdb1$(EXEEXT)
1189 cp gdb$(EXEEXT) gdb1$(EXEEXT)
1190
c906108c
SS
1191# Put the proper machine-specific files first, so M-. on a machine
1192# specific routine gets the one for the correct machine. (FIXME: those
1193# files go in twice; we should be removing them from the main list).
1194
1195# TAGS depends on all the files that go into it so you can rebuild TAGS
1196# with `make TAGS' and not have to say `rm TAGS' first.
1197
cfd53605 1198GDB_NM_FILE = @GDB_NM_FILE@
bd31016f 1199TAGS: $(DEPFILES) $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
c906108c 1200 @echo Making TAGS
cfd53605 1201 @etags $(srcdir)/$(GDB_NM_FILE) \
bd31016f 1202 `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
c906108c
SS
1203 echo $(srcdir)/$$i ; \
1204 done ; for i in $(TAGFILES_WITH_SRCDIR); do \
1205 echo $$i ; \
1206 done) | sed -e 's/\.o$$/\.c/'` \
1207 `find $(srcdir)/config -name '*.h' -print`
1208
1209tags: TAGS
1210
b3a90332 1211clean mostlyclean: $(CONFIG_CLEAN)
e28b3332 1212 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(CLEANDIRS)" subdir_do
d3814881 1213 rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp version.c-tmp
c906108c 1214 rm -f init.c version.c
104c1213 1215 rm -f gdb$(EXEEXT) core make.log
c906108c 1216 rm -f gdb[0-9]$(EXEEXT)
847f5ce8 1217 rm -f test-cp-name-parser$(EXEEXT)
05a4558a 1218 rm -f xml-builtin.c stamp-xml
3c54f140 1219 rm -f $(DEPDIR)/*
fb4c6eba 1220
226361c4
AC
1221.PHONY: clean-tui
1222clean-tui:
1223 rm -f $(TUI)$(EXEEXT)
c906108c 1224
8132723e 1225# This used to depend on c-exp.c m2-exp.c TAGS
c906108c
SS
1226# I believe this is wrong; the makefile standards for distclean just
1227# describe removing files; the only sort of "re-create a distribution"
1228# functionality described is if the distributed files are unmodified.
4edb848c 1229# NB: While GDBSERVER might be configured on native systems, it isn't
a1f5b845 1230# always included in SUBDIRS. Remove the gdbserver files explicitly.
c906108c 1231distclean: clean
e28b3332 1232 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(CLEANDIRS)" subdir_do
4edb848c
AC
1233 rm -f gdbserver/config.status gdbserver/config.log
1234 rm -f gdbserver/tm.h gdbserver/xm.h gdbserver/nm.h
1235 rm -f gdbserver/Makefile gdbserver/config.cache
db985757 1236 rm -f nm.h config.status config.h stamp-h .gdbinit
c906108c
SS
1237 rm -f y.output yacc.acts yacc.tmp y.tab.h
1238 rm -f config.log config.cache
1239 rm -f Makefile
a417dc56 1240 rm -rf $(DEPDIR)
c906108c
SS
1241
1242maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
1243realclean: maintainer-clean
1244
1245local-maintainer-clean:
1246 @echo "This command is intended for maintainers to use;"
1247 @echo "it deletes files that may require special tools to rebuild."
8132723e 1248 rm -f c-exp.c \
847f5ce8 1249 cp-name-parser.c \
8132723e
AC
1250 ada-lex.c ada-exp.c \
1251 objc-exp.c \
c906108c 1252 jv-exp.tab \
8132723e 1253 f-exp.c m2-exp.c p-exp.c
c906108c
SS
1254 rm -f TAGS $(INFOFILES)
1255 rm -f $(YYFILES)
db985757 1256 rm -f nm.h config.status
c906108c
SS
1257
1258do-maintainer-clean:
e28b3332 1259 @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(CLEANDIRS)" \
c906108c
SS
1260 subdir_do
1261
ddc9cd0f 1262diststuff: $(DISTSTUFF) $(PACKAGE).pot $(CATALOGS)
1a645206 1263 cd doc; $(MAKE) $(MFLAGS) diststuff
c906108c
SS
1264
1265subdir_do: force
1266 @for i in $(DODIRS); do \
1267 if [ -f ./$$i/Makefile ] ; then \
1268 if (cd ./$$i; \
1269 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
1270 else exit 1 ; fi ; \
1271 else true ; fi ; \
1272 done
1273
1274Makefile: Makefile.in config.status @frags@
4e8d927d 1275 # Regenerate the Makefile and the tm.h / nm.h links.
aa11fd3f 1276 CONFIG_FILES="Makefile" \
4e8d927d
DJ
1277 CONFIG_COMMANDS= \
1278 CONFIG_HEADERS= \
1279 $(SHELL) config.status
aa11fd3f
DJ
1280
1281gnulib/Makefile: gnulib/Makefile.in gnulib/Makefile.in config.status @frags@
1282 CONFIG_FILES="gnulib/Makefile" \
1283 CONFIG_COMMANDS="depfiles" \
1284 CONFIG_HEADERS= \
1285 CONFIG_LINKS= \
1286 $(SHELL) config.status
c906108c
SS
1287
1288config.h: stamp-h ; @true
1983cb9a 1289stamp-h: $(srcdir)/config.in config.status
4e8d927d 1290 CONFIG_HEADERS=config.h:config.in \
c068b4e8 1291 CONFIG_COMMANDS="default depdir" \
4e8d927d
DJ
1292 CONFIG_FILES= \
1293 CONFIG_LINKS= \
1294 $(SHELL) config.status
1295
1983cb9a 1296config.status: $(srcdir)/configure configure.tgt configure.host
c906108c
SS
1297 $(SHELL) config.status --recheck
1298
1983cb9a
RW
1299ACLOCAL = aclocal
1300ACLOCAL_AMFLAGS = -I gnulib/m4
1301aclocal_m4_deps = \
1302 configure.ac \
1303 gnulib/m4/extensions.m4 \
1304 gnulib/m4/gnulib-common.m4 \
1305 gnulib/m4/gnulib-comp.m4 \
1306 gnulib/m4/include_next.m4 \
1307 gnulib/m4/longlong.m4 \
1308 gnulib/m4/memchr.m4 \
1309 gnulib/m4/memcmp.m4 \
1310 gnulib/m4/memmem.m4 \
1311 gnulib/m4/onceonly_2_57.m4 \
1312 gnulib/m4/stdint.m4 \
1313 gnulib/m4/string_h.m4 \
1314 gnulib/m4/wchar.m4 \
1315 ../config/extensions.m4 \
1316 ../config/lead-dot.m4 \
1317 ../config/proginstall.m4 \
1318 ../bfd/bfd.m4 \
1319 ../config/acinclude.m4 \
1320 ../config/override.m4 \
1321 ../config/gettext-sister.m4 \
1322 ../config/lib-ld.m4 \
1323 ../config/lib-prefix.m4 \
1324 ../config/lib-link.m4 \
1325 ../config/acx.m4 \
1326 ../config/tcl.m4 \
1327 ../config/depstand.m4 \
1328 ../config/lcmessage.m4 \
1329 ../config/codeset.m4
1330
1331$(srcdir)/aclocal.m4: @MAINTAINER_MODE_TRUE@ $(aclocal_m4_deps)
1332 cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
1333
1334AUTOCONF = autoconf
1335configure_deps = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
1336$(srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(configure_deps)
1337 cd $(srcdir) && $(AUTOCONF)
1338
1339AUTOHEADER = autoheader
1340$(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(configure_deps)
1341 cd $(srcdir) && $(AUTOHEADER)
1342 rm -f stamp-h
1343 touch $@
1344
1345# automatic rebuilding in automake-generated Makefiles requires
1346# this rule in the toplevel Makefile, which, with GNU make, causes
1347# the desired updates through the implicit regeneration of the Makefile
1348# and all of its prerequisites.
1349am--refresh:
1350 @:
1351
c906108c
SS
1352force:
1353
1354# Documentation!
1355# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
1356doc/refcard.dvi:
1357 cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
1358
1359# GDB QUICK REFERENCE (PostScript output, common PS fonts)
1360doc/refcard.ps:
1361 cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
1362
1363# GDB MANUAL: TeX dvi file
1364doc/gdb.dvi:
1365 cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
1366
1367# GDB MANUAL: info file
1368doc/gdb.info:
1369 cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
1370
1371# Make copying.c from COPYING
a417dc56 1372$(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ $(srcdir)/../COPYING3 $(srcdir)/copying.awk
413ccac7 1373 awk -f $(srcdir)/copying.awk \
4de6a07e 1374 < $(srcdir)/../COPYING3 > $(srcdir)/copying.tmp
413ccac7 1375 mv $(srcdir)/copying.tmp $(srcdir)/copying.c
c906108c 1376
d3814881
AC
1377version.c: Makefile version.in
1378 rm -f version.c-tmp version.c
1379 echo '#include "version.h"' >> version.c-tmp
696f451b 1380 echo 'const char version[] = "'"`sed q ${srcdir}/version.in`"'";' >> version.c-tmp
d3814881
AC
1381 echo 'const char host_name[] = "$(host_alias)";' >> version.c-tmp
1382 echo 'const char target_name[] = "$(target_alias)";' >> version.c-tmp
1383 mv version.c-tmp version.c
c906108c 1384
7a464420
AC
1385observer.h: observer.sh doc/observer.texi
1386 ${srcdir}/observer.sh h ${srcdir}/doc/observer.texi observer.h
1387
1388observer.inc: observer.sh doc/observer.texi
1389 ${srcdir}/observer.sh inc ${srcdir}/doc/observer.texi observer.inc
c906108c 1390
c906108c
SS
1391lint: $(LINTFILES)
1392 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
b9ff61f8 1393 `echo $(DEPFILES) $(CONFIG_OBS) | sed 's/\.o /\.c /g'`
c906108c
SS
1394
1395gdb.cxref: $(SFILES)
1396 cxref -I. $(SFILES) >gdb.cxref
1397
1398force_update:
1399
1400# GNU Make has an annoying habit of putting *all* the Makefile variables
1401# into the environment, unless you include this target as a circumvention.
1402# Rumor is that this will be fixed (and this target can be removed)
1403# in GNU Make 4.0.
1404.NOEXPORT:
1405
1406# GNU Make 3.63 has a different problem: it keeps tacking command line
1407# overrides onto the definition of $(MAKE). This variable setting
1408# will remove them.
1409MAKEOVERRIDES=
1410
b1364885 1411ALLDEPFILES = \
c41669e0 1412 aix-thread.c \
8a112c90
MK
1413 alpha-nat.c alphabsd-nat.c alpha-linux-nat.c \
1414 alpha-tdep.c alpha-mdebug-tdep.c \
1415 alpha-linux-tdep.c alpha-osf1-tdep.c \
1416 alphabsd-tdep.c alphafbsd-tdep.c alphanbsd-tdep.c alphaobsd-tdep.c \
9c1488cb 1417 amd64-nat.c amd64-tdep.c \
b9ff61f8 1418 amd64bsd-nat.c amd64fbsd-nat.c amd64fbsd-tdep.c \
09ae75b6 1419 amd64nbsd-nat.c amd64nbsd-tdep.c \
9c1488cb 1420 amd64obsd-nat.c amd64obsd-tdep.c \
5cd226f2 1421 amd64-darwin-tdep.c \
4c1d2973 1422 amd64-dicos-tdep.c \
9c1488cb 1423 amd64-linux-nat.c amd64-linux-tdep.c \
0bbc026e 1424 amd64-sol2-tdep.c \
78664fa3 1425 arm-linux-nat.c arm-linux-tdep.c arm-symbian-tdep.c arm-tdep.c \
47ccd048 1426 armnbsd-nat.c armbsd-tdep.c armnbsd-tdep.c armobsd-tdep.c \
8818c391 1427 avr-tdep.c \
fa565c2b 1428 bsd-uthread.c bsd-kvm.c \
de732108 1429 core-regset.c corelow.c \
5cd226f2 1430 dcache.c dicos-tdep.c darwin-nat.c \
4c1d2973 1431 exec.c \
578c1c03
MK
1432 fbsd-nat.c \
1433 fork-child.c \
a3640c75 1434 glibc-tdep.c \
a5d61f66 1435 go32-nat.c h8300-tdep.c \
eeb8076c 1436 hppa-tdep.c hppa-hpux-tdep.c hppa-hpux-nat.c \
959464ff 1437 hppa-linux-tdep.c hppa-linux-nat.c \
0e56aeaf 1438 hppabsd-nat.c hppabsd-tdep.c \
af5ca30d
NH
1439 hppaobsd-tdep.c \
1440 hppanbsd-nat.c hppanbsd-tdep.c \
483367ee 1441 i386-tdep.c i386-linux-nat.c \
f97fe8ff 1442 i386v4-nat.c i386-cygwin-tdep.c \
8a96bc77 1443 i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \
9062529b 1444 i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \
e750d25e 1445 i387-tdep.c \
5cd226f2 1446 i386-darwin-tdep.c i386-darwin-nat.c \
a15c5c83 1447 i386-dicos-tdep.c \
52b98211 1448 i386-linux-tdep.c i386-nat.c \
6b16acab 1449 i386-sol2-nat.c i386-sol2-tdep.c \
e0ca2bb9 1450 i386gnu-nat.c i386gnu-tdep.c \
8064c6ae 1451 ia64-linux-nat.c ia64-linux-tdep.c ia64-tdep.c \
eee22bf8 1452 inf-ptrace.c inf-ttrace.c \
1da33a4a 1453 irix5-nat.c \
0e5d83e3 1454 libunwind-frame.c \
8a112c90 1455 linux-fork.c \
4aa995e1 1456 linux-tdep.c \
b7f6bf22 1457 linux-record.c \
c28c63d8 1458 lm32-tdep.c \
1a12f22f 1459 m68hc11-tdep.c \
9b32d526
KI
1460 m32r-tdep.c \
1461 m32r-linux-nat.c m32r-linux-tdep.c \
c906108c 1462 m68k-tdep.c \
8f2d3ea0 1463 m68kbsd-nat.c m68kbsd-tdep.c \
10d6c8cd 1464 m68klinux-nat.c m68klinux-tdep.c \
bf2ca189 1465 m88k-tdep.c m88kbsd-nat.c \
2d1c1221 1466 microblaze-tdep.c microblaze-linux-tdep.c \
121ce6e5 1467 mingw-hdep.c \
d2b57b94 1468 mips-linux-nat.c mips-linux-tdep.c \
313fb2f6 1469 mips-irix-tdep.c \
d0e5500c 1470 mips-tdep.c \
257ce470 1471 mipsnbsd-nat.c mipsnbsd-tdep.c \
760caeb8 1472 mips64obsd-nat.c mips64obsd-tdep.c \
84c5b489 1473 nbsd-nat.c nbsd-tdep.c obsd-tdep.c \
b9ff61f8 1474 solib-osf.c \
cfa9d6d9 1475 solib-target.c \
1a92f856 1476 somread.c solib-som.c \
121ce6e5 1477 posix-hdep.c \
b4ead1bd
MK
1478 ppc-sysv-tdep.c ppc-linux-nat.c ppc-linux-tdep.c \
1479 ppcnbsd-nat.c ppcnbsd-tdep.c \
d195bc9f 1480 ppcobsd-nat.c ppcobsd-tdep.c \
c5bb1243 1481 procfs.c \
ea35711c 1482 remote-m32r-sdi.c remote-mips.c \
1f5befc1 1483 remote-sim.c \
ea35711c 1484 dcache.c \
c906108c 1485 rs6000-nat.c rs6000-tdep.c \
e81b020b 1486 s390-tdep.c s390-nat.c \
27fd2f50 1487 score-tdep.c \
0ea3f30e 1488 ser-go32.c ser-pipe.c ser-tcp.c ser-mingw.c \
55ff77ac 1489 sh-tdep.c sh64-tdep.c shnbsd-tdep.c shnbsd-nat.c \
081bf9da 1490 sol2-tdep.c \
a77053c2 1491 solib-irix.c solib-svr4.c solib-sunos.c \
90b9b517
EZ
1492 sparc-linux-nat.c sparc-linux-tdep.c \
1493 sparc-sol2-nat.c sparc-sol2-tdep.c sparc64-sol2-tdep.c \
1494 sparc-nat.c sparc-tdep.c sparc64-linux-nat.c sparc64-linux-tdep.c \
1495 sparc64-nat.c sparc64-tdep.c sparc64fbsd-nat.c sparc64fbsd-tdep.c \
1e067c66 1496 sparc64nbsd-nat.c sparc64nbsd-tdep.c sparc64obsd-tdep.c \
566626fa 1497 sparcnbsd-nat.c sparcnbsd-tdep.c sparcobsd-tdep.c \
85e747d2 1498 spu-linux-nat.c spu-tdep.c spu-multiarch.c solib-spu.c \
181124bc 1499 v850-tdep.c \
b9e1c0d6 1500 vax-nat.c vax-tdep.c vaxbsd-nat.c vaxnbsd-tdep.c \
31b060a2 1501 windows-nat.c windows-tdep.c \
0c884e17 1502 xcoffread.c xcoffsolib.c \
ca3bf3bd 1503 xstormy16-tdep.c \
94a0e877
MG
1504 xtensa-tdep.c xtensa-config.c \
1505 xtensa-linux-tdep.c xtensa-linux-nat.c xtensa-xtregs.c
c906108c 1506
a1f5b845 1507# Some files need explicit build rules (due to -Werror problems) or due
f92d4a7b
AC
1508# to sub-directory fun 'n' games.
1509
f92d4a7b 1510hpux-thread.o: $(srcdir)/hpux-thread.c
a417dc56
RW
1511 $(COMPILE) -I$(srcdir)/osf-share -I$(srcdir)/osf-share/HP800 \
1512 -I/usr/include/dce $(srcdir)/hpux-thread.c
1513 $(POSTCOMPILE)
f92d4a7b 1514
030292b7 1515# main.o needs an explicit build rule to get TARGET_SYSTEM_ROOT and BINDIR.
a417dc56
RW
1516main.o: $(srcdir)/main.c
1517 $(COMPILE) $(TARGET_SYSTEM_ROOT_DEFINE) -DBINDIR=\"$(bindir)\" $(srcdir)/main.c
1518 $(POSTCOMPILE)
030292b7 1519
cf6a0e73
AC
1520# FIXME: cagney/2003-08-10: "monitor.c" gets -Wformat-nonliteral
1521# errors. It turns out that that is the least of monitor.c's
1522# problems. The function print_vsprintf appears to be using
1523# va_arg(long) to extract CORE_ADDR parameters - something that
1524# definitly will not work. "monitor.c" needs to be rewritten so that
1525# it doesn't use format strings and instead uses callbacks.
1526monitor.o: $(srcdir)/monitor.c
a417dc56
RW
1527 $(COMPILE.pre) $(INTERNAL_WARN_CFLAGS) $(COMPILE.post) $(srcdir)/monitor.c
1528 $(POSTCOMPILE)
cf6a0e73 1529
46e9880c
DJ
1530# Do not try to build "printcmd.c" with -Wformat-nonliteral. It manually
1531# checks format strings.
4677b456 1532printcmd.o: $(srcdir)/printcmd.c
a417dc56
RW
1533 $(COMPILE.pre) $(INTERNAL_CFLAGS_BASE) $(GDB_WARN_CFLAGS_NO_FORMAT) \
1534 $(GDB_WERROR_CFLAGS) $(COMPILE.post) $(srcdir)/printcmd.c
1535 $(POSTCOMPILE)
4677b456 1536
ddc9cd0f
AC
1537# Message files. Based on code in gcc/Makefile.in.
1538
1539# Rules for generating translated message descriptions. Disabled by
1540# autoconf if the tools are not available.
1541
1542.SUFFIXES: .po .gmo .pox .pot
1543.PHONY: all-po install-po uninstall-po clean-po update-po $(PACKAGE).pot
1544
1545all-po: $(CATALOGS)
1546
1547# This notation should be acceptable to all Make implementations used
1548# by people who are interested in updating .po files.
1549update-po: $(CATALOGS:.gmo=.pox)
1550
1551# N.B. We do not attempt to copy these into $(srcdir). The snapshot
1552# script does that.
1553.po.gmo:
1554 -test -d po || mkdir po
1555 $(GMSGFMT) --statistics -o $@ $<
1556
1557# The new .po has to be gone over by hand, so we deposit it into
1558# build/po with a different extension. If build/po/$(PACKAGE).pot
1559# exists, use it (it was just created), else use the one in srcdir.
1560.po.pox:
1561 -test -d po || mkdir po
1562 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
1563 then echo po/$(PACKAGE).pot; \
1564 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
1565
1566# This rule has to look for .gmo modules in both srcdir and the cwd,
1567# and has to check that we actually have a catalog for each language,
1568# in case they weren't built or included with the distribution.
1569install-po:
1570 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(datadir)
1571 cats="$(CATALOGS)"; for cat in $$cats; do \
1572 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1573 if [ -f $$cat ]; then :; \
1574 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1575 else continue; \
1576 fi; \
1577 dir=$(localedir)/$$lang/LC_MESSAGES; \
1578 echo $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir; \
1579 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$$dir || exit 1; \
1580 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1581 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
1582 done
1583uninstall-po:
1584 cats="$(CATALOGS)"; for cat in $$cats; do \
1585 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
1586 if [ -f $$cat ]; then :; \
1587 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
1588 else continue; \
1589 fi; \
1590 dir=$(localedir)/$$lang/LC_MESSAGES; \
1591 rm -f $(DESTDIR)$$dir/$(PACKAGE).mo; \
1592 done
1593# Delete po/*.gmo only if we are not building in the source directory.
1594clean-po:
1595 -if [ ! -f Makefile.in ]; then rm -f po/*.gmo; fi
1596
1597# Rule for regenerating the message template (gdb.pot). Instead of
1598# forcing everyone to edit POTFILES.in, which proved impractical, this
1599# rule has no dependencies and always regenerates gdb.pot. This is
1600# relatively harmless since the .po files do not directly depend on
1601# it. The .pot file is left in the build directory. Since GDB's
1602# Makefile lacks a cannonical list of sources (missing xm, tm and nm
1603# files) force this rule.
1604$(PACKAGE).pot: po/$(PACKAGE).pot
1605po/$(PACKAGE).pot: force
1606 -test -d po || mkdir po
1607 sh -e $(srcdir)/po/gdbtext $(XGETTEXT) $(PACKAGE) . $(srcdir)
1608
84367a3e 1609
0e0d15ca 1610#
1517c6d1 1611# YACC/LEX dependencies
0e0d15ca 1612#
8132723e
AC
1613# LANG-exp.c is generated in objdir from LANG-exp.y if it doesn't
1614# exist in srcdir, then compiled in objdir to LANG-exp.o. If we
1615# said LANG-exp.c rather than ./c-exp.c some makes would
1616# sometimes re-write it into $(srcdir)/c-exp.c. Remove bogus
1517c6d1 1617# decls for malloc/realloc/free which conflict with everything else.
8132723e 1618# Strictly speaking c-exp.c should therefore depend on
1517c6d1 1619# Makefile.in, but that was a pretty big annoyance.
0e0d15ca 1620
8132723e 1621.SUFFIXES: .y .l
a417dc56 1622.y.c:
42ecbf5e 1623 $(SHELL) $(YLWRAP) $< y.tab.c $@.tmp -- $(YACC) $(YFLAGS)
1517c6d1
AC
1624 -sed -e '/extern.*malloc/d' \
1625 -e '/extern.*realloc/d' \
1626 -e '/extern.*free/d' \
1627 -e '/include.*malloc.h/d' \
2941da8c
MC
1628 -e 's/\([^x]\)malloc/\1xmalloc/g' \
1629 -e 's/\([^x]\)realloc/\1xrealloc/g' \
676e87b3
PA
1630 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
1631 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
91092ee5 1632 -e '/^#line.*y.tab.c/d' \
8132723e
AC
1633 < $@.tmp > $@.new
1634 -rm $@.tmp
1635 mv $@.new ./$*.c
1636.l.c:
23485554
PH
1637 if [ "$(FLEX)" ] && $(FLEX) --version >/dev/null 2>&1; then \
1638 $(FLEX) -o$@ $< && \
1639 rm -f $@.new && \
1640 sed -e '/extern.*malloc/d' \
1641 -e '/extern.*realloc/d' \
1642 -e '/extern.*free/d' \
1643 -e '/include.*malloc.h/d' \
2941da8c
MC
1644 -e 's/\([^x]\)malloc/\1xmalloc/g' \
1645 -e 's/\([^x]\)realloc/\1xrealloc/g' \
676e87b3
PA
1646 -e 's/\([ \t;,(]\)free\([ \t]*[&(),]\)/\1xfree\2/g' \
1647 -e 's/\([ \t;,(]\)free$$/\1xfree/g' \
23485554
PH
1648 -e 's/yy_flex_xrealloc/yyxrealloc/g' \
1649 < $@ > $@.new && \
1650 rm -f $@ && \
1651 mv $@.new $@; \
1652 elif [ -f $@ ]; then \
8132723e 1653 echo "Warning: $*.c older than $*.l and flex not available."; \
23485554
PH
1654 else \
1655 echo "$@ missing and flex not available."; \
1656 false; \
1517c6d1 1657 fi
8132723e
AC
1658
1659.PRECIOUS: ada-exp.c ada-lex.c
1660.PRECIOUS: c-exp.c
1661.PRECIOUS: f-exp.c
1662.PRECIOUS: jv-exp.c
1663.PRECIOUS: m2-exp.c
1664.PRECIOUS: objc-exp.c
1665.PRECIOUS: p-exp.c
0e0d15ca 1666
108546a0
DJ
1667# XML rules
1668
1669xml-builtin.c: stamp-xml; @true
1670stamp-xml: $(srcdir)/features/feature_to_c.sh Makefile $(XMLFILES)
1671 rm -f xml-builtin.tmp
1672 AWK="$(AWK)" \
1673 $(SHELL) $(srcdir)/features/feature_to_c.sh \
1674 xml-builtin.tmp $(XMLFILES)
1675 $(SHELL) $(srcdir)/../move-if-change xml-builtin.tmp xml-builtin.c
1676 echo stamp > stamp-xml
1677
1678.PRECIOUS: xml-builtin.c
1679
d318976c 1680#
72acd513 1681# gdb/cli/ dependencies
d318976c
FN
1682#
1683# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 1684# or try to compile the object file into the sub-directory.
d318976c 1685
a417dc56
RW
1686cli-cmds.o: $(srcdir)/cli/cli-cmds.c
1687 $(COMPILE) $(srcdir)/cli/cli-cmds.c
1688 $(POSTCOMPILE)
1689
1690cli-decode.o: $(srcdir)/cli/cli-decode.c
1691 $(COMPILE) $(srcdir)/cli/cli-decode.c
1692 $(POSTCOMPILE)
1693
1694cli-dump.o: $(srcdir)/cli/cli-dump.c
1695 $(COMPILE) $(srcdir)/cli/cli-dump.c
1696 $(POSTCOMPILE)
1697
1698cli-interp.o: $(srcdir)/cli/cli-interp.c
1699 $(COMPILE) $(srcdir)/cli/cli-interp.c
1700 $(POSTCOMPILE)
1701
1702cli-logging.o: $(srcdir)/cli/cli-logging.c
1703 $(COMPILE) $(srcdir)/cli/cli-logging.c
1704 $(POSTCOMPILE)
1705
1706cli-script.o: $(srcdir)/cli/cli-script.c
1707 $(COMPILE) $(srcdir)/cli/cli-script.c
1708 $(POSTCOMPILE)
1709
1710cli-setshow.o: $(srcdir)/cli/cli-setshow.c
1711 $(COMPILE) $(srcdir)/cli/cli-setshow.c
1712 $(POSTCOMPILE)
1713
12cf3f1b 1714
541a7aac
AC
1715#
1716# GDBTK sub-directory
1717#
72acd513
AC
1718# Need to explicitly specify the compile rule as make will do nothing
1719# or try to compile the object file into the mi directory.
541a7aac 1720
f15ab4a7
AC
1721all-gdbtk: insight$(EXEEXT)
1722
1723install-gdbtk:
1724 transformed_name=`t='$(program_transform_name)'; \
1725 echo insight | sed -e $$t` ; \
1726 if test "x$$transformed_name" = x; then \
1727 transformed_name=insight ; \
1728 else \
1729 true ; \
1730 fi ; \
c938e9b0 1731 $(SHELL) $(srcdir)/../mkinstalldirs $(DESTDIR)$(bindir); \
72bdd927
AC
1732 $(INSTALL_PROGRAM) insight$(EXEEXT) \
1733 $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1734 $(SHELL) $(srcdir)/../mkinstalldirs \
1735 $(DESTDIR)$(GDBTK_LIBRARY) ; \
1736 $(SHELL) $(srcdir)/../mkinstalldirs \
1737 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION) ; \
1738 $(INSTALL_DATA) $(srcdir)/gdbtk/plugins/plugins.tcl \
1739 $(DESTDIR)$(libdir)/insight$(GDBTK_VERSION)/plugins.tcl ; \
1740 $(SHELL) $(srcdir)/../mkinstalldirs \
1741 $(DESTDIR)$(GDBTK_LIBRARY)/images \
1742 $(DESTDIR)$(GDBTK_LIBRARY)/images2 ; \
f15ab4a7 1743 $(SHELL) $(srcdir)/../mkinstalldirs \
72bdd927
AC
1744 $(DESTDIR)$(GDBTK_LIBRARY)/help \
1745 $(DESTDIR)$(GDBTK_LIBRARY)/help/images \
1746 $(DESTDIR)$(GDBTK_LIBRARY)/help/trace ; \
f15ab4a7 1747 cd $(srcdir)/gdbtk/library ; \
df21e465 1748 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 1749 do \
72bdd927 1750 $(INSTALL_DATA) $$i $(DESTDIR)$(GDBTK_LIBRARY)/$$i ; \
f15ab4a7
AC
1751 done ;
1752
1753uninstall-gdbtk:
1754 transformed_name=`t='$(program_transform_name)'; \
1755 echo insight | sed -e $$t` ; \
1756 if test "x$$transformed_name" = x; then \
1757 transformed_name=insight ; \
1758 else \
1759 true ; \
1760 fi ; \
72bdd927
AC
1761 rm -f $(DESTDIR)$(bindir)/$$transformed_name$(EXEEXT) ; \
1762 rm -rf $(DESTDIR)$(GDBTK_LIBRARY)
f15ab4a7
AC
1763
1764clean-gdbtk:
1765 rm -f insight$(EXEEXT)
1766
1767# Removing the old gdb first works better if it is running, at least on SunOS.
d836ee13 1768insight$(EXEEXT): gdbtk-main.o libgdb.a $(ADD_DEPS) \
f15ab4a7
AC
1769 $(CDEPS) $(TDEPLIBS)
1770 rm -f insight$(EXEEXT)
72cfdc76 1771 $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) \
d836ee13 1772 -o insight$(EXEEXT) gdbtk-main.o libgdb.a \
f15ab4a7
AC
1773 $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
1774
541a7aac
AC
1775gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
1776 $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
1777
a417dc56
RW
1778all_gdbtk_cflags = $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1779 $(ITK_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \
1780 $(GDBTK_CFLAGS) \
1781 -DGDBTK_LIBRARY=\"$(GDBTK_LIBRARY)\" \
1782 -DSRC_DIR=\"$(GDBTK_SRC_DIR)\"
1783
1784gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c
1785 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk.c
1786 $(POSTCOMPILE)
1787
1788gdbtk-bp.o: $(srcdir)/gdbtk/generic/gdbtk-bp.c
1789 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-bp.c
1790 $(POSTCOMPILE)
1791
1792gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c
1793 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-cmds.c
1794 $(POSTCOMPILE)
1795
1796gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c
1797 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-hooks.c
1798 $(POSTCOMPILE)
1799
1800gdbtk-interp.o: $(srcdir)/gdbtk/generic/gdbtk-interp.c
1801 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-interp.c
1802 $(POSTCOMPILE)
1803
1804gdbtk-main.o: $(srcdir)/gdbtk/generic/gdbtk-main.c
1805 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-main.c
1806 $(POSTCOMPILE)
1807
1808gdbtk-register.o: $(srcdir)/gdbtk/generic/gdbtk-register.c
1809 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-register.c
1810 $(POSTCOMPILE)
1811
1812gdbtk-stack.o: $(srcdir)/gdbtk/generic/gdbtk-stack.c
1813 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-stack.c
1814 $(POSTCOMPILE)
1815
1816gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1817 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1818 $(POSTCOMPILE)
1819
1820gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1821 $(COMPILE) $(all_gdbtk_cflags) $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1822 $(POSTCOMPILE)
1823
541a7aac 1824
fb40c209 1825#
72acd513 1826# gdb/mi/ dependencies
fb40c209
AC
1827#
1828# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 1829# or try to compile the object file into the sub-directory.
fb40c209 1830
a417dc56
RW
1831mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c
1832 $(COMPILE) $(srcdir)/mi/mi-cmd-break.c
1833 $(POSTCOMPILE)
1834
1835mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c
1836 $(COMPILE) $(srcdir)/mi/mi-cmd-disas.c
1837 $(POSTCOMPILE)
1838
1839mi-cmd-env.o: $(srcdir)/mi/mi-cmd-env.c
1840 $(COMPILE) $(srcdir)/mi/mi-cmd-env.c
1841 $(POSTCOMPILE)
1842
1843mi-cmd-file.o: $(srcdir)/mi/mi-cmd-file.c
1844 $(COMPILE) $(srcdir)/mi/mi-cmd-file.c
1845 $(POSTCOMPILE)
1846
1847mi-cmds.o: $(srcdir)/mi/mi-cmds.c
1848 $(COMPILE) $(srcdir)/mi/mi-cmds.c
1849 $(POSTCOMPILE)
1850
1851mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c
1852 $(COMPILE) $(srcdir)/mi/mi-cmd-stack.c
1853 $(POSTCOMPILE)
1854
1855mi-cmd-target.o: $(srcdir)/mi/mi-cmd-target.c
1856 $(COMPILE) $(srcdir)/mi/mi-cmd-target.c
1857 $(POSTCOMPILE)
1858
1859mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c
1860 $(COMPILE) $(srcdir)/mi/mi-cmd-var.c
1861 $(POSTCOMPILE)
1862
1863mi-console.o: $(srcdir)/mi/mi-console.c
1864 $(COMPILE) $(srcdir)/mi/mi-console.c
1865 $(POSTCOMPILE)
1866
1867mi-getopt.o: $(srcdir)/mi/mi-getopt.c
1868 $(COMPILE) $(srcdir)/mi/mi-getopt.c
1869 $(POSTCOMPILE)
1870
1871mi-interp.o: $(srcdir)/mi/mi-interp.c
1872 $(COMPILE) $(srcdir)/mi/mi-interp.c
1873 $(POSTCOMPILE)
1874
1875mi-main.o: $(srcdir)/mi/mi-main.c
1876 $(COMPILE) $(srcdir)/mi/mi-main.c
1877 $(POSTCOMPILE)
1878
1879mi-out.o: $(srcdir)/mi/mi-out.c
1880 $(COMPILE) $(srcdir)/mi/mi-out.c
1881 $(POSTCOMPILE)
1882
1883mi-parse.o: $(srcdir)/mi/mi-parse.c
1884 $(COMPILE) $(srcdir)/mi/mi-parse.c
1885 $(POSTCOMPILE)
1886
1887mi-symbol-cmds.o: $(srcdir)/mi/mi-symbol-cmds.c
1888 $(COMPILE) $(srcdir)/mi/mi-symbol-cmds.c
1889 $(POSTCOMPILE)
1890
1891mi-common.o: $(srcdir)/mi/mi-common.c
1892 $(COMPILE) $(srcdir)/mi/mi-common.c
1893 $(POSTCOMPILE)
fb40c209 1894
f92d4a7b 1895#
2aecd87f 1896# gdb/common/ dependencies
f92d4a7b 1897#
72acd513 1898# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 1899# or try to compile the object file into the sub-directory.
f92d4a7b 1900
2aecd87f
DE
1901signals.o: $(srcdir)/common/signals.c
1902 $(COMPILE) $(srcdir)/common/signals.c
a417dc56 1903 $(POSTCOMPILE)
f92d4a7b 1904
ed952ac5 1905#
1517c6d1 1906# gdb/tui/ dependencies
ed952ac5
AC
1907#
1908# Need to explicitly specify the compile rule as make will do nothing
1517c6d1 1909# or try to compile the object file into the sub-directory.
ed952ac5 1910
a417dc56
RW
1911tui.o: $(srcdir)/tui/tui.c
1912 $(COMPILE) $(srcdir)/tui/tui.c
1913 $(POSTCOMPILE)
1914
1915tui-command.o: $(srcdir)/tui/tui-command.c
1916 $(COMPILE) $(srcdir)/tui/tui-command.c
1917 $(POSTCOMPILE)
1918
1919tui-data.o: $(srcdir)/tui/tui-data.c
1920 $(COMPILE) $(srcdir)/tui/tui-data.c
1921 $(POSTCOMPILE)
1922
1923tui-disasm.o: $(srcdir)/tui/tui-disasm.c
1924 $(COMPILE) $(srcdir)/tui/tui-disasm.c
1925 $(POSTCOMPILE)
1926
1927tui-file.o: $(srcdir)/tui/tui-file.c
1928 $(COMPILE) $(srcdir)/tui/tui-file.c
1929 $(POSTCOMPILE)
1930
1931tui-hooks.o: $(srcdir)/tui/tui-hooks.c
1932 $(COMPILE) $(srcdir)/tui/tui-hooks.c
1933 $(POSTCOMPILE)
1934
1935tui-interp.o: $(srcdir)/tui/tui-interp.c
1936 $(COMPILE) $(srcdir)/tui/tui-interp.c
1937 $(POSTCOMPILE)
1938
1939tui-io.o: $(srcdir)/tui/tui-io.c
1940 $(COMPILE) $(srcdir)/tui/tui-io.c
1941 $(POSTCOMPILE)
1942
1943tui-layout.o: $(srcdir)/tui/tui-layout.c
1944 $(COMPILE) $(srcdir)/tui/tui-layout.c
1945 $(POSTCOMPILE)
1946
1947tui-main.o: $(srcdir)/tui/tui-main.c
1948 $(COMPILE) $(srcdir)/tui/tui-main.c
1949 $(POSTCOMPILE)
1950
1951tui-out.o: $(srcdir)/tui/tui-out.c
1952 $(COMPILE) $(srcdir)/tui/tui-out.c
1953 $(POSTCOMPILE)
1954
1955tui-regs.o: $(srcdir)/tui/tui-regs.c
1956 $(COMPILE) $(srcdir)/tui/tui-regs.c
1957 $(POSTCOMPILE)
1958
1959tui-source.o: $(srcdir)/tui/tui-source.c
1960 $(COMPILE) $(srcdir)/tui/tui-source.c
1961 $(POSTCOMPILE)
1962
1963tui-stack.o: $(srcdir)/tui/tui-stack.c
1964 $(COMPILE) $(srcdir)/tui/tui-stack.c
1965 $(POSTCOMPILE)
1966
1967tui-win.o: $(srcdir)/tui/tui-win.c
1968 $(COMPILE) $(srcdir)/tui/tui-win.c
1969 $(POSTCOMPILE)
1970
1971tui-windata.o: $(srcdir)/tui/tui-windata.c
1972 $(COMPILE) $(srcdir)/tui/tui-windata.c
1973 $(POSTCOMPILE)
1974
1975tui-wingeneral.o: $(srcdir)/tui/tui-wingeneral.c
1976 $(COMPILE) $(srcdir)/tui/tui-wingeneral.c
1977 $(POSTCOMPILE)
1978
1979tui-winsource.o: $(srcdir)/tui/tui-winsource.c
1980 $(COMPILE) $(srcdir)/tui/tui-winsource.c
1981 $(POSTCOMPILE)
1982
2b26d9fa
TT
1983#
1984# gdb/python/ dependencies
1985#
1986# Need to explicitly specify the compile rule as make will do nothing
1987# or try to compile the object file into the sub-directory.
1988
1989# Flags needed to compile Python code
1990PYTHON_CFLAGS=@PYTHON_CFLAGS@
1991
1992python.o: $(srcdir)/python/python.c
1993 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/python.c
1994 $(POSTCOMPILE)
1995
8a1ea21f
DE
1996py-auto-load.o: $(srcdir)/python/py-auto-load.c
1997 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-auto-load.c
1998 $(POSTCOMPILE)
1999
f3e9a817
PM
2000py-block.o: $(srcdir)/python/py-block.c
2001 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-block.c
2002 $(POSTCOMPILE)
2003
adc36818
PM
2004py-breakpoint.o: $(srcdir)/python/py-breakpoint.c
2005 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-breakpoint.c
2006 $(POSTCOMPILE)
2007
5172aecb
JB
2008py-cmd.o: $(srcdir)/python/py-cmd.c
2009 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-cmd.c
d8906c6f
TJB
2010 $(POSTCOMPILE)
2011
5172aecb
JB
2012py-frame.o: $(srcdir)/python/py-frame.c
2013 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-frame.c
f8f6f20b
TJB
2014 $(POSTCOMPILE)
2015
5172aecb
JB
2016py-function.o: $(srcdir)/python/py-function.c
2017 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-function.c
bc3b79fd
TJB
2018 $(POSTCOMPILE)
2019
be759fcf
PM
2020py-lazy-string.o: $(srcdir)/python/py-lazy-string.c
2021 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-lazy-string.c
2022 $(POSTCOMPILE)
2023
5172aecb
JB
2024py-objfile.o: $(srcdir)/python/py-objfile.c
2025 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-objfile.c
89c73ade
TT
2026 $(POSTCOMPILE)
2027
d7b32ed3
PM
2028py-param.o: $(srcdir)/python/py-param.c
2029 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-param.c
2030 $(POSTCOMPILE)
2031
5172aecb
JB
2032py-prettyprint.o: $(srcdir)/python/py-prettyprint.c
2033 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-prettyprint.c
a6bac58e
TT
2034 $(POSTCOMPILE)
2035
fa33c3cd
DE
2036py-progspace.o: $(srcdir)/python/py-progspace.c
2037 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-progspace.c
2038 $(POSTCOMPILE)
2039
f3e9a817
PM
2040py-symbol.o: $(srcdir)/python/py-symbol.c
2041 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-symbol.c
2042 $(POSTCOMPILE)
2043
2044py-symtab.o: $(srcdir)/python/py-symtab.c
2045 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-symtab.c
2046 $(POSTCOMPILE)
2047
5172aecb
JB
2048py-type.o: $(srcdir)/python/py-type.c
2049 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-type.c
2c74e833
TT
2050 $(POSTCOMPILE)
2051
5172aecb
JB
2052py-utils.o: $(srcdir)/python/py-utils.c
2053 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-utils.c
2b26d9fa
TT
2054 $(POSTCOMPILE)
2055
5172aecb
JB
2056py-value.o: $(srcdir)/python/py-value.c
2057 $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-value.c
a08702d6
TJB
2058 $(POSTCOMPILE)
2059
a417dc56
RW
2060#
2061# Dependency tracking. Most of this is conditional on GNU Make being
2062# found by configure; if GNU Make is not found, we fall back to a
2063# simpler scheme.
2064#
2065
2066@GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
2067# Note that we put the dependencies into a .Tpo file, then move them
2068# into place if the compile succeeds. We need this because gcc does
2069# not atomically write the dependency output file.
2070@GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
2071@GMAKE_TRUE@ -MF $(DEPDIR)/$(basename $(@F)).Tpo
2072@GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
2073@GMAKE_TRUE@ $(DEPDIR)/$(basename $(@F)).Po
2074@GMAKE_TRUE@else
2075@GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
2076@GMAKE_TRUE@ DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
2077# depcomp handles atomicity for us, so we don't need a postcompile
2078# step.
2079@GMAKE_TRUE@override POSTCOMPILE =
2080@GMAKE_TRUE@endif
2081
2082# A list of all the objects we might care about in this build, for
2083# dependency tracking.
2084all_object_files = gdb.o tui-main.o $(LIBGDB_OBS) gdbtk-main.o \
2085 test-cp-name-parser.o
2086
2087# Ensure that generated files are created early. Use order-only
2088# dependencies if available. They require GNU make 3.80 or newer,
2089# and the .VARIABLES variable was introduced at the same time.
2090@GMAKE_TRUE@ifdef .VARIABLES
2091@GMAKE_TRUE@$(all_object_files): | $(generated_files)
2092@GMAKE_TRUE@else
2093$(all_object_files) : $(generated_files)
2094@GMAKE_TRUE@endif
2095
2096# Dependencies.
2097@GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
ed952ac5 2098
c906108c 2099### end of the gdb Makefile.in.
This page took 1.611135 seconds and 4 git commands to generate.