Makefile.in 25 KB

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