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