Makefile.in 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  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. # Plugin for offload execution on Intel MIC devices.
  13. #
  14. # Copyright (C) 2014-2017 Free Software Foundation, Inc.
  15. #
  16. # Contributed by Ilya Verbin <ilya.verbin@intel.com> and
  17. # Andrey Turetskiy <andrey.turetskiy@intel.com>.
  18. #
  19. # This file is part of the GNU Offloading and Multi Processing Library
  20. # (libgomp).
  21. #
  22. # Libgomp is free software; you can redistribute it and/or modify it
  23. # under the terms of the GNU General Public License as published by
  24. # the Free Software Foundation; either version 3, or (at your option)
  25. # any later version.
  26. #
  27. # Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
  28. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  29. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  30. # more details.
  31. #
  32. # Under Section 7 of GPL version 3, you are granted additional
  33. # permissions described in the GCC Runtime Library Exception, version
  34. # 3.1, as published by the Free Software Foundation.
  35. #
  36. # You should have received a copy of the GNU General Public License and
  37. # a copy of the GCC Runtime Library Exception along with this program;
  38. # see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  39. # <http://www.gnu.org/licenses/>.
  40. VPATH = @srcdir@
  41. am__is_gnu_make = { \
  42. if test -z '$(MAKELEVEL)'; then \
  43. false; \
  44. elif test -n '$(MAKE_HOST)'; then \
  45. true; \
  46. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  47. true; \
  48. else \
  49. false; \
  50. fi; \
  51. }
  52. am__make_running_with_option = \
  53. case $${target_option-} in \
  54. ?) ;; \
  55. *) echo "am__make_running_with_option: internal error: invalid" \
  56. "target option '$${target_option-}' specified" >&2; \
  57. exit 1;; \
  58. esac; \
  59. has_opt=no; \
  60. sane_makeflags=$$MAKEFLAGS; \
  61. if $(am__is_gnu_make); then \
  62. sane_makeflags=$$MFLAGS; \
  63. else \
  64. case $$MAKEFLAGS in \
  65. *\\[\ \ ]*) \
  66. bs=\\; \
  67. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  68. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  69. esac; \
  70. fi; \
  71. skip_next=no; \
  72. strip_trailopt () \
  73. { \
  74. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  75. }; \
  76. for flg in $$sane_makeflags; do \
  77. test $$skip_next = yes && { skip_next=no; continue; }; \
  78. case $$flg in \
  79. *=*|--*) continue;; \
  80. -*I) strip_trailopt 'I'; skip_next=yes;; \
  81. -*I?*) strip_trailopt 'I';; \
  82. -*O) strip_trailopt 'O'; skip_next=yes;; \
  83. -*O?*) strip_trailopt 'O';; \
  84. -*l) strip_trailopt 'l'; skip_next=yes;; \
  85. -*l?*) strip_trailopt 'l';; \
  86. -[dEDm]) skip_next=yes;; \
  87. -[JT]) skip_next=yes;; \
  88. esac; \
  89. case $$flg in \
  90. *$$target_option*) has_opt=yes; break;; \
  91. esac; \
  92. done; \
  93. test $$has_opt = yes
  94. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  95. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  96. pkgdatadir = $(datadir)/@PACKAGE@
  97. pkgincludedir = $(includedir)/@PACKAGE@
  98. pkglibdir = $(libdir)/@PACKAGE@
  99. pkglibexecdir = $(libexecdir)/@PACKAGE@
  100. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  101. install_sh_DATA = $(install_sh) -c -m 644
  102. install_sh_PROGRAM = $(install_sh) -c
  103. install_sh_SCRIPT = $(install_sh) -c
  104. INSTALL_HEADER = $(INSTALL_DATA)
  105. transform = $(program_transform_name)
  106. NORMAL_INSTALL = :
  107. PRE_INSTALL = :
  108. POST_INSTALL = :
  109. NORMAL_UNINSTALL = :
  110. PRE_UNINSTALL = :
  111. POST_UNINSTALL = :
  112. build_triplet = @build@
  113. host_triplet = @host@
  114. target_triplet = @target@
  115. subdir = .
  116. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  117. am__aclocal_m4_deps = $(top_srcdir)/../../config/acx.m4 \
  118. $(top_srcdir)/../../config/depstand.m4 \
  119. $(top_srcdir)/../../config/toolexeclibdir.m4 \
  120. $(top_srcdir)/../../config/lead-dot.m4 \
  121. $(top_srcdir)/../../config/multi.m4 \
  122. $(top_srcdir)/../../config/override.m4 \
  123. $(top_srcdir)/../../libtool.m4 \
  124. $(top_srcdir)/../../ltoptions.m4 \
  125. $(top_srcdir)/../../ltsugar.m4 \
  126. $(top_srcdir)/../../ltversion.m4 \
  127. $(top_srcdir)/../../lt~obsolete.m4 $(top_srcdir)/configure.ac
  128. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  129. $(ACLOCAL_M4)
  130. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  131. $(am__configure_deps) $(am__plugin_include_HEADERS_DIST)
  132. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  133. configure.lineno config.status.lineno
  134. mkinstalldirs = $(SHELL) $(top_srcdir)/../../mkinstalldirs
  135. CONFIG_CLEAN_FILES =
  136. CONFIG_CLEAN_VPATH_FILES =
  137. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  138. am__vpath_adj = case $$p in \
  139. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  140. *) f=$$p;; \
  141. esac;
  142. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  143. am__install_max = 40
  144. am__nobase_strip_setup = \
  145. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  146. am__nobase_strip = \
  147. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  148. am__nobase_list = $(am__nobase_strip_setup); \
  149. for p in $$list; do echo "$$p $$p"; done | \
  150. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  151. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  152. if (++n[$$2] == $(am__install_max)) \
  153. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  154. END { for (dir in files) print dir, files[dir] }'
  155. am__base_list = \
  156. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  157. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  158. am__uninstall_files_from_dir = { \
  159. test -z "$$files" \
  160. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  161. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  162. $(am__cd) "$$dir" && rm -f $$files; }; \
  163. }
  164. am__installdirs = "$(DESTDIR)$(toolexeclibdir)" \
  165. "$(DESTDIR)$(plugin_includedir)"
  166. LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
  167. libgomp_plugin_intelmic_la_LIBADD =
  168. @PLUGIN_HOST_TRUE@am_libgomp_plugin_intelmic_la_OBJECTS = libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo
  169. libgomp_plugin_intelmic_la_OBJECTS = \
  170. $(am_libgomp_plugin_intelmic_la_OBJECTS)
  171. AM_V_lt = $(am__v_lt_@AM_V@)
  172. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  173. am__v_lt_0 = --silent
  174. am__v_lt_1 =
  175. libgomp_plugin_intelmic_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
  176. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
  177. $(AM_CXXFLAGS) $(CXXFLAGS) \
  178. $(libgomp_plugin_intelmic_la_LDFLAGS) $(LDFLAGS) -o $@
  179. @PLUGIN_HOST_TRUE@am_libgomp_plugin_intelmic_la_rpath = -rpath \
  180. @PLUGIN_HOST_TRUE@ $(toolexeclibdir)
  181. AM_V_P = $(am__v_P_@AM_V@)
  182. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  183. am__v_P_0 = false
  184. am__v_P_1 = :
  185. AM_V_GEN = $(am__v_GEN_@AM_V@)
  186. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  187. am__v_GEN_0 = @echo " GEN " $@;
  188. am__v_GEN_1 =
  189. AM_V_at = $(am__v_at_@AM_V@)
  190. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  191. am__v_at_0 = @
  192. am__v_at_1 =
  193. DEFAULT_INCLUDES = -I.@am__isrc@
  194. depcomp = $(SHELL) $(top_srcdir)/../../depcomp
  195. am__depfiles_maybe = depfiles
  196. am__mv = mv -f
  197. CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  198. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  199. LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
  200. $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
  201. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  202. $(AM_CXXFLAGS) $(CXXFLAGS)
  203. AM_V_CXX = $(am__v_CXX_@AM_V@)
  204. am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
  205. am__v_CXX_0 = @echo " CXX " $@;
  206. am__v_CXX_1 =
  207. CXXLD = $(CXX)
  208. CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
  209. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  210. $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  211. AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
  212. am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
  213. am__v_CXXLD_0 = @echo " CXXLD " $@;
  214. am__v_CXXLD_1 =
  215. SOURCES = $(libgomp_plugin_intelmic_la_SOURCES)
  216. am__can_run_installinfo = \
  217. case $$AM_UPDATE_INFO_DIR in \
  218. n|no|NO) false;; \
  219. *) (install-info --version) >/dev/null 2>&1;; \
  220. esac
  221. am__plugin_include_HEADERS_DIST = main_target_image.h
  222. HEADERS = $(plugin_include_HEADERS)
  223. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
  224. # Read a list of newline-separated strings from the standard input,
  225. # and print each of them once, without duplicates. Input order is
  226. # *not* preserved.
  227. am__uniquify_input = $(AWK) '\
  228. BEGIN { nonempty = 0; } \
  229. { items[$$0] = 1; nonempty = 1; } \
  230. END { if (nonempty) { for (i in items) print i; }; } \
  231. '
  232. # Make sure the list of sources is unique. This is necessary because,
  233. # e.g., the same source file might be shared among _SOURCES variables
  234. # for different programs/libraries.
  235. am__define_uniq_tagged_files = \
  236. list='$(am__tagged_files)'; \
  237. unique=`for i in $$list; do \
  238. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  239. done | $(am__uniquify_input)`
  240. ETAGS = etags
  241. CTAGS = ctags
  242. CSCOPE = cscope
  243. AM_RECURSIVE_TARGETS = cscope
  244. ACLOCAL = @ACLOCAL@
  245. AMTAR = @AMTAR@
  246. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  247. AR = @AR@
  248. AUTOCONF = @AUTOCONF@
  249. AUTOHEADER = @AUTOHEADER@
  250. AUTOMAKE = @AUTOMAKE@
  251. AWK = @AWK@
  252. CC = @CC@
  253. CCDEPMODE = @CCDEPMODE@
  254. CFLAGS = @CFLAGS@
  255. CPP = @CPP@
  256. CPPFLAGS = @CPPFLAGS@
  257. CXX = @CXX@
  258. CXXCPP = @CXXCPP@
  259. CXXDEPMODE = @CXXDEPMODE@
  260. CXXFLAGS = @CXXFLAGS@
  261. CYGPATH_W = @CYGPATH_W@
  262. DEFS = @DEFS@
  263. DEPDIR = @DEPDIR@
  264. DSYMUTIL = @DSYMUTIL@
  265. DUMPBIN = @DUMPBIN@
  266. ECHO_C = @ECHO_C@
  267. ECHO_N = @ECHO_N@
  268. ECHO_T = @ECHO_T@
  269. EGREP = @EGREP@
  270. EXEEXT = @EXEEXT@
  271. FGREP = @FGREP@
  272. GREP = @GREP@
  273. INSTALL = @INSTALL@
  274. INSTALL_DATA = @INSTALL_DATA@
  275. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  276. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  277. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  278. LD = @LD@
  279. LDFLAGS = @LDFLAGS@
  280. LIBOBJS = @LIBOBJS@
  281. LIBS = @LIBS@
  282. LIBTOOL = @LIBTOOL@
  283. LIPO = @LIPO@
  284. LN_S = @LN_S@
  285. LTLIBOBJS = @LTLIBOBJS@
  286. MAINT = @MAINT@
  287. MAKEINFO = @MAKEINFO@
  288. MKDIR_P = @MKDIR_P@
  289. NM = @NM@
  290. NMEDIT = @NMEDIT@
  291. OBJDUMP = @OBJDUMP@
  292. OBJEXT = @OBJEXT@
  293. OTOOL = @OTOOL@
  294. OTOOL64 = @OTOOL64@
  295. PACKAGE = @PACKAGE@
  296. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  297. PACKAGE_NAME = @PACKAGE_NAME@
  298. PACKAGE_STRING = @PACKAGE_STRING@
  299. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  300. PACKAGE_URL = @PACKAGE_URL@
  301. PACKAGE_VERSION = @PACKAGE_VERSION@
  302. PATH_SEPARATOR = @PATH_SEPARATOR@
  303. RANLIB = @RANLIB@
  304. SED = @SED@
  305. SET_MAKE = @SET_MAKE@
  306. SHELL = @SHELL@
  307. STRIP = @STRIP@
  308. VERSION = @VERSION@
  309. abs_builddir = @abs_builddir@
  310. abs_srcdir = @abs_srcdir@
  311. abs_top_builddir = @abs_top_builddir@
  312. abs_top_srcdir = @abs_top_srcdir@
  313. ac_ct_CC = @ac_ct_CC@
  314. ac_ct_CXX = @ac_ct_CXX@
  315. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  316. accel_search_dir = @accel_search_dir@
  317. accel_target = @accel_target@
  318. am__include = @am__include@
  319. am__leading_dot = @am__leading_dot@
  320. am__quote = @am__quote@
  321. am__tar = @am__tar@
  322. am__untar = @am__untar@
  323. bindir = @bindir@
  324. build = @build@
  325. build_alias = @build_alias@
  326. build_cpu = @build_cpu@
  327. build_os = @build_os@
  328. build_vendor = @build_vendor@
  329. builddir = @builddir@
  330. datadir = @datadir@
  331. datarootdir = @datarootdir@
  332. docdir = @docdir@
  333. dvidir = @dvidir@
  334. exec_prefix = @exec_prefix@
  335. get_gcc_base_ver = @get_gcc_base_ver@
  336. host = @host@
  337. host_alias = @host_alias@
  338. host_cpu = @host_cpu@
  339. host_os = @host_os@
  340. host_vendor = @host_vendor@
  341. htmldir = @htmldir@
  342. includedir = @includedir@
  343. infodir = @infodir@
  344. install_sh = @install_sh@
  345. libdir = @libdir@
  346. libexecdir = @libexecdir@
  347. localedir = @localedir@
  348. localstatedir = @localstatedir@
  349. mandir = @mandir@
  350. mkdir_p = @mkdir_p@
  351. multi_basedir = @multi_basedir@
  352. oldincludedir = @oldincludedir@
  353. pdfdir = @pdfdir@
  354. prefix = @prefix@
  355. program_transform_name = @program_transform_name@
  356. psdir = @psdir@
  357. sbindir = @sbindir@
  358. sharedstatedir = @sharedstatedir@
  359. srcdir = @srcdir@
  360. sysconfdir = @sysconfdir@
  361. target = @target@
  362. target_alias = @target_alias@
  363. target_cpu = @target_cpu@
  364. target_os = @target_os@
  365. target_vendor = @target_vendor@
  366. toolexecdir = @toolexecdir@
  367. toolexeclibdir = @toolexeclibdir@
  368. top_build_prefix = @top_build_prefix@
  369. top_builddir = @top_builddir@
  370. top_srcdir = @top_srcdir@
  371. AUTOMAKE_OPTIONS = foreign
  372. ACLOCAL_AMFLAGS = -I ../.. -I ../../config
  373. # Directories
  374. build_dir = $(top_builddir)
  375. source_dir = $(top_srcdir)
  376. coi_inc_dir = $(top_srcdir)/../include/coi
  377. include_src_dir = $(top_srcdir)/../../include
  378. libgomp_src_dir = $(top_srcdir)/../../libgomp
  379. libgomp_dir = $(build_dir)/../../libgomp
  380. liboffload_src_dir = $(top_srcdir)/../runtime
  381. liboffload_dir = $(top_builddir)/..
  382. # May be used by toolexeclibdir.
  383. gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../../gcc/BASE-VER)
  384. libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)$(MULTISUBDIR)/include
  385. # Search for main_target_image.h in these directories
  386. target_prefix_dir = $(libdir)/gcc/$(accel_target)/$(gcc_version)$(MULTISUBDIR)
  387. target_build_dir = $(accel_search_dir)/$(accel_target)$(MULTISUBDIR)/liboffloadmic/plugin
  388. target_install_dir = $(accel_search_dir)/lib/gcc/$(accel_target)/$(gcc_version)$(MULTISUBDIR)
  389. @PLUGIN_HOST_TRUE@toolexeclib_LTLIBRARIES = libgomp-plugin-intelmic.la
  390. @PLUGIN_HOST_TRUE@libgomp_plugin_intelmic_la_SOURCES = libgomp-plugin-intelmic.cpp
  391. @PLUGIN_HOST_TRUE@libgomp_plugin_intelmic_la_CPPFLAGS = $(CPPFLAGS) -DLINUX -DCOI_LIBRARY_VERSION=2 -DOFFLOAD_DEBUG=1 -DSEP_SUPPORT -DTIMING_SUPPORT -DHOST_LIBRARY=1 -I$(coi_inc_dir) -I$(liboffload_src_dir) -I$(libgomp_src_dir) -I$(libgomp_dir) -I$(include_src_dir) -I$(target_prefix_dir)/include -I$(target_build_dir) -I$(target_install_dir)/include
  392. @PLUGIN_HOST_TRUE@libgomp_plugin_intelmic_la_LDFLAGS = -L$(liboffload_dir)/.libs -loffloadmic_host -version-info 1:0:0
  393. @PLUGIN_HOST_FALSE@plugin_includedir = $(libsubincludedir)
  394. @PLUGIN_HOST_FALSE@plugin_include_HEADERS = main_target_image.h
  395. @PLUGIN_HOST_FALSE@AM_CPPFLAGS = $(CPPFLAGS) -DLINUX -DCOI_LIBRARY_VERSION=2 -DOFFLOAD_DEBUG=1 -DSEP_SUPPORT -DTIMING_SUPPORT -DHOST_LIBRARY=0 -I$(coi_inc_dir) -I$(liboffload_src_dir) -I$(libgomp_dir)
  396. @PLUGIN_HOST_FALSE@AM_CXXFLAGS = $(CXXFLAGS)
  397. @PLUGIN_HOST_FALSE@AM_LDFLAGS = -L$(liboffload_dir)/.libs -L$(libgomp_dir)/.libs -loffloadmic_target -lcoi_device -lgomp -rdynamic
  398. # Work around what appears to be a GNU make bug handling MAKEFLAGS
  399. # values defined in terms of make variables, as is the case for CC and
  400. # friends when we are called from the top level Makefile.
  401. AM_MAKEFLAGS = \
  402. "AR_FLAGS=$(AR_FLAGS)" \
  403. "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
  404. "CFLAGS=$(CFLAGS)" \
  405. "CXXFLAGS=$(CXXFLAGS)" \
  406. "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
  407. "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
  408. "INSTALL=$(INSTALL)" \
  409. "INSTALL_DATA=$(INSTALL_DATA)" \
  410. "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
  411. "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
  412. "JC1FLAGS=$(JC1FLAGS)" \
  413. "LDFLAGS=$(LDFLAGS)" \
  414. "LIBCFLAGS=$(LIBCFLAGS)" \
  415. "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
  416. "MAKE=$(MAKE)" \
  417. "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
  418. "PICFLAG=$(PICFLAG)" \
  419. "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
  420. "SHELL=$(SHELL)" \
  421. "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
  422. "exec_prefix=$(exec_prefix)" \
  423. "infodir=$(infodir)" \
  424. "libdir=$(libdir)" \
  425. "prefix=$(prefix)" \
  426. "includedir=$(includedir)" \
  427. "AR=$(AR)" \
  428. "AS=$(AS)" \
  429. "LD=$(LD)" \
  430. "LIBCFLAGS=$(LIBCFLAGS)" \
  431. "NM=$(NM)" \
  432. "PICFLAG=$(PICFLAG)" \
  433. "RANLIB=$(RANLIB)" \
  434. "DESTDIR=$(DESTDIR)"
  435. MAKEOVERRIDES =
  436. MULTISRCTOP =
  437. MULTIBUILDTOP =
  438. MULTIDIRS =
  439. MULTISUBDIR =
  440. MULTIDO = true
  441. MULTICLEAN = true
  442. all: all-am
  443. .SUFFIXES:
  444. .SUFFIXES: .cpp .lo .o .obj
  445. am--refresh: Makefile
  446. @:
  447. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/../../multilib.am $(am__configure_deps)
  448. @for dep in $?; do \
  449. case '$(am__configure_deps)' in \
  450. *$$dep*) \
  451. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  452. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  453. && exit 0; \
  454. exit 1;; \
  455. esac; \
  456. done; \
  457. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  458. $(am__cd) $(top_srcdir) && \
  459. $(AUTOMAKE) --foreign Makefile
  460. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  461. @case '$?' in \
  462. *config.status*) \
  463. echo ' $(SHELL) ./config.status'; \
  464. $(SHELL) ./config.status;; \
  465. *) \
  466. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  467. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  468. esac;
  469. $(top_srcdir)/../../multilib.am $(am__empty):
  470. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  471. $(SHELL) ./config.status --recheck
  472. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  473. $(am__cd) $(srcdir) && $(AUTOCONF)
  474. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  475. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  476. $(am__aclocal_m4_deps):
  477. install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
  478. @$(NORMAL_INSTALL)
  479. @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
  480. list2=; for p in $$list; do \
  481. if test -f $$p; then \
  482. list2="$$list2 $$p"; \
  483. else :; fi; \
  484. done; \
  485. test -z "$$list2" || { \
  486. echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
  487. $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
  488. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
  489. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
  490. }
  491. uninstall-toolexeclibLTLIBRARIES:
  492. @$(NORMAL_UNINSTALL)
  493. @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
  494. for p in $$list; do \
  495. $(am__strip_dir) \
  496. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
  497. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
  498. done
  499. clean-toolexeclibLTLIBRARIES:
  500. -test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
  501. @list='$(toolexeclib_LTLIBRARIES)'; \
  502. locs=`for p in $$list; do echo $$p; done | \
  503. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  504. sort -u`; \
  505. test -z "$$locs" || { \
  506. echo rm -f $${locs}; \
  507. rm -f $${locs}; \
  508. }
  509. libgomp-plugin-intelmic.la: $(libgomp_plugin_intelmic_la_OBJECTS) $(libgomp_plugin_intelmic_la_DEPENDENCIES) $(EXTRA_libgomp_plugin_intelmic_la_DEPENDENCIES)
  510. $(AM_V_CXXLD)$(libgomp_plugin_intelmic_la_LINK) $(am_libgomp_plugin_intelmic_la_rpath) $(libgomp_plugin_intelmic_la_OBJECTS) $(libgomp_plugin_intelmic_la_LIBADD) $(LIBS)
  511. mostlyclean-compile:
  512. -rm -f *.$(OBJEXT)
  513. distclean-compile:
  514. -rm -f *.tab.c
  515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.Plo@am__quote@
  516. .cpp.o:
  517. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  518. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  519. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  520. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  521. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
  522. .cpp.obj:
  523. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  524. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  525. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  526. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  527. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  528. .cpp.lo:
  529. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  530. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  531. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  532. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  533. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
  534. libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo: libgomp-plugin-intelmic.cpp
  535. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgomp_plugin_intelmic_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo -MD -MP -MF $(DEPDIR)/libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.Tpo -c -o libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo `test -f 'libgomp-plugin-intelmic.cpp' || echo '$(srcdir)/'`libgomp-plugin-intelmic.cpp
  536. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.Tpo $(DEPDIR)/libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.Plo
  537. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='libgomp-plugin-intelmic.cpp' object='libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo' libtool=yes @AMDEPBACKSLASH@
  538. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  539. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgomp_plugin_intelmic_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o libgomp_plugin_intelmic_la-libgomp-plugin-intelmic.lo `test -f 'libgomp-plugin-intelmic.cpp' || echo '$(srcdir)/'`libgomp-plugin-intelmic.cpp
  540. mostlyclean-libtool:
  541. -rm -f *.lo
  542. clean-libtool:
  543. -rm -rf .libs _libs
  544. distclean-libtool:
  545. -rm -f libtool config.lt
  546. install-plugin_includeHEADERS: $(plugin_include_HEADERS)
  547. @$(NORMAL_INSTALL)
  548. @list='$(plugin_include_HEADERS)'; test -n "$(plugin_includedir)" || list=; \
  549. if test -n "$$list"; then \
  550. echo " $(MKDIR_P) '$(DESTDIR)$(plugin_includedir)'"; \
  551. $(MKDIR_P) "$(DESTDIR)$(plugin_includedir)" || exit 1; \
  552. fi; \
  553. for p in $$list; do \
  554. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  555. echo "$$d$$p"; \
  556. done | $(am__base_list) | \
  557. while read files; do \
  558. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(plugin_includedir)'"; \
  559. $(INSTALL_HEADER) $$files "$(DESTDIR)$(plugin_includedir)" || exit $$?; \
  560. done
  561. uninstall-plugin_includeHEADERS:
  562. @$(NORMAL_UNINSTALL)
  563. @list='$(plugin_include_HEADERS)'; test -n "$(plugin_includedir)" || list=; \
  564. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  565. dir='$(DESTDIR)$(plugin_includedir)'; $(am__uninstall_files_from_dir)
  566. ID: $(am__tagged_files)
  567. $(am__define_uniq_tagged_files); mkid -fID $$unique
  568. tags: tags-am
  569. TAGS: tags
  570. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  571. set x; \
  572. here=`pwd`; \
  573. $(am__define_uniq_tagged_files); \
  574. shift; \
  575. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  576. test -n "$$unique" || unique=$$empty_fix; \
  577. if test $$# -gt 0; then \
  578. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  579. "$$@" $$unique; \
  580. else \
  581. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  582. $$unique; \
  583. fi; \
  584. fi
  585. ctags: ctags-am
  586. CTAGS: ctags
  587. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  588. $(am__define_uniq_tagged_files); \
  589. test -z "$(CTAGS_ARGS)$$unique" \
  590. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  591. $$unique
  592. GTAGS:
  593. here=`$(am__cd) $(top_builddir) && pwd` \
  594. && $(am__cd) $(top_srcdir) \
  595. && gtags -i $(GTAGS_ARGS) "$$here"
  596. cscope: cscope.files
  597. test ! -s cscope.files \
  598. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  599. clean-cscope:
  600. -rm -f cscope.files
  601. cscope.files: clean-cscope cscopelist
  602. cscopelist: cscopelist-am
  603. cscopelist-am: $(am__tagged_files)
  604. list='$(am__tagged_files)'; \
  605. case "$(srcdir)" in \
  606. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  607. *) sdir=$(subdir)/$(srcdir) ;; \
  608. esac; \
  609. for i in $$list; do \
  610. if test -f "$$i"; then \
  611. echo "$(subdir)/$$i"; \
  612. else \
  613. echo "$$sdir/$$i"; \
  614. fi; \
  615. done >> $(top_builddir)/cscope.files
  616. distclean-tags:
  617. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  618. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  619. check-am: all-am
  620. check: check-am
  621. all-am: Makefile $(LTLIBRARIES) $(HEADERS) all-local
  622. installdirs:
  623. for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(plugin_includedir)"; do \
  624. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  625. done
  626. install: install-am
  627. install-exec: install-exec-am
  628. install-data: install-data-am
  629. uninstall: uninstall-am
  630. install-am: all-am
  631. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  632. installcheck: installcheck-am
  633. install-strip:
  634. if test -z '$(STRIP)'; then \
  635. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  636. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  637. install; \
  638. else \
  639. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  640. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  641. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  642. fi
  643. mostlyclean-generic:
  644. clean-generic:
  645. distclean-generic:
  646. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  647. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  648. maintainer-clean-generic:
  649. @echo "This command is intended for maintainers to use"
  650. @echo "it deletes files that may require special tools to rebuild."
  651. clean: clean-am
  652. clean-am: clean-generic clean-libtool clean-local \
  653. clean-toolexeclibLTLIBRARIES mostlyclean-am
  654. distclean: distclean-am
  655. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  656. -rm -rf ./$(DEPDIR)
  657. -rm -f Makefile
  658. distclean-am: clean-am distclean-compile distclean-generic \
  659. distclean-libtool distclean-local distclean-tags
  660. dvi: dvi-am
  661. dvi-am:
  662. html: html-am
  663. html-am:
  664. info: info-am
  665. info-am:
  666. install-data-am: install-plugin_includeHEADERS
  667. install-dvi: install-dvi-am
  668. install-dvi-am:
  669. install-exec-am: install-exec-local install-toolexeclibLTLIBRARIES
  670. install-html: install-html-am
  671. install-html-am:
  672. install-info: install-info-am
  673. install-info-am:
  674. install-man:
  675. install-pdf: install-pdf-am
  676. install-pdf-am:
  677. install-ps: install-ps-am
  678. install-ps-am:
  679. installcheck-am:
  680. maintainer-clean: maintainer-clean-am
  681. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  682. -rm -rf $(top_srcdir)/autom4te.cache
  683. -rm -rf ./$(DEPDIR)
  684. -rm -f Makefile
  685. maintainer-clean-am: distclean-am maintainer-clean-generic \
  686. maintainer-clean-local
  687. mostlyclean: mostlyclean-am
  688. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  689. mostlyclean-libtool mostlyclean-local
  690. pdf: pdf-am
  691. pdf-am:
  692. ps: ps-am
  693. ps-am:
  694. uninstall-am: uninstall-plugin_includeHEADERS \
  695. uninstall-toolexeclibLTLIBRARIES
  696. .MAKE: install-am install-strip
  697. .PHONY: CTAGS GTAGS TAGS all all-am all-local am--refresh check \
  698. check-am clean clean-cscope clean-generic clean-libtool \
  699. clean-local clean-toolexeclibLTLIBRARIES cscope cscopelist-am \
  700. ctags ctags-am distclean distclean-compile distclean-generic \
  701. distclean-libtool distclean-local distclean-tags dvi dvi-am \
  702. html html-am info info-am install install-am install-data \
  703. install-data-am install-dvi install-dvi-am install-exec \
  704. install-exec-am install-exec-local install-html \
  705. install-html-am install-info install-info-am install-man \
  706. install-pdf install-pdf-am install-plugin_includeHEADERS \
  707. install-ps install-ps-am install-strip \
  708. install-toolexeclibLTLIBRARIES installcheck installcheck-am \
  709. installdirs maintainer-clean maintainer-clean-generic \
  710. maintainer-clean-local mostlyclean mostlyclean-compile \
  711. mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
  712. pdf-am ps ps-am tags tags-am uninstall uninstall-am \
  713. uninstall-plugin_includeHEADERS \
  714. uninstall-toolexeclibLTLIBRARIES
  715. .PRECIOUS: Makefile
  716. main_target_image.h: offload_target_main
  717. @echo -n "const int image_size = " > $@
  718. @stat -c '%s' $< >> $@
  719. @echo ";" >> $@
  720. @echo "struct MainTargetImage {" >> $@
  721. @echo " int64_t size;" >> $@
  722. @echo " char name[sizeof \"offload_target_main\"];" >> $@
  723. @echo " uint8_t data[image_size];" >> $@
  724. @echo "};" >> $@
  725. @echo "extern \"C\" const MainTargetImage main_target_image = {" >> $@
  726. @echo " image_size, \"offload_target_main\"," >> $@
  727. @cat $< | xxd -include >> $@
  728. @echo "};" >> $@
  729. offload_target_main: $(liboffload_dir)/ofldbegin.o offload_target_main.o $(liboffload_dir)/ofldend.o
  730. $(CXX) $(AM_LDFLAGS) $^ -o $@
  731. offload_target_main.o: offload_target_main.cpp
  732. $(CXX) $(AM_CXXFLAGS) $(AM_CPPFLAGS) -c $< -o $@
  733. # GNU Make needs to see an explicit $(MAKE) variable in the command it
  734. # runs to enable its job server during parallel builds. Hence the
  735. # comments below.
  736. all-multi:
  737. $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
  738. install-multi:
  739. $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
  740. mostlyclean-multi:
  741. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
  742. clean-multi:
  743. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
  744. distclean-multi:
  745. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
  746. maintainer-clean-multi:
  747. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
  748. .MAKE .PHONY: all-multi clean-multi distclean-multi install-am \
  749. install-multi maintainer-clean-multi mostlyclean-multi
  750. install-exec-local: install-multi
  751. all-local: all-multi
  752. mostlyclean-local: mostlyclean-multi
  753. clean-local: clean-multi
  754. distclean-local: distclean-multi
  755. maintainer-clean-local: maintainer-clean-multi
  756. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  757. # Otherwise a system limit (for SysV at least) may be exceeded.
  758. .NOEXPORT: