]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdbsupport/Makefile.in
gdb: move libiberty.m4 to gdbsupport
[thirdparty/binutils-gdb.git] / gdbsupport / Makefile.in
CommitLineData
01027315
TT
1# Makefile.in generated by automake 1.15.1 from Makefile.am.
2# @configure_input@
3
9ed5be56 4# Copyright (C) 1994-2017 Free Software Foundation, Inc.
01027315
TT
5
6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,
8# with or without modifications, as long as this notice is preserved.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13# PARTICULAR PURPOSE.
14
15@SET_MAKE@
16
17#
6a6859cb 18# Copyright (C) 2020-2023 Free Software Foundation, Inc.
01027315
TT
19#
20# This file is free software; you can redistribute it and/or modify
21# it under the terms of the GNU General Public License as published by
22# the Free Software Foundation; either version 3 of the License, or
23# (at your option) any later version.
24#
25# This program is distributed in the hope that it will be useful,
26# but WITHOUT ANY WARRANTY; without even the implied warranty of
27# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28# GNU General Public License for more details.
29#
30# You should have received a copy of the GNU General Public License
31# along with this program; see the file COPYING3. If not see
32# <http://www.gnu.org/licenses/>.
33#
34
35VPATH = @srcdir@
36am__is_gnu_make = { \
37 if test -z '$(MAKELEVEL)'; then \
38 false; \
39 elif test -n '$(MAKE_HOST)'; then \
40 true; \
41 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
42 true; \
43 else \
44 false; \
45 fi; \
46}
47am__make_running_with_option = \
48 case $${target_option-} in \
49 ?) ;; \
50 *) echo "am__make_running_with_option: internal error: invalid" \
51 "target option '$${target_option-}' specified" >&2; \
52 exit 1;; \
53 esac; \
54 has_opt=no; \
55 sane_makeflags=$$MAKEFLAGS; \
56 if $(am__is_gnu_make); then \
57 sane_makeflags=$$MFLAGS; \
58 else \
59 case $$MAKEFLAGS in \
60 *\\[\ \ ]*) \
61 bs=\\; \
62 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
63 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
64 esac; \
65 fi; \
66 skip_next=no; \
67 strip_trailopt () \
68 { \
69 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
70 }; \
71 for flg in $$sane_makeflags; do \
72 test $$skip_next = yes && { skip_next=no; continue; }; \
73 case $$flg in \
74 *=*|--*) continue;; \
75 -*I) strip_trailopt 'I'; skip_next=yes;; \
76 -*I?*) strip_trailopt 'I';; \
77 -*O) strip_trailopt 'O'; skip_next=yes;; \
78 -*O?*) strip_trailopt 'O';; \
79 -*l) strip_trailopt 'l'; skip_next=yes;; \
80 -*l?*) strip_trailopt 'l';; \
81 -[dEDm]) skip_next=yes;; \
82 -[JT]) skip_next=yes;; \
83 esac; \
84 case $$flg in \
85 *$$target_option*) has_opt=yes; break;; \
86 esac; \
87 done; \
88 test $$has_opt = yes
89am__make_dryrun = (target_option=n; $(am__make_running_with_option))
90am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
91pkgdatadir = $(datadir)/@PACKAGE@
92pkgincludedir = $(includedir)/@PACKAGE@
93pkglibdir = $(libdir)/@PACKAGE@
94pkglibexecdir = $(libexecdir)/@PACKAGE@
95am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
96install_sh_DATA = $(install_sh) -c -m 644
97install_sh_PROGRAM = $(install_sh) -c
98install_sh_SCRIPT = $(install_sh) -c
99INSTALL_HEADER = $(INSTALL_DATA)
100transform = $(program_transform_name)
101NORMAL_INSTALL = :
102PRE_INSTALL = :
103POST_INSTALL = :
104NORMAL_UNINSTALL = :
105PRE_UNINSTALL = :
106POST_UNINSTALL = :
107build_triplet = @build@
108host_triplet = @host@
109target_triplet = @target@
110subdir = .
111ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
112am__aclocal_m4_deps = $(top_srcdir)/../config/codeset.m4 \
113 $(top_srcdir)/../config/depstand.m4 \
114 $(top_srcdir)/../config/gettext-sister.m4 \
862776f2
AA
115 $(top_srcdir)/../config/gettext.m4 \
116 $(top_srcdir)/../config/iconv.m4 \
117 $(top_srcdir)/../config/intlmacosx.m4 \
01027315
TT
118 $(top_srcdir)/../config/largefile.m4 \
119 $(top_srcdir)/../config/lead-dot.m4 \
05ea2a05
TT
120 $(top_srcdir)/../config/lib-ld.m4 \
121 $(top_srcdir)/../config/lib-link.m4 \
122 $(top_srcdir)/../config/lib-prefix.m4 \
862776f2 123 $(top_srcdir)/../config/nls.m4 \
01027315 124 $(top_srcdir)/../config/override.m4 \
862776f2
AA
125 $(top_srcdir)/../config/plugins.m4 \
126 $(top_srcdir)/../config/po.m4 \
127 $(top_srcdir)/../config/progtest.m4 $(top_srcdir)/acinclude.m4 \
05ea2a05
TT
128 $(top_srcdir)/../bfd/bfd.m4 $(top_srcdir)/common.m4 \
129 $(top_srcdir)/../config/ax_pthread.m4 \
01027315 130 $(top_srcdir)/../gdb/ax_cxx_compile_stdcxx.m4 \
3f258212
MF
131 $(top_srcdir)/../gdbsupport/libiberty.m4 \
132 $(top_srcdir)/selftest.m4 $(top_srcdir)/ptrace.m4 \
133 $(top_srcdir)/compiler-type.m4 $(top_srcdir)/warning.m4 \
134 $(top_srcdir)/configure.ac
01027315
TT
135am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
136 $(ACLOCAL_M4)
137DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
138 $(am__configure_deps)
139am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
140 configure.lineno config.status.lineno
141mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
3684d331 142CONFIG_HEADER = config.h
01027315
TT
143CONFIG_CLEAN_FILES =
144CONFIG_CLEAN_VPATH_FILES =
145LIBRARIES = $(noinst_LIBRARIES)
146AR = ar
147ARFLAGS = cru
148AM_V_AR = $(am__v_AR_@AM_V@)
149am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
150am__v_AR_0 = @echo " AR " $@;
151am__v_AR_1 =
152libgdbsupport_a_AR = $(AR) $(ARFLAGS)
153libgdbsupport_a_LIBADD =
ea3e7446
JB
154@HAVE_PIPE_OR_PIPE2_TRUE@am__objects_1 = event-pipe.$(OBJEXT)
155@SELFTEST_TRUE@am__objects_2 = selftest.$(OBJEXT)
01027315 156am_libgdbsupport_a_OBJECTS = agent.$(OBJEXT) btrace-common.$(OBJEXT) \
147699fd 157 cleanups.$(OBJEXT) common-debug.$(OBJEXT) \
01027315
TT
158 common-exceptions.$(OBJEXT) common-inferior.$(OBJEXT) \
159 common-regcache.$(OBJEXT) common-utils.$(OBJEXT) \
400b5eca
TT
160 environ.$(OBJEXT) errors.$(OBJEXT) event-loop.$(OBJEXT) \
161 fileio.$(OBJEXT) filestuff.$(OBJEXT) format.$(OBJEXT) \
0589ca4e 162 gdb-dlfcn.$(OBJEXT) gdb-hashtab.$(OBJEXT) \
d322d6d6
TT
163 gdb_obstack.$(OBJEXT) gdb_regex.$(OBJEXT) \
164 gdb_tilde_expand.$(OBJEXT) gdb_wait.$(OBJEXT) \
165 gdb_vecs.$(OBJEXT) job-control.$(OBJEXT) netstuff.$(OBJEXT) \
166 new-op.$(OBJEXT) pathstuff.$(OBJEXT) print-utils.$(OBJEXT) \
167 ptid.$(OBJEXT) rsp-low.$(OBJEXT) run-time-clock.$(OBJEXT) \
168 safe-strerror.$(OBJEXT) scoped_mmap.$(OBJEXT) search.$(OBJEXT) \
169 signals.$(OBJEXT) signals-state-save-restore.$(OBJEXT) \
542e23ff
TT
170 task-group.$(OBJEXT) tdesc.$(OBJEXT) thread-pool.$(OBJEXT) \
171 xml-utils.$(OBJEXT) $(am__objects_1) $(am__objects_2)
01027315
TT
172libgdbsupport_a_OBJECTS = $(am_libgdbsupport_a_OBJECTS)
173AM_V_P = $(am__v_P_@AM_V@)
174am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
175am__v_P_0 = false
176am__v_P_1 = :
177AM_V_GEN = $(am__v_GEN_@AM_V@)
178am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
179am__v_GEN_0 = @echo " GEN " $@;
180am__v_GEN_1 =
181AM_V_at = $(am__v_at_@AM_V@)
182am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
183am__v_at_0 = @
184am__v_at_1 =
185DEFAULT_INCLUDES = -I.@am__isrc@
186depcomp = $(SHELL) $(top_srcdir)/../depcomp
187am__depfiles_maybe = depfiles
188am__mv = mv -f
06b3c5bd
SM
189CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
190 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
191AM_V_CXX = $(am__v_CXX_@AM_V@)
192am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
193am__v_CXX_0 = @echo " CXX " $@;
194am__v_CXX_1 =
195CXXLD = $(CXX)
196CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
197 -o $@
198AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
199am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
200am__v_CXXLD_0 = @echo " CXXLD " $@;
201am__v_CXXLD_1 =
01027315 202SOURCES = $(libgdbsupport_a_SOURCES)
862776f2
AA
203RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
204 ctags-recursive dvi-recursive html-recursive info-recursive \
205 install-data-recursive install-dvi-recursive \
206 install-exec-recursive install-html-recursive \
207 install-info-recursive install-pdf-recursive \
208 install-ps-recursive install-recursive installcheck-recursive \
209 installdirs-recursive pdf-recursive ps-recursive \
210 tags-recursive uninstall-recursive
01027315
TT
211am__can_run_installinfo = \
212 case $$AM_UPDATE_INFO_DIR in \
213 n|no|NO) false;; \
214 *) (install-info --version) >/dev/null 2>&1;; \
215 esac
862776f2
AA
216RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
217 distclean-recursive maintainer-clean-recursive
218am__recursive_targets = \
219 $(RECURSIVE_TARGETS) \
220 $(RECURSIVE_CLEAN_TARGETS) \
221 $(am__extra_recursive_targets)
222AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
223 cscope
01027315
TT
224am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
225 $(LISP)config.in
226# Read a list of newline-separated strings from the standard input,
227# and print each of them once, without duplicates. Input order is
228# *not* preserved.
229am__uniquify_input = $(AWK) '\
230 BEGIN { nonempty = 0; } \
231 { items[$$0] = 1; nonempty = 1; } \
232 END { if (nonempty) { for (i in items) print i; }; } \
233'
234# Make sure the list of sources is unique. This is necessary because,
235# e.g., the same source file might be shared among _SOURCES variables
236# for different programs/libraries.
237am__define_uniq_tagged_files = \
238 list='$(am__tagged_files)'; \
239 unique=`for i in $$list; do \
240 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
241 done | $(am__uniquify_input)`
242ETAGS = etags
243CTAGS = ctags
244CSCOPE = cscope
862776f2 245DIST_SUBDIRS = $(SUBDIRS)
01027315
TT
246ACLOCAL = @ACLOCAL@
247ALLOCA = @ALLOCA@
248AMTAR = @AMTAR@
249AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
250AUTOCONF = @AUTOCONF@
251AUTOHEADER = @AUTOHEADER@
252AUTOMAKE = @AUTOMAKE@
253AWK = @AWK@
254CATALOGS = @CATALOGS@
255CATOBJEXT = @CATOBJEXT@
256CC = @CC@
257CCDEPMODE = @CCDEPMODE@
258CFLAGS = @CFLAGS@
39eedb20 259CONFIG_STATUS_DEPENDENCIES = @CONFIG_STATUS_DEPENDENCIES@
01027315
TT
260CPP = @CPP@
261CPPFLAGS = @CPPFLAGS@
262CXX = @CXX@
263CXXDEPMODE = @CXXDEPMODE@
264CXXFLAGS = @CXXFLAGS@
265CXX_DIALECT = @CXX_DIALECT@
266CYGPATH_W = @CYGPATH_W@
267DATADIRNAME = @DATADIRNAME@
268DEFS = @DEFS@
269DEPDIR = @DEPDIR@
270ECHO_C = @ECHO_C@
271ECHO_N = @ECHO_N@
272ECHO_T = @ECHO_T@
273EGREP = @EGREP@
274EXEEXT = @EXEEXT@
275GENCAT = @GENCAT@
276GMSGFMT = @GMSGFMT@
277GREP = @GREP@
f74dc267 278HAVE_CXX17 = @HAVE_CXX17@
05ea2a05 279HAVE_LIBIPT = @HAVE_LIBIPT@
8b35ed1f 280HAVE_LIBXXHASH = @HAVE_LIBXXHASH@
01027315
TT
281INCINTL = @INCINTL@
282INSTALL = @INSTALL@
283INSTALL_DATA = @INSTALL_DATA@
284INSTALL_PROGRAM = @INSTALL_PROGRAM@
285INSTALL_SCRIPT = @INSTALL_SCRIPT@
286INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
287INSTOBJEXT = @INSTOBJEXT@
862776f2
AA
288INTLLIBS = @INTLLIBS@
289INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
c8693053 290LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
01027315 291LDFLAGS = @LDFLAGS@
862776f2 292LIBICONV = @LIBICONV@
01027315
TT
293LIBINTL = @LIBINTL@
294LIBINTL_DEP = @LIBINTL_DEP@
05ea2a05 295LIBIPT = @LIBIPT@
01027315
TT
296LIBOBJS = @LIBOBJS@
297LIBS = @LIBS@
8b35ed1f 298LIBXXHASH = @LIBXXHASH@
862776f2
AA
299LTLIBICONV = @LTLIBICONV@
300LTLIBINTL = @LTLIBINTL@
05ea2a05 301LTLIBIPT = @LTLIBIPT@
01027315 302LTLIBOBJS = @LTLIBOBJS@
8b35ed1f 303LTLIBXXHASH = @LTLIBXXHASH@
01027315
TT
304MAINT = @MAINT@
305MAKEINFO = @MAKEINFO@
306MKDIR_P = @MKDIR_P@
862776f2
AA
307MKINSTALLDIRS = @MKINSTALLDIRS@
308MSGFMT = @MSGFMT@
309MSGMERGE = @MSGMERGE@
01027315
TT
310OBJEXT = @OBJEXT@
311PACKAGE = @PACKAGE@
312PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
313PACKAGE_NAME = @PACKAGE_NAME@
314PACKAGE_STRING = @PACKAGE_STRING@
315PACKAGE_TARNAME = @PACKAGE_TARNAME@
316PACKAGE_URL = @PACKAGE_URL@
317PACKAGE_VERSION = @PACKAGE_VERSION@
318PATH_SEPARATOR = @PATH_SEPARATOR@
319POSUB = @POSUB@
320PTHREAD_CC = @PTHREAD_CC@
321PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
322PTHREAD_LIBS = @PTHREAD_LIBS@
323RANLIB = @RANLIB@
324SED = @SED@
325SET_MAKE = @SET_MAKE@
326SHELL = @SHELL@
327STRIP = @STRIP@
328USE_NLS = @USE_NLS@
329VERSION = @VERSION@
629c2962
SM
330WARN_CFLAGS = @WARN_CFLAGS@
331WERROR_CFLAGS = @WERROR_CFLAGS@
01027315
TT
332XGETTEXT = @XGETTEXT@
333abs_builddir = @abs_builddir@
334abs_srcdir = @abs_srcdir@
335abs_top_builddir = @abs_top_builddir@
336abs_top_srcdir = @abs_top_srcdir@
337ac_ct_CC = @ac_ct_CC@
338ac_ct_CXX = @ac_ct_CXX@
339am__include = @am__include@
340am__leading_dot = @am__leading_dot@
341am__quote = @am__quote@
342am__tar = @am__tar@
343am__untar = @am__untar@
344ax_pthread_config = @ax_pthread_config@
345bindir = @bindir@
346build = @build@
347build_alias = @build_alias@
348build_cpu = @build_cpu@
349build_os = @build_os@
350build_vendor = @build_vendor@
351builddir = @builddir@
352datadir = @datadir@
353datarootdir = @datarootdir@
354docdir = @docdir@
355dvidir = @dvidir@
356exec_prefix = @exec_prefix@
357host = @host@
358host_alias = @host_alias@
359host_cpu = @host_cpu@
360host_os = @host_os@
361host_vendor = @host_vendor@
362htmldir = @htmldir@
363includedir = @includedir@
364infodir = @infodir@
365install_sh = @install_sh@
366libdir = @libdir@
367libexecdir = @libexecdir@
368localedir = @localedir@
369localstatedir = @localstatedir@
370mandir = @mandir@
371mkdir_p = @mkdir_p@
372oldincludedir = @oldincludedir@
373pdfdir = @pdfdir@
374prefix = @prefix@
375program_transform_name = @program_transform_name@
376psdir = @psdir@
377sbindir = @sbindir@
378sharedstatedir = @sharedstatedir@
379srcdir = @srcdir@
380sysconfdir = @sysconfdir@
381target = @target@
382target_alias = @target_alias@
383target_cpu = @target_cpu@
384target_os = @target_os@
385target_vendor = @target_vendor@
386top_build_prefix = @top_build_prefix@
387top_builddir = @top_builddir@
388top_srcdir = @top_srcdir@
389AUTOMAKE_OPTIONS = no-dist foreign
390ACLOCAL_AMFLAGS = -I . -I ../config
862776f2
AA
391
392# Suppress 'configure.ac: error: AM_GNU_GETTEXT used but SUBDIRS not defined'
393# from Automake, as gdbsupport uses AM_GNU_GETTEXT through
394# ZW_GNU_GETTEXT_SISTER_DIR, but doesn't have any translations (currently).
395SUBDIRS =
01027315
TT
396AM_CPPFLAGS = -I$(srcdir)/../include -I$(srcdir)/../gdb \
397 -I../gnulib/import -I$(srcdir)/../gnulib/import \
c8693053
RO
398 -I.. -I$(srcdir)/.. $(INCINTL) -I../bfd -I$(srcdir)/../bfd \
399 @LARGEFILE_CPPFLAGS@
01027315 400
89725b0d 401AM_CXXFLAGS = $(WARN_CFLAGS) $(WERROR_CFLAGS)
01027315 402noinst_LIBRARIES = libgdbsupport.a
06b3c5bd 403@SELFTEST_TRUE@selftest = selftest.cc
ea3e7446 404@HAVE_PIPE_OR_PIPE2_TRUE@eventpipe = event-pipe.cc
01027315 405libgdbsupport_a_SOURCES = \
06b3c5bd
SM
406 agent.cc \
407 btrace-common.cc \
06b3c5bd
SM
408 cleanups.cc \
409 common-debug.cc \
410 common-exceptions.cc \
411 common-inferior.cc \
412 common-regcache.cc \
413 common-utils.cc \
414 environ.cc \
415 errors.cc \
400b5eca 416 event-loop.cc \
06b3c5bd
SM
417 fileio.cc \
418 filestuff.cc \
419 format.cc \
420 gdb-dlfcn.cc \
0589ca4e 421 gdb-hashtab.cc \
bf31fd38 422 gdb_obstack.cc \
d322d6d6 423 gdb_regex.cc \
06b3c5bd
SM
424 gdb_tilde_expand.cc \
425 gdb_wait.cc \
426 gdb_vecs.cc \
427 job-control.cc \
428 netstuff.cc \
429 new-op.cc \
430 pathstuff.cc \
431 print-utils.cc \
432 ptid.cc \
433 rsp-low.cc \
434 run-time-clock.cc \
435 safe-strerror.cc \
436 scoped_mmap.cc \
4a72de73 437 search.cc \
06b3c5bd
SM
438 signals.cc \
439 signals-state-save-restore.cc \
542e23ff 440 task-group.cc \
06b3c5bd
SM
441 tdesc.cc \
442 thread-pool.cc \
443 xml-utils.cc \
ea3e7446 444 ${eventpipe} \
01027315
TT
445 $(selftest)
446
3684d331 447all: config.h
862776f2 448 $(MAKE) $(AM_MAKEFLAGS) all-recursive
01027315
TT
449
450.SUFFIXES:
06b3c5bd 451.SUFFIXES: .cc .o .obj
01027315
TT
452am--refresh: Makefile
453 @:
454$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
455 @for dep in $?; do \
456 case '$(am__configure_deps)' in \
457 *$$dep*) \
458 echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
459 $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
460 && exit 0; \
461 exit 1;; \
462 esac; \
463 done; \
464 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
465 $(am__cd) $(top_srcdir) && \
466 $(AUTOMAKE) --foreign Makefile
467Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
468 @case '$?' in \
469 *config.status*) \
470 echo ' $(SHELL) ./config.status'; \
471 $(SHELL) ./config.status;; \
472 *) \
473 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
474 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
475 esac;
476
477$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
478 $(SHELL) ./config.status --recheck
479
480$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
481 $(am__cd) $(srcdir) && $(AUTOCONF)
482$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
483 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
484$(am__aclocal_m4_deps):
485
3684d331 486config.h: stamp-h1
01027315
TT
487 @test -f $@ || rm -f stamp-h1
488 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
489
490stamp-h1: $(srcdir)/config.in $(top_builddir)/config.status
491 @rm -f stamp-h1
3684d331 492 cd $(top_builddir) && $(SHELL) ./config.status config.h
01027315
TT
493$(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
494 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
495 rm -f stamp-h1
496 touch $@
497
498distclean-hdr:
3684d331 499 -rm -f config.h stamp-h1
01027315
TT
500
501clean-noinstLIBRARIES:
502 -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
503
504libgdbsupport.a: $(libgdbsupport_a_OBJECTS) $(libgdbsupport_a_DEPENDENCIES) $(EXTRA_libgdbsupport_a_DEPENDENCIES)
505 $(AM_V_at)-rm -f libgdbsupport.a
506 $(AM_V_AR)$(libgdbsupport_a_AR) libgdbsupport.a $(libgdbsupport_a_OBJECTS) $(libgdbsupport_a_LIBADD)
507 $(AM_V_at)$(RANLIB) libgdbsupport.a
508
509mostlyclean-compile:
510 -rm -f *.$(OBJEXT)
511
512distclean-compile:
513 -rm -f *.tab.c
514
515@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/agent.Po@am__quote@
516@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/btrace-common.Po@am__quote@
01027315
TT
517@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cleanups.Po@am__quote@
518@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common-debug.Po@am__quote@
519@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common-exceptions.Po@am__quote@
520@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common-inferior.Po@am__quote@
521@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common-regcache.Po@am__quote@
522@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/common-utils.Po@am__quote@
523@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/environ.Po@am__quote@
524@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/errors.Po@am__quote@
400b5eca 525@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-loop.Po@am__quote@
ea3e7446 526@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event-pipe.Po@am__quote@
01027315
TT
527@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fileio.Po@am__quote@
528@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filestuff.Po@am__quote@
529@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/format.Po@am__quote@
530@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb-dlfcn.Po@am__quote@
0589ca4e 531@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb-hashtab.Po@am__quote@
bf31fd38 532@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb_obstack.Po@am__quote@
d322d6d6 533@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb_regex.Po@am__quote@
01027315
TT
534@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb_tilde_expand.Po@am__quote@
535@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb_vecs.Po@am__quote@
536@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gdb_wait.Po@am__quote@
537@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/job-control.Po@am__quote@
538@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netstuff.Po@am__quote@
539@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/new-op.Po@am__quote@
540@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pathstuff.Po@am__quote@
541@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print-utils.Po@am__quote@
542@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ptid.Po@am__quote@
543@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rsp-low.Po@am__quote@
544@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/run-time-clock.Po@am__quote@
545@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/safe-strerror.Po@am__quote@
546@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scoped_mmap.Po@am__quote@
4a72de73 547@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/search.Po@am__quote@
01027315
TT
548@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selftest.Po@am__quote@
549@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signals-state-save-restore.Po@am__quote@
550@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signals.Po@am__quote@
542e23ff 551@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/task-group.Po@am__quote@
01027315
TT
552@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tdesc.Po@am__quote@
553@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thread-pool.Po@am__quote@
554@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xml-utils.Po@am__quote@
555
06b3c5bd
SM
556.cc.o:
557@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
558@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
559@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
560@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
561@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
01027315 562
06b3c5bd
SM
563.cc.obj:
564@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
565@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
566@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
567@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
568@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
01027315 569
862776f2
AA
570# This directory's subdirectories are mostly independent; you can cd
571# into them and run 'make' without going through this Makefile.
572# To change the values of 'make' variables: instead of editing Makefiles,
573# (1) if the variable is set in 'config.status', edit 'config.status'
574# (which will cause the Makefiles to be regenerated when you run 'make');
575# (2) otherwise, pass the desired values on the 'make' command line.
576$(am__recursive_targets):
577 @fail=; \
578 if $(am__make_keepgoing); then \
579 failcom='fail=yes'; \
580 else \
581 failcom='exit 1'; \
582 fi; \
583 dot_seen=no; \
584 target=`echo $@ | sed s/-recursive//`; \
585 case "$@" in \
586 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
587 *) list='$(SUBDIRS)' ;; \
588 esac; \
589 for subdir in $$list; do \
590 echo "Making $$target in $$subdir"; \
591 if test "$$subdir" = "."; then \
592 dot_seen=yes; \
593 local_target="$$target-am"; \
594 else \
595 local_target="$$target"; \
596 fi; \
597 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
598 || eval $$failcom; \
599 done; \
600 if test "$$dot_seen" = "no"; then \
601 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
602 fi; test -z "$$fail"
603
01027315
TT
604ID: $(am__tagged_files)
605 $(am__define_uniq_tagged_files); mkid -fID $$unique
862776f2 606tags: tags-recursive
01027315
TT
607TAGS: tags
608
609tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
610 set x; \
611 here=`pwd`; \
862776f2
AA
612 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
613 include_option=--etags-include; \
614 empty_fix=.; \
615 else \
616 include_option=--include; \
617 empty_fix=; \
618 fi; \
619 list='$(SUBDIRS)'; for subdir in $$list; do \
620 if test "$$subdir" = .; then :; else \
621 test ! -f $$subdir/TAGS || \
622 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
623 fi; \
624 done; \
01027315
TT
625 $(am__define_uniq_tagged_files); \
626 shift; \
627 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
628 test -n "$$unique" || unique=$$empty_fix; \
629 if test $$# -gt 0; then \
630 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
631 "$$@" $$unique; \
632 else \
633 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
634 $$unique; \
635 fi; \
636 fi
862776f2 637ctags: ctags-recursive
01027315
TT
638
639CTAGS: ctags
640ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
641 $(am__define_uniq_tagged_files); \
642 test -z "$(CTAGS_ARGS)$$unique" \
643 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
644 $$unique
645
646GTAGS:
647 here=`$(am__cd) $(top_builddir) && pwd` \
648 && $(am__cd) $(top_srcdir) \
649 && gtags -i $(GTAGS_ARGS) "$$here"
650cscope: cscope.files
651 test ! -s cscope.files \
652 || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
653clean-cscope:
654 -rm -f cscope.files
655cscope.files: clean-cscope cscopelist
862776f2 656cscopelist: cscopelist-recursive
01027315
TT
657
658cscopelist-am: $(am__tagged_files)
659 list='$(am__tagged_files)'; \
660 case "$(srcdir)" in \
661 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
662 *) sdir=$(subdir)/$(srcdir) ;; \
663 esac; \
664 for i in $$list; do \
665 if test -f "$$i"; then \
666 echo "$(subdir)/$$i"; \
667 else \
668 echo "$$sdir/$$i"; \
669 fi; \
670 done >> $(top_builddir)/cscope.files
671
672distclean-tags:
673 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
674 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
675check-am: all-am
862776f2 676check: check-recursive
3684d331 677all-am: Makefile $(LIBRARIES) config.h
862776f2
AA
678installdirs: installdirs-recursive
679installdirs-am:
680install: install-recursive
681install-exec: install-exec-recursive
682install-data: install-data-recursive
683uninstall: uninstall-recursive
01027315
TT
684
685install-am: all-am
686 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
687
862776f2 688installcheck: installcheck-recursive
01027315
TT
689install-strip:
690 if test -z '$(STRIP)'; then \
691 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
692 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
693 install; \
694 else \
695 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
696 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
697 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
698 fi
699mostlyclean-generic:
700
701clean-generic:
702
703distclean-generic:
704 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
705 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
706
707maintainer-clean-generic:
708 @echo "This command is intended for maintainers to use"
709 @echo "it deletes files that may require special tools to rebuild."
862776f2 710clean: clean-recursive
01027315
TT
711
712clean-am: clean-generic clean-noinstLIBRARIES mostlyclean-am
713
862776f2 714distclean: distclean-recursive
01027315
TT
715 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
716 -rm -rf ./$(DEPDIR)
717 -rm -f Makefile
718distclean-am: clean-am distclean-compile distclean-generic \
719 distclean-hdr distclean-tags
720
862776f2 721dvi: dvi-recursive
01027315
TT
722
723dvi-am:
724
862776f2 725html: html-recursive
01027315
TT
726
727html-am:
728
862776f2 729info: info-recursive
01027315
TT
730
731info-am:
732
733install-data-am:
734
862776f2 735install-dvi: install-dvi-recursive
01027315
TT
736
737install-dvi-am:
738
739install-exec-am:
740
862776f2 741install-html: install-html-recursive
01027315
TT
742
743install-html-am:
744
862776f2 745install-info: install-info-recursive
01027315
TT
746
747install-info-am:
748
749install-man:
750
862776f2 751install-pdf: install-pdf-recursive
01027315
TT
752
753install-pdf-am:
754
862776f2 755install-ps: install-ps-recursive
01027315
TT
756
757install-ps-am:
758
759installcheck-am:
760
862776f2 761maintainer-clean: maintainer-clean-recursive
01027315
TT
762 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
763 -rm -rf $(top_srcdir)/autom4te.cache
764 -rm -rf ./$(DEPDIR)
765 -rm -f Makefile
766maintainer-clean-am: distclean-am maintainer-clean-generic
767
862776f2 768mostlyclean: mostlyclean-recursive
01027315
TT
769
770mostlyclean-am: mostlyclean-compile mostlyclean-generic
771
862776f2 772pdf: pdf-recursive
01027315
TT
773
774pdf-am:
775
862776f2 776ps: ps-recursive
01027315
TT
777
778ps-am:
779
780uninstall-am:
781
862776f2
AA
782.MAKE: $(am__recursive_targets) all install-am install-strip
783
784.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
785 am--refresh check check-am clean clean-cscope clean-generic \
786 clean-noinstLIBRARIES cscope cscopelist-am ctags ctags-am \
787 distclean distclean-compile distclean-generic distclean-hdr \
788 distclean-tags dvi dvi-am html html-am info info-am install \
789 install-am install-data install-data-am install-dvi \
790 install-dvi-am install-exec install-exec-am install-html \
791 install-html-am install-info install-info-am install-man \
792 install-pdf install-pdf-am install-ps install-ps-am \
793 install-strip installcheck installcheck-am installdirs \
794 installdirs-am maintainer-clean maintainer-clean-generic \
795 mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
796 ps ps-am tags tags-am uninstall uninstall-am
01027315
TT
797
798.PRECIOUS: Makefile
799
800
89725b0d
SM
801override CXX += $(CXX_DIALECT)
802
0454ef42
TT
803# Double-check that no defines are missing from our configury.
804check-defines:
805 cd $(srcdir) && emacs --script check-defines.el
806
01027315
TT
807# Tell versions [3.59,3.63) of GNU make to not export all variables.
808# Otherwise a system limit (for SysV at least) may be exceeded.
809.NOEXPORT: