Makefile.in 23 KB

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