Makefile.in 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  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. # Makefile for the toplevel directory of the D Standard library.
  13. # Copyright (C) 2006-2022 Free Software Foundation, Inc.
  14. #
  15. # GCC 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, or (at your option)
  18. # any later version.
  19. #
  20. # GCC 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 GCC; see the file COPYING3. If not see
  27. # <http://www.gnu.org/licenses/>.
  28. VPATH = @srcdir@
  29. am__is_gnu_make = { \
  30. if test -z '$(MAKELEVEL)'; then \
  31. false; \
  32. elif test -n '$(MAKE_HOST)'; then \
  33. true; \
  34. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  35. true; \
  36. else \
  37. false; \
  38. fi; \
  39. }
  40. am__make_running_with_option = \
  41. case $${target_option-} in \
  42. ?) ;; \
  43. *) echo "am__make_running_with_option: internal error: invalid" \
  44. "target option '$${target_option-}' specified" >&2; \
  45. exit 1;; \
  46. esac; \
  47. has_opt=no; \
  48. sane_makeflags=$$MAKEFLAGS; \
  49. if $(am__is_gnu_make); then \
  50. sane_makeflags=$$MFLAGS; \
  51. else \
  52. case $$MAKEFLAGS in \
  53. *\\[\ \ ]*) \
  54. bs=\\; \
  55. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  56. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  57. esac; \
  58. fi; \
  59. skip_next=no; \
  60. strip_trailopt () \
  61. { \
  62. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  63. }; \
  64. for flg in $$sane_makeflags; do \
  65. test $$skip_next = yes && { skip_next=no; continue; }; \
  66. case $$flg in \
  67. *=*|--*) continue;; \
  68. -*I) strip_trailopt 'I'; skip_next=yes;; \
  69. -*I?*) strip_trailopt 'I';; \
  70. -*O) strip_trailopt 'O'; skip_next=yes;; \
  71. -*O?*) strip_trailopt 'O';; \
  72. -*l) strip_trailopt 'l'; skip_next=yes;; \
  73. -*l?*) strip_trailopt 'l';; \
  74. -[dEDm]) skip_next=yes;; \
  75. -[JT]) skip_next=yes;; \
  76. esac; \
  77. case $$flg in \
  78. *$$target_option*) has_opt=yes; break;; \
  79. esac; \
  80. done; \
  81. test $$has_opt = yes
  82. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  83. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  84. pkgdatadir = $(datadir)/@PACKAGE@
  85. pkgincludedir = $(includedir)/@PACKAGE@
  86. pkglibdir = $(libdir)/@PACKAGE@
  87. pkglibexecdir = $(libexecdir)/@PACKAGE@
  88. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  89. install_sh_DATA = $(install_sh) -c -m 644
  90. install_sh_PROGRAM = $(install_sh) -c
  91. install_sh_SCRIPT = $(install_sh) -c
  92. INSTALL_HEADER = $(INSTALL_DATA)
  93. transform = $(program_transform_name)
  94. NORMAL_INSTALL = :
  95. PRE_INSTALL = :
  96. POST_INSTALL = :
  97. NORMAL_UNINSTALL = :
  98. PRE_UNINSTALL = :
  99. POST_UNINSTALL = :
  100. build_triplet = @build@
  101. host_triplet = @host@
  102. target_triplet = @target@
  103. subdir = .
  104. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  105. am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
  106. $(top_srcdir)/../config/cet.m4 \
  107. $(top_srcdir)/../config/enable.m4 \
  108. $(top_srcdir)/../config/lead-dot.m4 \
  109. $(top_srcdir)/../config/multi.m4 \
  110. $(top_srcdir)/../config/override.m4 \
  111. $(top_srcdir)/../config/toolexeclibdir.m4 \
  112. $(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
  113. $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
  114. $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
  115. $(top_srcdir)/m4/gcc_support.m4 $(top_srcdir)/m4/autoconf.m4 \
  116. $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/gdc.m4 \
  117. $(top_srcdir)/m4/druntime.m4 $(top_srcdir)/m4/druntime/cpu.m4 \
  118. $(top_srcdir)/m4/druntime/os.m4 \
  119. $(top_srcdir)/m4/druntime/libraries.m4 \
  120. $(top_srcdir)/configure.ac
  121. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  122. $(ACLOCAL_M4)
  123. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  124. $(am__configure_deps)
  125. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  126. configure.lineno config.status.lineno
  127. mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
  128. CONFIG_HEADER = config.h
  129. CONFIG_CLEAN_FILES = libdruntime/gcc/config.d \
  130. libdruntime/gcc/libbacktrace.d
  131. CONFIG_CLEAN_VPATH_FILES =
  132. AM_V_P = $(am__v_P_@AM_V@)
  133. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  134. am__v_P_0 = false
  135. am__v_P_1 = :
  136. AM_V_GEN = $(am__v_GEN_@AM_V@)
  137. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  138. am__v_GEN_0 = @echo " GEN " $@;
  139. am__v_GEN_1 =
  140. AM_V_at = $(am__v_at_@AM_V@)
  141. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  142. am__v_at_0 = @
  143. am__v_at_1 =
  144. depcomp =
  145. am__depfiles_maybe =
  146. SOURCES =
  147. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  148. ctags-recursive dvi-recursive html-recursive info-recursive \
  149. install-data-recursive install-dvi-recursive \
  150. install-exec-recursive install-html-recursive \
  151. install-info-recursive install-pdf-recursive \
  152. install-ps-recursive install-recursive installcheck-recursive \
  153. installdirs-recursive pdf-recursive ps-recursive \
  154. tags-recursive uninstall-recursive
  155. am__can_run_installinfo = \
  156. case $$AM_UPDATE_INFO_DIR in \
  157. n|no|NO) false;; \
  158. *) (install-info --version) >/dev/null 2>&1;; \
  159. esac
  160. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  161. distclean-recursive maintainer-clean-recursive
  162. am__recursive_targets = \
  163. $(RECURSIVE_TARGETS) \
  164. $(RECURSIVE_CLEAN_TARGETS) \
  165. $(am__extra_recursive_targets)
  166. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  167. cscope
  168. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  169. $(LISP)config.h.in
  170. # Read a list of newline-separated strings from the standard input,
  171. # and print each of them once, without duplicates. Input order is
  172. # *not* preserved.
  173. am__uniquify_input = $(AWK) '\
  174. BEGIN { nonempty = 0; } \
  175. { items[$$0] = 1; nonempty = 1; } \
  176. END { if (nonempty) { for (i in items) print i; }; } \
  177. '
  178. # Make sure the list of sources is unique. This is necessary because,
  179. # e.g., the same source file might be shared among _SOURCES variables
  180. # for different programs/libraries.
  181. am__define_uniq_tagged_files = \
  182. list='$(am__tagged_files)'; \
  183. unique=`for i in $$list; do \
  184. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  185. done | $(am__uniquify_input)`
  186. ETAGS = etags
  187. CTAGS = ctags
  188. CSCOPE = cscope
  189. DIST_SUBDIRS = libdruntime src testsuite
  190. ACLOCAL = @ACLOCAL@
  191. AMTAR = @AMTAR@
  192. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  193. AR = @AR@
  194. AUTOCONF = @AUTOCONF@
  195. AUTOHEADER = @AUTOHEADER@
  196. AUTOMAKE = @AUTOMAKE@
  197. AWK = @AWK@
  198. BACKTRACE_SUPPORTED = @BACKTRACE_SUPPORTED@
  199. BACKTRACE_SUPPORTS_THREADS = @BACKTRACE_SUPPORTS_THREADS@
  200. BACKTRACE_USES_MALLOC = @BACKTRACE_USES_MALLOC@
  201. CC = @CC@
  202. CCAS = @CCAS@
  203. CCASFLAGS = @CCASFLAGS@
  204. CC_FOR_BUILD = @CC_FOR_BUILD@
  205. CET_DFLAGS = @CET_DFLAGS@
  206. CET_FLAGS = @CET_FLAGS@
  207. CFLAGS = @CFLAGS@
  208. CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
  209. CHECKING_DFLAGS = @CHECKING_DFLAGS@
  210. CPP = @CPP@
  211. CPPFLAGS = @CPPFLAGS@
  212. CYGPATH_W = @CYGPATH_W@
  213. DCFG_ARM_EABI_UNWINDER = @DCFG_ARM_EABI_UNWINDER@
  214. DCFG_DLPI_TLS_MODID = @DCFG_DLPI_TLS_MODID@
  215. DCFG_ENABLE_CET = @DCFG_ENABLE_CET@
  216. DCFG_HAVE_64BIT_ATOMICS = @DCFG_HAVE_64BIT_ATOMICS@
  217. DCFG_HAVE_ATOMIC_BUILTINS = @DCFG_HAVE_ATOMIC_BUILTINS@
  218. DCFG_HAVE_LIBATOMIC = @DCFG_HAVE_LIBATOMIC@
  219. DCFG_HAVE_QSORT_R = @DCFG_HAVE_QSORT_R@
  220. DCFG_MINFO_BRACKETING = @DCFG_MINFO_BRACKETING@
  221. DCFG_THREAD_MODEL = @DCFG_THREAD_MODEL@
  222. DEFS = @DEFS@
  223. DSYMUTIL = @DSYMUTIL@
  224. DUMPBIN = @DUMPBIN@
  225. ECHO_C = @ECHO_C@
  226. ECHO_N = @ECHO_N@
  227. ECHO_T = @ECHO_T@
  228. EGREP = @EGREP@
  229. EXEEXT = @EXEEXT@
  230. FGREP = @FGREP@
  231. GDC = @GDC@
  232. GDCFLAGS = @GDCFLAGS@
  233. GREP = @GREP@
  234. INSTALL = @INSTALL@
  235. INSTALL_DATA = @INSTALL_DATA@
  236. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  237. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  238. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  239. LD = @LD@
  240. LDFLAGS = @LDFLAGS@
  241. LIBATOMIC = @LIBATOMIC@
  242. LIBBACKTRACE = @LIBBACKTRACE@
  243. LIBOBJS = @LIBOBJS@
  244. LIBS = @LIBS@
  245. LIBTOOL = @LIBTOOL@
  246. LIBZ = @LIBZ@
  247. LIPO = @LIPO@
  248. LN_S = @LN_S@
  249. LTLIBOBJS = @LTLIBOBJS@
  250. MAINT = @MAINT@
  251. MAKEINFO = @MAKEINFO@
  252. MKDIR_P = @MKDIR_P@
  253. NM = @NM@
  254. NMEDIT = @NMEDIT@
  255. OBJDUMP = @OBJDUMP@
  256. OBJEXT = @OBJEXT@
  257. OS_LINK_SPEC = @OS_LINK_SPEC@
  258. OTOOL = @OTOOL@
  259. OTOOL64 = @OTOOL64@
  260. PACKAGE = @PACKAGE@
  261. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  262. PACKAGE_NAME = @PACKAGE_NAME@
  263. PACKAGE_STRING = @PACKAGE_STRING@
  264. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  265. PACKAGE_URL = @PACKAGE_URL@
  266. PACKAGE_VERSION = @PACKAGE_VERSION@
  267. PATH_SEPARATOR = @PATH_SEPARATOR@
  268. RANLIB = @RANLIB@
  269. SECTION_FLAGS = @SECTION_FLAGS@
  270. SED = @SED@
  271. SET_MAKE = @SET_MAKE@
  272. SHELL = @SHELL@
  273. SPEC_PHOBOS_DEPS = @SPEC_PHOBOS_DEPS@
  274. STRIP = @STRIP@
  275. VERSION = @VERSION@
  276. WARN_DFLAGS = @WARN_DFLAGS@
  277. abs_builddir = @abs_builddir@
  278. abs_srcdir = @abs_srcdir@
  279. abs_top_builddir = @abs_top_builddir@
  280. abs_top_srcdir = @abs_top_srcdir@
  281. ac_ct_CC = @ac_ct_CC@
  282. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  283. am__leading_dot = @am__leading_dot@
  284. am__tar = @am__tar@
  285. am__untar = @am__untar@
  286. bindir = @bindir@
  287. build = @build@
  288. build_alias = @build_alias@
  289. build_cpu = @build_cpu@
  290. build_os = @build_os@
  291. build_vendor = @build_vendor@
  292. builddir = @builddir@
  293. datadir = @datadir@
  294. datarootdir = @datarootdir@
  295. docdir = @docdir@
  296. dvidir = @dvidir@
  297. enable_shared = @enable_shared@
  298. enable_static = @enable_static@
  299. exec_prefix = @exec_prefix@
  300. gcc_version = @gcc_version@
  301. gdc_include_dir = @gdc_include_dir@
  302. get_gcc_base_ver = @get_gcc_base_ver@
  303. host = @host@
  304. host_alias = @host_alias@
  305. host_cpu = @host_cpu@
  306. host_os = @host_os@
  307. host_vendor = @host_vendor@
  308. htmldir = @htmldir@
  309. includedir = @includedir@
  310. infodir = @infodir@
  311. install_sh = @install_sh@
  312. libdir = @libdir@
  313. libexecdir = @libexecdir@
  314. libphobos_builddir = @libphobos_builddir@
  315. libphobos_srcdir = @libphobos_srcdir@
  316. libphobos_toolexecdir = @libphobos_toolexecdir@
  317. libphobos_toolexeclibdir = @libphobos_toolexeclibdir@
  318. libtool_VERSION = @libtool_VERSION@
  319. localedir = @localedir@
  320. localstatedir = @localstatedir@
  321. mandir = @mandir@
  322. mkdir_p = @mkdir_p@
  323. multi_basedir = @multi_basedir@
  324. oldincludedir = @oldincludedir@
  325. pdfdir = @pdfdir@
  326. phobos_compiler_pic_flag = @phobos_compiler_pic_flag@
  327. phobos_compiler_shared_flag = @phobos_compiler_shared_flag@
  328. phobos_lt_pic_flag = @phobos_lt_pic_flag@
  329. prefix = @prefix@
  330. program_transform_name = @program_transform_name@
  331. psdir = @psdir@
  332. sbindir = @sbindir@
  333. sharedstatedir = @sharedstatedir@
  334. srcdir = @srcdir@
  335. sysconfdir = @sysconfdir@
  336. target = @target@
  337. target_alias = @target_alias@
  338. target_cpu = @target_cpu@
  339. target_os = @target_os@
  340. target_vendor = @target_vendor@
  341. top_build_prefix = @top_build_prefix@
  342. top_builddir = @top_builddir@
  343. top_srcdir = @top_srcdir@
  344. @ENABLE_LIBPHOBOS_FALSE@SUBDIRS =
  345. @ENABLE_LIBPHOBOS_TRUE@SUBDIRS = libdruntime src testsuite
  346. ACLOCAL_AMFLAGS = -I . -I .. -I ../config
  347. # Multilib support.
  348. MAKEOVERRIDES =
  349. # Work around what appears to be a GNU make bug handling MAKEFLAGS
  350. # values defined in terms of make variables, as is the case for CC and
  351. # friends when we are called from the top level Makefile.
  352. AM_MAKEFLAGS = \
  353. "AR_FLAGS=$(AR_FLAGS)" \
  354. "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
  355. "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
  356. "CCASFLAGS=$(CCASFLAGS)" \
  357. "CFLAGS=$(CFLAGS)" \
  358. "CXXFLAGS=$(CXXFLAGS)" \
  359. "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
  360. "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
  361. "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
  362. "GDC=$(GDC)" \
  363. "GDCFLAGS=$(GDCFLAGS)" \
  364. "INSTALL=$(INSTALL)" \
  365. "INSTALL_DATA=$(INSTALL_DATA)" \
  366. "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
  367. "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
  368. "LDFLAGS=$(LDFLAGS)" \
  369. "LIBCFLAGS=$(LIBCFLAGS)" \
  370. "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
  371. "MAKE=$(MAKE)" \
  372. "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
  373. "PICFLAG=$(PICFLAG)" \
  374. "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
  375. "SHELL=$(SHELL)" \
  376. "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
  377. "exec_prefix=$(exec_prefix)" \
  378. "infodir=$(infodir)" \
  379. "libdir=$(libdir)" \
  380. "includedir=$(includedir)" \
  381. "prefix=$(prefix)" \
  382. "tooldir=$(tooldir)" \
  383. "gdc_include_dir=$(gdc_include_dir)" \
  384. "AR=$(AR)" \
  385. "AS=$(AS)" \
  386. "LD=$(LD)" \
  387. "RANLIB=$(RANLIB)" \
  388. "NM=$(NM)" \
  389. "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
  390. "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
  391. "DESTDIR=$(DESTDIR)" \
  392. "WERROR=$(WERROR)"
  393. # Subdir rules rely on $(FLAGS_TO_PASS)
  394. FLAGS_TO_PASS = $(AM_MAKEFLAGS)
  395. MULTISRCTOP =
  396. MULTIBUILDTOP =
  397. MULTIDIRS =
  398. MULTISUBDIR =
  399. MULTIDO = true
  400. MULTICLEAN = true
  401. all: config.h
  402. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  403. .SUFFIXES:
  404. am--refresh: Makefile
  405. @:
  406. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/../multilib.am $(am__configure_deps)
  407. @for dep in $?; do \
  408. case '$(am__configure_deps)' in \
  409. *$$dep*) \
  410. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps'; \
  411. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps \
  412. && exit 0; \
  413. exit 1;; \
  414. esac; \
  415. done; \
  416. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \
  417. $(am__cd) $(top_srcdir) && \
  418. $(AUTOMAKE) --foreign --ignore-deps Makefile
  419. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  420. @case '$?' in \
  421. *config.status*) \
  422. echo ' $(SHELL) ./config.status'; \
  423. $(SHELL) ./config.status;; \
  424. *) \
  425. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  426. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  427. esac;
  428. $(top_srcdir)/../multilib.am $(am__empty):
  429. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  430. $(SHELL) ./config.status --recheck
  431. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  432. $(am__cd) $(srcdir) && $(AUTOCONF)
  433. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  434. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  435. $(am__aclocal_m4_deps):
  436. config.h: stamp-h1
  437. @test -f $@ || rm -f stamp-h1
  438. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  439. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  440. @rm -f stamp-h1
  441. cd $(top_builddir) && $(SHELL) ./config.status config.h
  442. $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  443. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  444. rm -f stamp-h1
  445. touch $@
  446. distclean-hdr:
  447. -rm -f config.h stamp-h1
  448. libdruntime/gcc/config.d: $(top_builddir)/config.status $(top_srcdir)/libdruntime/gcc/config.d.in
  449. cd $(top_builddir) && $(SHELL) ./config.status $@
  450. libdruntime/gcc/libbacktrace.d: $(top_builddir)/config.status $(top_srcdir)/libdruntime/gcc/libbacktrace.d.in
  451. cd $(top_builddir) && $(SHELL) ./config.status $@
  452. mostlyclean-libtool:
  453. -rm -f *.lo
  454. clean-libtool:
  455. -rm -rf .libs _libs
  456. distclean-libtool:
  457. -rm -f libtool config.lt
  458. # This directory's subdirectories are mostly independent; you can cd
  459. # into them and run 'make' without going through this Makefile.
  460. # To change the values of 'make' variables: instead of editing Makefiles,
  461. # (1) if the variable is set in 'config.status', edit 'config.status'
  462. # (which will cause the Makefiles to be regenerated when you run 'make');
  463. # (2) otherwise, pass the desired values on the 'make' command line.
  464. $(am__recursive_targets):
  465. @fail=; \
  466. if $(am__make_keepgoing); then \
  467. failcom='fail=yes'; \
  468. else \
  469. failcom='exit 1'; \
  470. fi; \
  471. dot_seen=no; \
  472. target=`echo $@ | sed s/-recursive//`; \
  473. case "$@" in \
  474. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  475. *) list='$(SUBDIRS)' ;; \
  476. esac; \
  477. for subdir in $$list; do \
  478. echo "Making $$target in $$subdir"; \
  479. if test "$$subdir" = "."; then \
  480. dot_seen=yes; \
  481. local_target="$$target-am"; \
  482. else \
  483. local_target="$$target"; \
  484. fi; \
  485. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  486. || eval $$failcom; \
  487. done; \
  488. if test "$$dot_seen" = "no"; then \
  489. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  490. fi; test -z "$$fail"
  491. ID: $(am__tagged_files)
  492. $(am__define_uniq_tagged_files); mkid -fID $$unique
  493. tags: tags-recursive
  494. TAGS: tags
  495. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  496. set x; \
  497. here=`pwd`; \
  498. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  499. include_option=--etags-include; \
  500. empty_fix=.; \
  501. else \
  502. include_option=--include; \
  503. empty_fix=; \
  504. fi; \
  505. list='$(SUBDIRS)'; for subdir in $$list; do \
  506. if test "$$subdir" = .; then :; else \
  507. test ! -f $$subdir/TAGS || \
  508. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  509. fi; \
  510. done; \
  511. $(am__define_uniq_tagged_files); \
  512. shift; \
  513. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  514. test -n "$$unique" || unique=$$empty_fix; \
  515. if test $$# -gt 0; then \
  516. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  517. "$$@" $$unique; \
  518. else \
  519. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  520. $$unique; \
  521. fi; \
  522. fi
  523. ctags: ctags-recursive
  524. CTAGS: ctags
  525. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  526. $(am__define_uniq_tagged_files); \
  527. test -z "$(CTAGS_ARGS)$$unique" \
  528. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  529. $$unique
  530. GTAGS:
  531. here=`$(am__cd) $(top_builddir) && pwd` \
  532. && $(am__cd) $(top_srcdir) \
  533. && gtags -i $(GTAGS_ARGS) "$$here"
  534. cscope: cscope.files
  535. test ! -s cscope.files \
  536. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  537. clean-cscope:
  538. -rm -f cscope.files
  539. cscope.files: clean-cscope cscopelist
  540. cscopelist: cscopelist-recursive
  541. cscopelist-am: $(am__tagged_files)
  542. list='$(am__tagged_files)'; \
  543. case "$(srcdir)" in \
  544. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  545. *) sdir=$(subdir)/$(srcdir) ;; \
  546. esac; \
  547. for i in $$list; do \
  548. if test -f "$$i"; then \
  549. echo "$(subdir)/$$i"; \
  550. else \
  551. echo "$$sdir/$$i"; \
  552. fi; \
  553. done >> $(top_builddir)/cscope.files
  554. distclean-tags:
  555. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  556. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  557. check-am: all-am
  558. check: check-recursive
  559. all-am: Makefile config.h all-local
  560. installdirs: installdirs-recursive
  561. installdirs-am:
  562. install: install-recursive
  563. install-exec: install-exec-recursive
  564. install-data: install-data-recursive
  565. uninstall: uninstall-recursive
  566. install-am: all-am
  567. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  568. installcheck: installcheck-recursive
  569. install-strip:
  570. if test -z '$(STRIP)'; then \
  571. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  572. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  573. install; \
  574. else \
  575. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  576. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  577. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  578. fi
  579. mostlyclean-generic:
  580. clean-generic:
  581. distclean-generic:
  582. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  583. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  584. maintainer-clean-generic:
  585. @echo "This command is intended for maintainers to use"
  586. @echo "it deletes files that may require special tools to rebuild."
  587. clean: clean-recursive
  588. clean-am: clean-generic clean-libtool clean-local mostlyclean-am
  589. distclean: distclean-recursive
  590. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  591. -rm -f Makefile
  592. distclean-am: clean-am distclean-generic distclean-hdr \
  593. distclean-libtool distclean-local distclean-tags
  594. dvi: dvi-recursive
  595. dvi-am:
  596. html: html-recursive
  597. html-am:
  598. info: info-recursive
  599. info-am:
  600. install-data-am:
  601. install-dvi: install-dvi-recursive
  602. install-dvi-am:
  603. install-exec-am: install-exec-local
  604. install-html: install-html-recursive
  605. install-html-am:
  606. install-info: install-info-recursive
  607. install-info-am:
  608. install-man:
  609. install-pdf: install-pdf-recursive
  610. install-pdf-am:
  611. install-ps: install-ps-recursive
  612. install-ps-am:
  613. installcheck-am:
  614. maintainer-clean: maintainer-clean-recursive
  615. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  616. -rm -rf $(top_srcdir)/autom4te.cache
  617. -rm -f Makefile
  618. maintainer-clean-am: distclean-am maintainer-clean-generic \
  619. maintainer-clean-local
  620. mostlyclean: mostlyclean-recursive
  621. mostlyclean-am: mostlyclean-generic mostlyclean-libtool \
  622. mostlyclean-local
  623. pdf: pdf-recursive
  624. pdf-am:
  625. ps: ps-recursive
  626. ps-am:
  627. uninstall-am:
  628. .MAKE: $(am__recursive_targets) all install-am install-strip
  629. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
  630. am--refresh check check-am clean clean-cscope clean-generic \
  631. clean-libtool clean-local cscope cscopelist-am ctags ctags-am \
  632. distclean distclean-generic distclean-hdr distclean-libtool \
  633. distclean-local distclean-tags dvi dvi-am html html-am info \
  634. info-am install install-am install-data install-data-am \
  635. install-dvi install-dvi-am install-exec install-exec-am \
  636. install-exec-local install-html install-html-am install-info \
  637. install-info-am install-man install-pdf install-pdf-am \
  638. install-ps install-ps-am install-strip installcheck \
  639. installcheck-am installdirs installdirs-am maintainer-clean \
  640. maintainer-clean-generic maintainer-clean-local mostlyclean \
  641. mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
  642. pdf-am ps ps-am tags tags-am uninstall uninstall-am
  643. .PRECIOUS: Makefile
  644. # GNU Make needs to see an explicit $(MAKE) variable in the command it
  645. # runs to enable its job server during parallel builds. Hence the
  646. # comments below.
  647. all-multi:
  648. $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
  649. install-multi:
  650. $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
  651. mostlyclean-multi:
  652. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
  653. clean-multi:
  654. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
  655. distclean-multi:
  656. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
  657. maintainer-clean-multi:
  658. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
  659. .MAKE .PHONY: all-multi clean-multi distclean-multi install-am \
  660. install-multi maintainer-clean-multi mostlyclean-multi
  661. install-exec-local: install-multi
  662. all-local: all-multi
  663. mostlyclean-local: mostlyclean-multi
  664. clean-local: clean-multi
  665. distclean-local: distclean-multi
  666. maintainer-clean-local: maintainer-clean-multi
  667. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  668. # Otherwise a system limit (for SysV at least) may be exceeded.
  669. .NOEXPORT: