Makefile.in 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  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. @DARWIN_DYNAMIC_LOOKUP_TRUE@am__append_1 = -Wl,-undefined,dynamic_lookup
  88. subdir = .
  89. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  90. am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
  91. $(top_srcdir)/../config/cet.m4 \
  92. $(top_srcdir)/../config/depstand.m4 \
  93. $(top_srcdir)/../config/enable.m4 \
  94. $(top_srcdir)/../config/gcc-plugin.m4 \
  95. $(top_srcdir)/../config/lead-dot.m4 \
  96. $(top_srcdir)/../config/override.m4 \
  97. $(top_srcdir)/../config/warnings.m4 \
  98. $(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
  99. $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
  100. $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
  101. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  102. $(ACLOCAL_M4)
  103. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  104. $(am__configure_deps)
  105. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  106. configure.lineno config.status.lineno
  107. mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
  108. CONFIG_HEADER = cc1plugin-config.h
  109. CONFIG_CLEAN_FILES =
  110. CONFIG_CLEAN_VPATH_FILES =
  111. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  112. am__vpath_adj = case $$p in \
  113. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  114. *) f=$$p;; \
  115. esac;
  116. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  117. am__install_max = 40
  118. am__nobase_strip_setup = \
  119. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  120. am__nobase_strip = \
  121. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  122. am__nobase_list = $(am__nobase_strip_setup); \
  123. for p in $$list; do echo "$$p $$p"; done | \
  124. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  125. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  126. if (++n[$$2] == $(am__install_max)) \
  127. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  128. END { for (dir in files) print dir, files[dir] }'
  129. am__base_list = \
  130. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  131. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  132. am__uninstall_files_from_dir = { \
  133. test -z "$$files" \
  134. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  135. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  136. $(am__cd) "$$dir" && rm -f $$files; }; \
  137. }
  138. am__installdirs = "$(DESTDIR)$(cc1libdir)" "$(DESTDIR)$(plugindir)"
  139. LTLIBRARIES = $(cc1lib_LTLIBRARIES) $(plugin_LTLIBRARIES)
  140. am__objects_1 = callbacks.lo connection.lo marshall.lo
  141. am__objects_2 =
  142. am_libcc1_la_OBJECTS = findcomp.lo libcc1.lo libcp1.lo compiler.lo \
  143. names.lo $(am__objects_1) $(am__objects_2) $(am__objects_2)
  144. libcc1_la_OBJECTS = $(am_libcc1_la_OBJECTS)
  145. @ENABLE_PLUGIN_TRUE@am_libcc1_la_rpath = -rpath $(cc1libdir)
  146. am_libcc1plugin_la_OBJECTS = libcc1plugin.lo context.lo \
  147. $(am__objects_1) $(am__objects_2)
  148. libcc1plugin_la_OBJECTS = $(am_libcc1plugin_la_OBJECTS)
  149. @ENABLE_PLUGIN_TRUE@am_libcc1plugin_la_rpath = -rpath $(plugindir)
  150. am_libcp1plugin_la_OBJECTS = libcp1plugin.lo context.lo \
  151. $(am__objects_1) $(am__objects_2)
  152. libcp1plugin_la_OBJECTS = $(am_libcp1plugin_la_OBJECTS)
  153. @ENABLE_PLUGIN_TRUE@am_libcp1plugin_la_rpath = -rpath $(plugindir)
  154. AM_V_P = $(am__v_P_@AM_V@)
  155. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  156. am__v_P_0 = false
  157. am__v_P_1 = :
  158. AM_V_GEN = $(am__v_GEN_@AM_V@)
  159. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  160. am__v_GEN_0 = @echo " GEN " $@;
  161. am__v_GEN_1 =
  162. AM_V_at = $(am__v_at_@AM_V@)
  163. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  164. am__v_at_0 = @
  165. am__v_at_1 =
  166. DEFAULT_INCLUDES = -I.@am__isrc@
  167. depcomp = $(SHELL) $(top_srcdir)/../depcomp
  168. am__depfiles_maybe = depfiles
  169. am__mv = mv -f
  170. CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  171. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  172. AM_V_lt = $(am__v_lt_@AM_V@)
  173. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  174. am__v_lt_0 = --silent
  175. am__v_lt_1 =
  176. LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
  177. $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
  178. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  179. $(AM_CXXFLAGS) $(CXXFLAGS)
  180. AM_V_CXX = $(am__v_CXX_@AM_V@)
  181. am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
  182. am__v_CXX_0 = @echo " CXX " $@;
  183. am__v_CXX_1 =
  184. CXXLD = $(CXX)
  185. CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
  186. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  187. $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  188. AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
  189. am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
  190. am__v_CXXLD_0 = @echo " CXXLD " $@;
  191. am__v_CXXLD_1 =
  192. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  193. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  194. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  195. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  196. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  197. $(AM_CFLAGS) $(CFLAGS)
  198. AM_V_CC = $(am__v_CC_@AM_V@)
  199. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  200. am__v_CC_0 = @echo " CC " $@;
  201. am__v_CC_1 =
  202. CCLD = $(CC)
  203. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  204. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  205. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  206. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  207. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  208. am__v_CCLD_0 = @echo " CCLD " $@;
  209. am__v_CCLD_1 =
  210. SOURCES = $(libcc1_la_SOURCES) $(libcc1plugin_la_SOURCES) \
  211. $(libcp1plugin_la_SOURCES)
  212. am__can_run_installinfo = \
  213. case $$AM_UPDATE_INFO_DIR in \
  214. n|no|NO) false;; \
  215. *) (install-info --version) >/dev/null 2>&1;; \
  216. esac
  217. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  218. $(LISP)cc1plugin-config.h.in
  219. # Read a list of newline-separated strings from the standard input,
  220. # and print each of them once, without duplicates. Input order is
  221. # *not* preserved.
  222. am__uniquify_input = $(AWK) '\
  223. BEGIN { nonempty = 0; } \
  224. { items[$$0] = 1; nonempty = 1; } \
  225. END { if (nonempty) { for (i in items) print i; }; } \
  226. '
  227. # Make sure the list of sources is unique. This is necessary because,
  228. # e.g., the same source file might be shared among _SOURCES variables
  229. # for different programs/libraries.
  230. am__define_uniq_tagged_files = \
  231. list='$(am__tagged_files)'; \
  232. unique=`for i in $$list; do \
  233. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  234. done | $(am__uniquify_input)`
  235. ETAGS = etags
  236. CTAGS = ctags
  237. CSCOPE = cscope
  238. AM_RECURSIVE_TARGETS = cscope
  239. ACLOCAL = @ACLOCAL@
  240. AMTAR = @AMTAR@
  241. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  242. AR = @AR@
  243. AUTOCONF = @AUTOCONF@
  244. AUTOHEADER = @AUTOHEADER@
  245. AUTOMAKE = @AUTOMAKE@
  246. AWK = @AWK@
  247. CC = @CC@
  248. CCDEPMODE = @CCDEPMODE@
  249. CET_HOST_FLAGS = @CET_HOST_FLAGS@
  250. CFLAGS = @CFLAGS@
  251. CONFIG_STATUS_DEPENDENCIES = @CONFIG_STATUS_DEPENDENCIES@
  252. CPP = @CPP@
  253. CPPFLAGS = @CPPFLAGS@
  254. CXX = @CXX@
  255. CXXCPP = @CXXCPP@
  256. CXXDEPMODE = @CXXDEPMODE@
  257. CXXFLAGS = @CXXFLAGS@
  258. CYGPATH_W = @CYGPATH_W@
  259. DEFS = @DEFS@
  260. DEPDIR = @DEPDIR@
  261. DSYMUTIL = @DSYMUTIL@
  262. DUMPBIN = @DUMPBIN@
  263. ECHO_C = @ECHO_C@
  264. ECHO_N = @ECHO_N@
  265. ECHO_T = @ECHO_T@
  266. EGREP = @EGREP@
  267. EXEEXT = @EXEEXT@
  268. FGREP = @FGREP@
  269. GMPINC = @GMPINC@
  270. GREP = @GREP@
  271. INSTALL = @INSTALL@
  272. INSTALL_DATA = @INSTALL_DATA@
  273. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  274. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  275. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  276. LD = @LD@
  277. LDFLAGS = @LDFLAGS@
  278. LIBOBJS = @LIBOBJS@
  279. LIBS = @LIBS@
  280. LIBTOOL = @LIBTOOL@
  281. LIPO = @LIPO@
  282. LN_S = @LN_S@
  283. LTLIBOBJS = @LTLIBOBJS@
  284. MAINT = @MAINT@
  285. MAKEINFO = @MAKEINFO@
  286. MKDIR_P = @MKDIR_P@
  287. NM = @NM@
  288. NMEDIT = @NMEDIT@
  289. OBJDUMP = @OBJDUMP@
  290. OBJEXT = @OBJEXT@
  291. OTOOL = @OTOOL@
  292. OTOOL64 = @OTOOL64@
  293. PACKAGE = @PACKAGE@
  294. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  295. PACKAGE_NAME = @PACKAGE_NAME@
  296. PACKAGE_STRING = @PACKAGE_STRING@
  297. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  298. PACKAGE_URL = @PACKAGE_URL@
  299. PACKAGE_VERSION = @PACKAGE_VERSION@
  300. PATH_SEPARATOR = @PATH_SEPARATOR@
  301. RANLIB = @RANLIB@
  302. SED = @SED@
  303. SET_MAKE = @SET_MAKE@
  304. SHELL = @SHELL@
  305. STRIP = @STRIP@
  306. VERSION = @VERSION@
  307. WARN_FLAGS = @WARN_FLAGS@
  308. WERROR = @WERROR@
  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. am__include = @am__include@
  317. am__leading_dot = @am__leading_dot@
  318. am__quote = @am__quote@
  319. am__tar = @am__tar@
  320. am__untar = @am__untar@
  321. bindir = @bindir@
  322. build = @build@
  323. build_alias = @build_alias@
  324. build_cpu = @build_cpu@
  325. build_libsubdir = @build_libsubdir@
  326. build_os = @build_os@
  327. build_subdir = @build_subdir@
  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. gcc_version = @gcc_version@
  336. get_gcc_base_ver = @get_gcc_base_ver@
  337. host = @host@
  338. host_alias = @host_alias@
  339. host_cpu = @host_cpu@
  340. host_os = @host_os@
  341. host_subdir = @host_subdir@
  342. host_vendor = @host_vendor@
  343. htmldir = @htmldir@
  344. includedir = @includedir@
  345. infodir = @infodir@
  346. install_sh = @install_sh@
  347. libdir = @libdir@
  348. libexecdir = @libexecdir@
  349. libsuffix = @libsuffix@
  350. localedir = @localedir@
  351. localstatedir = @localstatedir@
  352. mandir = @mandir@
  353. mkdir_p = @mkdir_p@
  354. oldincludedir = @oldincludedir@
  355. pdfdir = @pdfdir@
  356. prefix = @prefix@
  357. program_transform_name = @program_transform_name@
  358. psdir = @psdir@
  359. sbindir = @sbindir@
  360. sharedstatedir = @sharedstatedir@
  361. srcdir = @srcdir@
  362. sysconfdir = @sysconfdir@
  363. target = @target@
  364. target_alias = @target_alias@
  365. target_cpu = @target_cpu@
  366. target_noncanonical = @target_noncanonical@
  367. target_os = @target_os@
  368. target_subdir = @target_subdir@
  369. target_vendor = @target_vendor@
  370. top_build_prefix = @top_build_prefix@
  371. top_builddir = @top_builddir@
  372. top_srcdir = @top_srcdir@
  373. visibility = @visibility@
  374. ACLOCAL_AMFLAGS = -I .. -I ../config
  375. gcc_build_dir = ../gcc
  376. AM_CPPFLAGS = -I $(srcdir)/../include -I $(srcdir)/../libgcc \
  377. -I $(gcc_build_dir) -I$(srcdir)/../gcc $($@_CPPFLAGS) $(GMPINC) \
  378. -I $(srcdir)/../gcc/c-family -I $(srcdir)/../libcpp/include
  379. CPPFLAGS_FOR_C = -I $(srcdir)/../gcc/c
  380. CPPFLAGS_FOR_CXX = -I $(srcdir)/../gcc/cp
  381. AM_CXXFLAGS = $(WARN_FLAGS) $(WERROR) $(visibility) $(CET_HOST_FLAGS) \
  382. $(am__append_1)
  383. # Can be simplified when libiberty becomes a normal convenience library.
  384. libiberty_normal = ../libiberty/libiberty.a
  385. libiberty_noasan = ../libiberty/noasan/libiberty.a
  386. libiberty_pic = ../libiberty/pic/libiberty.a
  387. Wc = -Wc,
  388. libiberty = $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
  389. $(if $(wildcard $(libiberty_pic)),$(Wc)$(libiberty_pic), \
  390. $(Wc)$(libiberty_normal)))
  391. libiberty_dep = $(patsubst $(Wc)%,%,$(libiberty))
  392. plugindir = $(libdir)/gcc/$(target_noncanonical)/$(gcc_version)/plugin
  393. cc1libdir = $(libdir)/$(libsuffix)
  394. @ENABLE_PLUGIN_TRUE@plugin_LTLIBRARIES = libcc1plugin.la libcp1plugin.la
  395. @ENABLE_PLUGIN_TRUE@cc1lib_LTLIBRARIES = libcc1.la
  396. shared_source = callbacks.cc callbacks.hh connection.cc connection.hh \
  397. marshall.cc marshall.hh rpc.hh status.hh
  398. marshall_c_source = marshall-c.hh
  399. marshall_cxx_source = marshall-cp.hh
  400. libcc1plugin_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1plugin.sym
  401. libcc1plugin_la_SOURCES = libcc1plugin.cc context.cc context.hh \
  402. $(shared_source) $(marshall_c_source)
  403. libcc1plugin.lo_CPPFLAGS = $(CPPFLAGS_FOR_C)
  404. libcc1plugin_la_LIBADD = $(libiberty)
  405. libcc1plugin_la_DEPENDENCIES = $(libiberty_dep)
  406. libcc1plugin_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
  407. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  408. $(CXXFLAGS) $(libcc1plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
  409. libcp1plugin_la_LDFLAGS = -module -export-symbols $(srcdir)/libcp1plugin.sym
  410. libcp1plugin_la_SOURCES = libcp1plugin.cc context.cc context.hh \
  411. $(shared_source) $(marshall_cxx_source)
  412. libcp1plugin.lo_CPPFLAGS = $(CPPFLAGS_FOR_CXX)
  413. libcp1plugin_la_LIBADD = $(libiberty)
  414. libcp1plugin_la_DEPENDENCIES = $(libiberty_dep)
  415. libcp1plugin_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
  416. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  417. $(CXXFLAGS) $(libcp1plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
  418. LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
  419. libcc1_la_LDFLAGS = -module -export-symbols $(srcdir)/libcc1.sym
  420. libcc1_la_SOURCES = findcomp.cc libcc1.cc libcp1.cc \
  421. compiler.cc compiler.hh names.cc names.hh $(shared_source) \
  422. $(marshall_c_source) $(marshall_cxx_source)
  423. libcc1_la_LIBADD = $(libiberty)
  424. libcc1_la_DEPENDENCIES = $(libiberty_dep)
  425. libcc1_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
  426. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  427. $(CXXFLAGS) $(libcc1_la_LDFLAGS) $(LTLDFLAGS) -o $@
  428. all: cc1plugin-config.h
  429. $(MAKE) $(AM_MAKEFLAGS) all-am
  430. .SUFFIXES:
  431. .SUFFIXES: .cc .lo .o .obj
  432. am--refresh: Makefile
  433. @:
  434. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  435. @for dep in $?; do \
  436. case '$(am__configure_deps)' in \
  437. *$$dep*) \
  438. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  439. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  440. && exit 0; \
  441. exit 1;; \
  442. esac; \
  443. done; \
  444. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  445. $(am__cd) $(top_srcdir) && \
  446. $(AUTOMAKE) --foreign Makefile
  447. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  448. @case '$?' in \
  449. *config.status*) \
  450. echo ' $(SHELL) ./config.status'; \
  451. $(SHELL) ./config.status;; \
  452. *) \
  453. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  454. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  455. esac;
  456. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  457. $(SHELL) ./config.status --recheck
  458. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  459. $(am__cd) $(srcdir) && $(AUTOCONF)
  460. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  461. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  462. $(am__aclocal_m4_deps):
  463. cc1plugin-config.h: stamp-h1
  464. @test -f $@ || rm -f stamp-h1
  465. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  466. stamp-h1: $(srcdir)/cc1plugin-config.h.in $(top_builddir)/config.status
  467. @rm -f stamp-h1
  468. cd $(top_builddir) && $(SHELL) ./config.status cc1plugin-config.h
  469. $(srcdir)/cc1plugin-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  470. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  471. rm -f stamp-h1
  472. touch $@
  473. distclean-hdr:
  474. -rm -f cc1plugin-config.h stamp-h1
  475. install-cc1libLTLIBRARIES: $(cc1lib_LTLIBRARIES)
  476. @$(NORMAL_INSTALL)
  477. @list='$(cc1lib_LTLIBRARIES)'; test -n "$(cc1libdir)" || list=; \
  478. list2=; for p in $$list; do \
  479. if test -f $$p; then \
  480. list2="$$list2 $$p"; \
  481. else :; fi; \
  482. done; \
  483. test -z "$$list2" || { \
  484. echo " $(MKDIR_P) '$(DESTDIR)$(cc1libdir)'"; \
  485. $(MKDIR_P) "$(DESTDIR)$(cc1libdir)" || exit 1; \
  486. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(cc1libdir)'"; \
  487. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(cc1libdir)"; \
  488. }
  489. uninstall-cc1libLTLIBRARIES:
  490. @$(NORMAL_UNINSTALL)
  491. @list='$(cc1lib_LTLIBRARIES)'; test -n "$(cc1libdir)" || list=; \
  492. for p in $$list; do \
  493. $(am__strip_dir) \
  494. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(cc1libdir)/$$f'"; \
  495. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(cc1libdir)/$$f"; \
  496. done
  497. clean-cc1libLTLIBRARIES:
  498. -test -z "$(cc1lib_LTLIBRARIES)" || rm -f $(cc1lib_LTLIBRARIES)
  499. @list='$(cc1lib_LTLIBRARIES)'; \
  500. locs=`for p in $$list; do echo $$p; done | \
  501. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  502. sort -u`; \
  503. test -z "$$locs" || { \
  504. echo rm -f $${locs}; \
  505. rm -f $${locs}; \
  506. }
  507. install-pluginLTLIBRARIES: $(plugin_LTLIBRARIES)
  508. @$(NORMAL_INSTALL)
  509. @list='$(plugin_LTLIBRARIES)'; test -n "$(plugindir)" || list=; \
  510. list2=; for p in $$list; do \
  511. if test -f $$p; then \
  512. list2="$$list2 $$p"; \
  513. else :; fi; \
  514. done; \
  515. test -z "$$list2" || { \
  516. echo " $(MKDIR_P) '$(DESTDIR)$(plugindir)'"; \
  517. $(MKDIR_P) "$(DESTDIR)$(plugindir)" || exit 1; \
  518. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(plugindir)'"; \
  519. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(plugindir)"; \
  520. }
  521. uninstall-pluginLTLIBRARIES:
  522. @$(NORMAL_UNINSTALL)
  523. @list='$(plugin_LTLIBRARIES)'; test -n "$(plugindir)" || list=; \
  524. for p in $$list; do \
  525. $(am__strip_dir) \
  526. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(plugindir)/$$f'"; \
  527. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(plugindir)/$$f"; \
  528. done
  529. clean-pluginLTLIBRARIES:
  530. -test -z "$(plugin_LTLIBRARIES)" || rm -f $(plugin_LTLIBRARIES)
  531. @list='$(plugin_LTLIBRARIES)'; \
  532. locs=`for p in $$list; do echo $$p; done | \
  533. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  534. sort -u`; \
  535. test -z "$$locs" || { \
  536. echo rm -f $${locs}; \
  537. rm -f $${locs}; \
  538. }
  539. libcc1.la: $(libcc1_la_OBJECTS) $(libcc1_la_DEPENDENCIES) $(EXTRA_libcc1_la_DEPENDENCIES)
  540. $(AM_V_GEN)$(libcc1_la_LINK) $(am_libcc1_la_rpath) $(libcc1_la_OBJECTS) $(libcc1_la_LIBADD) $(LIBS)
  541. libcc1plugin.la: $(libcc1plugin_la_OBJECTS) $(libcc1plugin_la_DEPENDENCIES) $(EXTRA_libcc1plugin_la_DEPENDENCIES)
  542. $(AM_V_GEN)$(libcc1plugin_la_LINK) $(am_libcc1plugin_la_rpath) $(libcc1plugin_la_OBJECTS) $(libcc1plugin_la_LIBADD) $(LIBS)
  543. libcp1plugin.la: $(libcp1plugin_la_OBJECTS) $(libcp1plugin_la_DEPENDENCIES) $(EXTRA_libcp1plugin_la_DEPENDENCIES)
  544. $(AM_V_GEN)$(libcp1plugin_la_LINK) $(am_libcp1plugin_la_rpath) $(libcp1plugin_la_OBJECTS) $(libcp1plugin_la_LIBADD) $(LIBS)
  545. mostlyclean-compile:
  546. -rm -f *.$(OBJEXT)
  547. distclean-compile:
  548. -rm -f *.tab.c
  549. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callbacks.Plo@am__quote@
  550. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compiler.Plo@am__quote@
  551. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/connection.Plo@am__quote@
  552. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/context.Plo@am__quote@
  553. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/findcomp.Plo@am__quote@
  554. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcc1.Plo@am__quote@
  555. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcc1plugin.Plo@am__quote@
  556. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcp1.Plo@am__quote@
  557. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libcp1plugin.Plo@am__quote@
  558. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/marshall.Plo@am__quote@
  559. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/names.Plo@am__quote@
  560. .cc.o:
  561. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  562. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  563. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  564. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  565. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
  566. .cc.obj:
  567. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  568. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  569. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  570. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  571. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  572. .cc.lo:
  573. @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  574. @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  575. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  576. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  577. @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
  578. mostlyclean-libtool:
  579. -rm -f *.lo
  580. clean-libtool:
  581. -rm -rf .libs _libs
  582. distclean-libtool:
  583. -rm -f libtool config.lt
  584. ID: $(am__tagged_files)
  585. $(am__define_uniq_tagged_files); mkid -fID $$unique
  586. tags: tags-am
  587. TAGS: tags
  588. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  589. set x; \
  590. here=`pwd`; \
  591. $(am__define_uniq_tagged_files); \
  592. shift; \
  593. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  594. test -n "$$unique" || unique=$$empty_fix; \
  595. if test $$# -gt 0; then \
  596. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  597. "$$@" $$unique; \
  598. else \
  599. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  600. $$unique; \
  601. fi; \
  602. fi
  603. ctags: ctags-am
  604. CTAGS: ctags
  605. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  606. $(am__define_uniq_tagged_files); \
  607. test -z "$(CTAGS_ARGS)$$unique" \
  608. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  609. $$unique
  610. GTAGS:
  611. here=`$(am__cd) $(top_builddir) && pwd` \
  612. && $(am__cd) $(top_srcdir) \
  613. && gtags -i $(GTAGS_ARGS) "$$here"
  614. cscope: cscope.files
  615. test ! -s cscope.files \
  616. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  617. clean-cscope:
  618. -rm -f cscope.files
  619. cscope.files: clean-cscope cscopelist
  620. cscopelist: cscopelist-am
  621. cscopelist-am: $(am__tagged_files)
  622. list='$(am__tagged_files)'; \
  623. case "$(srcdir)" in \
  624. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  625. *) sdir=$(subdir)/$(srcdir) ;; \
  626. esac; \
  627. for i in $$list; do \
  628. if test -f "$$i"; then \
  629. echo "$(subdir)/$$i"; \
  630. else \
  631. echo "$$sdir/$$i"; \
  632. fi; \
  633. done >> $(top_builddir)/cscope.files
  634. distclean-tags:
  635. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  636. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  637. check-am: all-am
  638. check: check-am
  639. all-am: Makefile $(LTLIBRARIES) cc1plugin-config.h
  640. installdirs:
  641. for dir in "$(DESTDIR)$(cc1libdir)" "$(DESTDIR)$(plugindir)"; do \
  642. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  643. done
  644. install: install-am
  645. install-exec: install-exec-am
  646. install-data: install-data-am
  647. uninstall: uninstall-am
  648. install-am: all-am
  649. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  650. installcheck: installcheck-am
  651. install-strip:
  652. if test -z '$(STRIP)'; then \
  653. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  654. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  655. install; \
  656. else \
  657. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  658. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  659. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  660. fi
  661. mostlyclean-generic:
  662. clean-generic:
  663. distclean-generic:
  664. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  665. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  666. maintainer-clean-generic:
  667. @echo "This command is intended for maintainers to use"
  668. @echo "it deletes files that may require special tools to rebuild."
  669. clean: clean-am
  670. clean-am: clean-cc1libLTLIBRARIES clean-generic clean-libtool \
  671. clean-pluginLTLIBRARIES mostlyclean-am
  672. distclean: distclean-am
  673. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  674. -rm -rf ./$(DEPDIR)
  675. -rm -f Makefile
  676. distclean-am: clean-am distclean-compile distclean-generic \
  677. distclean-hdr distclean-libtool distclean-tags
  678. dvi: dvi-am
  679. dvi-am:
  680. html: html-am
  681. html-am:
  682. info: info-am
  683. info-am:
  684. install-data-am: install-cc1libLTLIBRARIES install-pluginLTLIBRARIES
  685. install-dvi: install-dvi-am
  686. install-dvi-am:
  687. install-exec-am:
  688. install-html: install-html-am
  689. install-html-am:
  690. install-info: install-info-am
  691. install-info-am:
  692. install-man:
  693. install-pdf: install-pdf-am
  694. install-pdf-am:
  695. install-ps: install-ps-am
  696. install-ps-am:
  697. installcheck-am:
  698. maintainer-clean: maintainer-clean-am
  699. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  700. -rm -rf $(top_srcdir)/autom4te.cache
  701. -rm -rf ./$(DEPDIR)
  702. -rm -f Makefile
  703. maintainer-clean-am: distclean-am maintainer-clean-generic
  704. mostlyclean: mostlyclean-am
  705. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  706. mostlyclean-libtool
  707. pdf: pdf-am
  708. pdf-am:
  709. ps: ps-am
  710. ps-am:
  711. uninstall-am: uninstall-cc1libLTLIBRARIES uninstall-pluginLTLIBRARIES
  712. .MAKE: all install-am install-strip
  713. .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \
  714. clean-cc1libLTLIBRARIES clean-cscope clean-generic \
  715. clean-libtool clean-pluginLTLIBRARIES cscope cscopelist-am \
  716. ctags ctags-am distclean distclean-compile distclean-generic \
  717. distclean-hdr distclean-libtool distclean-tags dvi dvi-am html \
  718. html-am info info-am install install-am \
  719. install-cc1libLTLIBRARIES install-data install-data-am \
  720. install-dvi install-dvi-am install-exec install-exec-am \
  721. install-html install-html-am install-info install-info-am \
  722. install-man install-pdf install-pdf-am \
  723. install-pluginLTLIBRARIES install-ps install-ps-am \
  724. install-strip installcheck installcheck-am installdirs \
  725. maintainer-clean maintainer-clean-generic mostlyclean \
  726. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  727. pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
  728. uninstall-cc1libLTLIBRARIES uninstall-pluginLTLIBRARIES
  729. .PRECIOUS: Makefile
  730. override CXXFLAGS := $(subst -mdynamic-no-pic,-fPIC,$(CXXFLAGS))
  731. override CXXFLAGS := $(filter-out -fsanitize=address,$(CXXFLAGS))
  732. override LDFLAGS := $(filter-out -fsanitize=address,$(LDFLAGS))
  733. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  734. # Otherwise a system limit (for SysV at least) may be exceeded.
  735. .NOEXPORT: