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