Makefile.in 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718
  1. # Makefile.in generated by automake 1.15.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994-2017 Free Software Foundation, Inc.
  4. # This Makefile.in is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. @SET_MAKE@
  12. #
  13. # Copyright (C) 2012-2022 Free Software Foundation, Inc.
  14. #
  15. # This file is free software; you can redistribute it and/or modify
  16. # it under the terms of the GNU General Public License as published by
  17. # the Free Software Foundation; either version 3 of the License, or
  18. # (at your option) any later version.
  19. #
  20. # This program is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. # GNU General Public License for more details.
  24. #
  25. # You should have received a copy of the GNU General Public License
  26. # along with this program; see the file COPYING3. If not see
  27. # <http://www.gnu.org/licenses/>.
  28. #
  29. VPATH = @srcdir@
  30. am__is_gnu_make = { \
  31. if test -z '$(MAKELEVEL)'; then \
  32. false; \
  33. elif test -n '$(MAKE_HOST)'; then \
  34. true; \
  35. elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
  36. true; \
  37. else \
  38. false; \
  39. fi; \
  40. }
  41. am__make_running_with_option = \
  42. case $${target_option-} in \
  43. ?) ;; \
  44. *) echo "am__make_running_with_option: internal error: invalid" \
  45. "target option '$${target_option-}' specified" >&2; \
  46. exit 1;; \
  47. esac; \
  48. has_opt=no; \
  49. sane_makeflags=$$MAKEFLAGS; \
  50. if $(am__is_gnu_make); then \
  51. sane_makeflags=$$MFLAGS; \
  52. else \
  53. case $$MAKEFLAGS in \
  54. *\\[\ \ ]*) \
  55. bs=\\; \
  56. sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
  57. | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
  58. esac; \
  59. fi; \
  60. skip_next=no; \
  61. strip_trailopt () \
  62. { \
  63. flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  64. }; \
  65. for flg in $$sane_makeflags; do \
  66. test $$skip_next = yes && { skip_next=no; continue; }; \
  67. case $$flg in \
  68. *=*|--*) continue;; \
  69. -*I) strip_trailopt 'I'; skip_next=yes;; \
  70. -*I?*) strip_trailopt 'I';; \
  71. -*O) strip_trailopt 'O'; skip_next=yes;; \
  72. -*O?*) strip_trailopt 'O';; \
  73. -*l) strip_trailopt 'l'; skip_next=yes;; \
  74. -*l?*) strip_trailopt 'l';; \
  75. -[dEDm]) skip_next=yes;; \
  76. -[JT]) skip_next=yes;; \
  77. esac; \
  78. case $$flg in \
  79. *$$target_option*) has_opt=yes; break;; \
  80. esac; \
  81. done; \
  82. test $$has_opt = yes
  83. am__make_dryrun = (target_option=n; $(am__make_running_with_option))
  84. am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
  85. pkgdatadir = $(datadir)/@PACKAGE@
  86. pkgincludedir = $(includedir)/@PACKAGE@
  87. pkglibdir = $(libdir)/@PACKAGE@
  88. pkglibexecdir = $(libexecdir)/@PACKAGE@
  89. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  90. install_sh_DATA = $(install_sh) -c -m 644
  91. install_sh_PROGRAM = $(install_sh) -c
  92. install_sh_SCRIPT = $(install_sh) -c
  93. INSTALL_HEADER = $(INSTALL_DATA)
  94. NORMAL_INSTALL = :
  95. PRE_INSTALL = :
  96. POST_INSTALL = :
  97. NORMAL_UNINSTALL = :
  98. PRE_UNINSTALL = :
  99. POST_UNINSTALL = :
  100. build_triplet = @build@
  101. host_triplet = @host@
  102. target_triplet = @target@
  103. bin_PROGRAMS = ld-new$(EXEEXT)
  104. subdir = .
  105. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  106. am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
  107. $(top_srcdir)/../bfd/warning.m4 $(top_srcdir)/../config/acx.m4 \
  108. $(top_srcdir)/../config/bfd64.m4 \
  109. $(top_srcdir)/../config/depstand.m4 \
  110. $(top_srcdir)/../config/enable.m4 \
  111. $(top_srcdir)/../config/gettext-sister.m4 \
  112. $(top_srcdir)/../config/jobserver.m4 \
  113. $(top_srcdir)/../config/largefile.m4 \
  114. $(top_srcdir)/../config/lcmessage.m4 \
  115. $(top_srcdir)/../config/lead-dot.m4 \
  116. $(top_srcdir)/../config/nls.m4 \
  117. $(top_srcdir)/../config/override.m4 \
  118. $(top_srcdir)/../config/plugins.m4 \
  119. $(top_srcdir)/../config/po.m4 \
  120. $(top_srcdir)/../config/progtest.m4 \
  121. $(top_srcdir)/../config/zlib.m4 $(top_srcdir)/../libtool.m4 \
  122. $(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
  123. $(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
  124. $(top_srcdir)/../bfd/version.m4 $(top_srcdir)/configure.ac
  125. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  126. $(ACLOCAL_M4)
  127. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  128. $(am__configure_deps)
  129. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  130. configure.lineno config.status.lineno
  131. mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
  132. CONFIG_HEADER = config.h
  133. CONFIG_CLEAN_FILES = po/Makefile.in
  134. CONFIG_CLEAN_VPATH_FILES =
  135. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  136. am__vpath_adj = case $$p in \
  137. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  138. *) f=$$p;; \
  139. esac;
  140. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  141. am__install_max = 40
  142. am__nobase_strip_setup = \
  143. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  144. am__nobase_strip = \
  145. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  146. am__nobase_list = $(am__nobase_strip_setup); \
  147. for p in $$list; do echo "$$p $$p"; done | \
  148. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  149. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  150. if (++n[$$2] == $(am__install_max)) \
  151. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  152. END { for (dir in files) print dir, files[dir] }'
  153. am__base_list = \
  154. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  155. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  156. am__uninstall_files_from_dir = { \
  157. test -z "$$files" \
  158. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  159. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  160. $(am__cd) "$$dir" && rm -f $$files; }; \
  161. }
  162. am__installdirs = "$(DESTDIR)$(bfdplugindir)" "$(DESTDIR)$(bindir)" \
  163. "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"
  164. LTLIBRARIES = $(bfdplugin_LTLIBRARIES) $(noinst_LTLIBRARIES)
  165. libdep_la_LIBADD =
  166. am_libdep_la_OBJECTS = libdep_plugin.lo
  167. libdep_la_OBJECTS = $(am_libdep_la_OBJECTS)
  168. libldtestplug_la_LIBADD =
  169. am_libldtestplug_la_OBJECTS = libldtestplug_la-testplug.lo
  170. libldtestplug_la_OBJECTS = $(am_libldtestplug_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. libldtestplug_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  176. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  177. $(libldtestplug_la_CFLAGS) $(CFLAGS) \
  178. $(libldtestplug_la_LDFLAGS) $(LDFLAGS) -o $@
  179. libldtestplug2_la_LIBADD =
  180. am_libldtestplug2_la_OBJECTS = libldtestplug2_la-testplug2.lo
  181. libldtestplug2_la_OBJECTS = $(am_libldtestplug2_la_OBJECTS)
  182. libldtestplug2_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  183. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  184. $(libldtestplug2_la_CFLAGS) $(CFLAGS) \
  185. $(libldtestplug2_la_LDFLAGS) $(LDFLAGS) -o $@
  186. libldtestplug3_la_LIBADD =
  187. am_libldtestplug3_la_OBJECTS = libldtestplug3_la-testplug3.lo
  188. libldtestplug3_la_OBJECTS = $(am_libldtestplug3_la_OBJECTS)
  189. libldtestplug3_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  190. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  191. $(libldtestplug3_la_CFLAGS) $(CFLAGS) \
  192. $(libldtestplug3_la_LDFLAGS) $(LDFLAGS) -o $@
  193. libldtestplug4_la_LIBADD =
  194. am_libldtestplug4_la_OBJECTS = libldtestplug4_la-testplug4.lo
  195. libldtestplug4_la_OBJECTS = $(am_libldtestplug4_la_OBJECTS)
  196. libldtestplug4_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
  197. $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  198. $(libldtestplug4_la_CFLAGS) $(CFLAGS) \
  199. $(libldtestplug4_la_LDFLAGS) $(LDFLAGS) -o $@
  200. PROGRAMS = $(bin_PROGRAMS)
  201. am_ld_new_OBJECTS = ldgram.$(OBJEXT) ldlex-wrapper.$(OBJEXT) \
  202. lexsup.$(OBJEXT) ldlang.$(OBJEXT) mri.$(OBJEXT) \
  203. ldctor.$(OBJEXT) ldmain.$(OBJEXT) ldwrite.$(OBJEXT) \
  204. ldexp.$(OBJEXT) ldemul.$(OBJEXT) ldver.$(OBJEXT) \
  205. ldmisc.$(OBJEXT) ldfile.$(OBJEXT) ldcref.$(OBJEXT) \
  206. plugin.$(OBJEXT) ldbuildid.$(OBJEXT)
  207. ld_new_OBJECTS = $(am_ld_new_OBJECTS)
  208. am__DEPENDENCIES_1 =
  209. @ENABLE_LIBCTF_TRUE@am__DEPENDENCIES_2 = ../libctf/libctf.la
  210. AM_V_P = $(am__v_P_@AM_V@)
  211. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  212. am__v_P_0 = false
  213. am__v_P_1 = :
  214. AM_V_GEN = $(am__v_GEN_@AM_V@)
  215. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  216. am__v_GEN_0 = @echo " GEN " $@;
  217. am__v_GEN_1 =
  218. AM_V_at = $(am__v_at_@AM_V@)
  219. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  220. am__v_at_0 = @
  221. am__v_at_1 =
  222. DEFAULT_INCLUDES = -I.@am__isrc@
  223. depcomp = $(SHELL) $(top_srcdir)/../depcomp
  224. am__depfiles_maybe = depfiles
  225. am__mv = mv -f
  226. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  227. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  228. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  229. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  230. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  231. $(AM_CFLAGS) $(CFLAGS)
  232. AM_V_CC = $(am__v_CC_@AM_V@)
  233. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  234. am__v_CC_0 = @echo " CC " $@;
  235. am__v_CC_1 =
  236. CCLD = $(CC)
  237. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  238. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  239. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  240. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  241. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  242. am__v_CCLD_0 = @echo " CCLD " $@;
  243. am__v_CCLD_1 =
  244. @MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ ||
  245. LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS)
  246. LTLEXCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
  247. $(LIBTOOLFLAGS) --mode=compile $(LEX) $(AM_LFLAGS) $(LFLAGS)
  248. AM_V_LEX = $(am__v_LEX_@AM_V@)
  249. am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@)
  250. am__v_LEX_0 = @echo " LEX " $@;
  251. am__v_LEX_1 =
  252. YLWRAP = $(top_srcdir)/../ylwrap
  253. @MAINTAINER_MODE_FALSE@am__skipyacc = test -f $@ ||
  254. am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \
  255. -e s/c++$$/h++/ -e s/c$$/h/
  256. YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS)
  257. LTYACCCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \
  258. $(LIBTOOLFLAGS) --mode=compile $(YACC) $(AM_YFLAGS) $(YFLAGS)
  259. AM_V_YACC = $(am__v_YACC_@AM_V@)
  260. am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@)
  261. am__v_YACC_0 = @echo " YACC " $@;
  262. am__v_YACC_1 =
  263. SOURCES = $(libdep_la_SOURCES) $(libldtestplug_la_SOURCES) \
  264. $(libldtestplug2_la_SOURCES) $(libldtestplug3_la_SOURCES) \
  265. $(libldtestplug4_la_SOURCES) $(ld_new_SOURCES) \
  266. $(EXTRA_ld_new_SOURCES)
  267. AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
  268. am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
  269. am__v_DVIPS_0 = @echo " DVIPS " $@;
  270. am__v_DVIPS_1 =
  271. AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
  272. am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
  273. am__v_MAKEINFO_0 = @echo " MAKEINFO" $@;
  274. am__v_MAKEINFO_1 =
  275. AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
  276. am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
  277. am__v_INFOHTML_0 = @echo " INFOHTML" $@;
  278. am__v_INFOHTML_1 =
  279. AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
  280. am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
  281. am__v_TEXI2DVI_0 = @echo " TEXI2DVI" $@;
  282. am__v_TEXI2DVI_1 =
  283. AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
  284. am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
  285. am__v_TEXI2PDF_0 = @echo " TEXI2PDF" $@;
  286. am__v_TEXI2PDF_1 =
  287. AM_V_texinfo = $(am__v_texinfo_@AM_V@)
  288. am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
  289. am__v_texinfo_0 = -q
  290. am__v_texinfo_1 =
  291. AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
  292. am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
  293. am__v_texidevnull_0 = > /dev/null
  294. am__v_texidevnull_1 =
  295. INFO_DEPS = ld.info
  296. am__TEXINFO_TEX_DIR = $(srcdir)/../texinfo
  297. DVIS = ld.dvi
  298. PDFS = ld.pdf
  299. PSS = ld.ps
  300. HTMLS = ld.html
  301. TEXINFOS = ld.texi
  302. TEXI2PDF = $(TEXI2DVI) --pdf --batch
  303. MAKEINFOHTML = $(MAKEINFO) --html
  304. AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
  305. DVIPS = dvips
  306. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  307. ctags-recursive dvi-recursive html-recursive info-recursive \
  308. install-data-recursive install-dvi-recursive \
  309. install-exec-recursive install-html-recursive \
  310. install-info-recursive install-pdf-recursive \
  311. install-ps-recursive install-recursive installcheck-recursive \
  312. installdirs-recursive pdf-recursive ps-recursive \
  313. tags-recursive uninstall-recursive
  314. am__can_run_installinfo = \
  315. case $$AM_UPDATE_INFO_DIR in \
  316. n|no|NO) false;; \
  317. *) (install-info --version) >/dev/null 2>&1;; \
  318. esac
  319. man1dir = $(mandir)/man1
  320. NROFF = nroff
  321. MANS = $(man_MANS)
  322. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  323. distclean-recursive maintainer-clean-recursive
  324. am__recursive_targets = \
  325. $(RECURSIVE_TARGETS) \
  326. $(RECURSIVE_CLEAN_TARGETS) \
  327. $(am__extra_recursive_targets)
  328. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  329. cscope
  330. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  331. $(LISP)config.in
  332. # Read a list of newline-separated strings from the standard input,
  333. # and print each of them once, without duplicates. Input order is
  334. # *not* preserved.
  335. am__uniquify_input = $(AWK) '\
  336. BEGIN { nonempty = 0; } \
  337. { items[$$0] = 1; nonempty = 1; } \
  338. END { if (nonempty) { for (i in items) print i; }; } \
  339. '
  340. # Make sure the list of sources is unique. This is necessary because,
  341. # e.g., the same source file might be shared among _SOURCES variables
  342. # for different programs/libraries.
  343. am__define_uniq_tagged_files = \
  344. list='$(am__tagged_files)'; \
  345. unique=`for i in $$list; do \
  346. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  347. done | $(am__uniquify_input)`
  348. ETAGS = etags
  349. CTAGS = ctags
  350. CSCOPE = cscope
  351. DEJATOOL = $(PACKAGE)
  352. RUNTESTDEFAULTFLAGS = --tool $$tool --srcdir $$srcdir
  353. DIST_SUBDIRS = $(SUBDIRS)
  354. transform = s/^ld-new$$/$(installed_linker)/;@program_transform_name@
  355. ACLOCAL = @ACLOCAL@
  356. AMTAR = @AMTAR@
  357. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  358. AR = @AR@
  359. AUTOCONF = @AUTOCONF@
  360. AUTOHEADER = @AUTOHEADER@
  361. AUTOMAKE = @AUTOMAKE@
  362. AWK = @AWK@
  363. CATALOGS = @CATALOGS@
  364. CATOBJEXT = @CATOBJEXT@
  365. CC = @CC@
  366. CCDEPMODE = @CCDEPMODE@
  367. CFLAGS = @CFLAGS@
  368. CPP = @CPP@
  369. CPPFLAGS = @CPPFLAGS@
  370. CXX = @CXX@
  371. CXXCPP = @CXXCPP@
  372. CXXDEPMODE = @CXXDEPMODE@
  373. CXXFLAGS = @CXXFLAGS@
  374. CYGPATH_W = @CYGPATH_W@
  375. DATADIRNAME = @DATADIRNAME@
  376. DEFS = @DEFS@
  377. DEPDIR = @DEPDIR@
  378. DSYMUTIL = @DSYMUTIL@
  379. DUMPBIN = @DUMPBIN@
  380. ECHO_C = @ECHO_C@
  381. ECHO_N = @ECHO_N@
  382. ECHO_T = @ECHO_T@
  383. EGREP = @EGREP@
  384. EMUL = @EMUL@
  385. EMULATION_LIBPATH = @EMULATION_LIBPATH@
  386. EMULATION_OFILES = @EMULATION_OFILES@
  387. EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@
  388. EXEEXT = @EXEEXT@
  389. FGREP = @FGREP@
  390. GENCAT = @GENCAT@
  391. GMSGFMT = @GMSGFMT@
  392. GREP = @GREP@
  393. HDEFINES = @HDEFINES@
  394. INCINTL = @INCINTL@
  395. INSTALL = @INSTALL@
  396. INSTALL_DATA = @INSTALL_DATA@
  397. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  398. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  399. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  400. INSTOBJEXT = @INSTOBJEXT@
  401. LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
  402. LD = @LD@
  403. LDFLAGS = @LDFLAGS@
  404. LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
  405. LEXLIB = @LEXLIB@
  406. LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
  407. LIBINTL = @LIBINTL@
  408. LIBINTL_DEP = @LIBINTL_DEP@
  409. LIBOBJS = @LIBOBJS@
  410. LIBS = @LIBS@
  411. LIBTOOL = @LIBTOOL@
  412. # Search path to override the default search path for -lfoo libraries.
  413. # If LIB_PATH is empty, the ones in the script (if any) are left alone.
  414. # (The default is usually /lib:/usr/lib:/usr/local/lib, unless building
  415. # a cross-linker, in which case the default is empty. See genscripts.sh.)
  416. # Otherwise, they are replaced with the ones given in LIB_PATH,
  417. # which may have the form: LIB_PATH=/lib:/usr/local/lib. This can be set
  418. # when the linker is configured via the --with-lib-path configure switch.
  419. LIB_PATH = @LIB_PATH@
  420. LIPO = @LIPO@
  421. LN_S = @LN_S@
  422. LTLIBOBJS = @LTLIBOBJS@
  423. MAINT = @MAINT@
  424. MAKEINFO = @MAKEINFO@
  425. MKDIR_P = @MKDIR_P@
  426. MKINSTALLDIRS = @MKINSTALLDIRS@
  427. MSGFMT = @MSGFMT@
  428. MSGMERGE = @MSGMERGE@
  429. NATIVE_LIB_DIRS = @NATIVE_LIB_DIRS@
  430. NM = @NM@
  431. NMEDIT = @NMEDIT@
  432. NO_WERROR = @NO_WERROR@
  433. OBJDUMP = @OBJDUMP@
  434. OBJEXT = @OBJEXT@
  435. OTOOL = @OTOOL@
  436. OTOOL64 = @OTOOL64@
  437. PACKAGE = @PACKAGE@
  438. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  439. PACKAGE_NAME = @PACKAGE_NAME@
  440. PACKAGE_STRING = @PACKAGE_STRING@
  441. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  442. PACKAGE_URL = @PACKAGE_URL@
  443. PACKAGE_VERSION = @PACKAGE_VERSION@
  444. PATH_SEPARATOR = @PATH_SEPARATOR@
  445. POSUB = @POSUB@
  446. RANLIB = @RANLIB@
  447. SED = @SED@
  448. SET_MAKE = @SET_MAKE@
  449. SHELL = @SHELL@
  450. STRINGIFY = @STRINGIFY@
  451. STRIP = @STRIP@
  452. TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
  453. TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
  454. # This is the real libbfd.a and libctf.a created by libtool.
  455. TESTBFDLIB = @TESTBFDLIB@
  456. TESTCTFLIB = @TESTCTFLIB@
  457. USE_NLS = @USE_NLS@
  458. VERSION = @VERSION@
  459. WARN_CFLAGS = @WARN_CFLAGS@
  460. WARN_CFLAGS_FOR_BUILD = @WARN_CFLAGS_FOR_BUILD@
  461. WARN_WRITE_STRINGS = @WARN_WRITE_STRINGS@
  462. XGETTEXT = @XGETTEXT@
  463. YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
  464. YFLAGS = -d
  465. abs_builddir = @abs_builddir@
  466. abs_srcdir = @abs_srcdir@
  467. abs_top_builddir = @abs_top_builddir@
  468. abs_top_srcdir = @abs_top_srcdir@
  469. ac_ct_CC = @ac_ct_CC@
  470. ac_ct_CXX = @ac_ct_CXX@
  471. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  472. am__include = @am__include@
  473. am__leading_dot = @am__leading_dot@
  474. am__quote = @am__quote@
  475. am__tar = @am__tar@
  476. am__untar = @am__untar@
  477. bindir = @bindir@
  478. build = @build@
  479. build_alias = @build_alias@
  480. build_cpu = @build_cpu@
  481. build_os = @build_os@
  482. build_vendor = @build_vendor@
  483. builddir = @builddir@
  484. datadir = @datadir@
  485. datarootdir = @datarootdir@
  486. do_compare = @do_compare@
  487. docdir = @docdir@
  488. dvidir = @dvidir@
  489. elf_list_options = @elf_list_options@
  490. elf_plt_unwind_list_options = @elf_plt_unwind_list_options@
  491. elf_shlib_list_options = @elf_shlib_list_options@
  492. enable_initfini_array = @enable_initfini_array@
  493. enable_libctf = @enable_libctf@
  494. exec_prefix = @exec_prefix@
  495. host = @host@
  496. host_alias = @host_alias@
  497. host_cpu = @host_cpu@
  498. host_os = @host_os@
  499. host_vendor = @host_vendor@
  500. htmldir = @htmldir@
  501. includedir = @includedir@
  502. infodir = @infodir@
  503. install_as_default = @install_as_default@
  504. install_sh = @install_sh@
  505. installed_linker = @installed_linker@
  506. libdir = @libdir@
  507. libexecdir = @libexecdir@
  508. localedir = @localedir@
  509. localstatedir = @localstatedir@
  510. mandir = @mandir@
  511. mkdir_p = @mkdir_p@
  512. oldincludedir = @oldincludedir@
  513. pdfdir = @pdfdir@
  514. prefix = @prefix@
  515. program_transform_name = @program_transform_name@
  516. psdir = @psdir@
  517. sbindir = @sbindir@
  518. sharedstatedir = @sharedstatedir@
  519. srcdir = @srcdir@
  520. sysconfdir = @sysconfdir@
  521. target = @target@
  522. target_alias = @target_alias@
  523. target_cpu = @target_cpu@
  524. target_os = @target_os@
  525. target_vendor = @target_vendor@
  526. top_build_prefix = @top_build_prefix@
  527. top_builddir = @top_builddir@
  528. top_srcdir = @top_srcdir@
  529. use_sysroot = @use_sysroot@
  530. zlibdir = @zlibdir@
  531. zlibinc = @zlibinc@
  532. AUTOMAKE_OPTIONS = dejagnu no-texinfo.tex no-dist foreign info-in-builddir
  533. ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
  534. TEXINFO_TEX = ../texinfo/texinfo.tex
  535. SUBDIRS = po
  536. tooldir = $(exec_prefix)/$(target_alias)
  537. # Automake 1.10+ disables lex and yacc output file regeneration if
  538. # maintainer mode is disabled. Avoid this.
  539. am__skiplex =
  540. am__skipyacc =
  541. # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
  542. # -I../zlib, unless we were configured with --with-system-zlib, in which
  543. # case both are empty.
  544. ZLIB = @zlibdir@ -lz
  545. ZLIBINC = @zlibinc@
  546. ELF_CLFAGS = -DELF_LIST_OPTIONS=@elf_list_options@ \
  547. -DELF_SHLIB_LIST_OPTIONS=@elf_shlib_list_options@ \
  548. -DELF_PLT_UNWIND_LIST_OPTIONS=@elf_plt_unwind_list_options@
  549. AM_CFLAGS = $(WARN_CFLAGS) $(ELF_CLFAGS)
  550. # We put the scripts in the directory $(scriptdir)/ldscripts.
  551. # We can't put the scripts in $(datadir) because the SEARCH_DIR
  552. # directives need to be different for native and cross linkers.
  553. scriptdir = $(tooldir)/lib
  554. BASEDIR = $(srcdir)/..
  555. BFDDIR = $(BASEDIR)/bfd
  556. INCDIR = $(BASEDIR)/include
  557. # What version of the manual to build
  558. DOCVER = gen
  559. # Options to extract the man page from ld.texi
  560. MANCONF = -Dman
  561. TEXI2POD = perl $(BASEDIR)/etc/texi2pod.pl $(AM_MAKEINFOFLAGS)
  562. POD2MAN = pod2man --center="GNU Development Tools" \
  563. --release="binutils-$(VERSION)" --section=1
  564. # Setup the testing framework, if you have one
  565. EXPECT = expect
  566. RUNTEST = runtest
  567. RUNTESTFLAGS =
  568. CC_FOR_TARGET = ` \
  569. if [ -f $$r/../gcc/xgcc ] ; then \
  570. if [ -f $$r/../newlib/Makefile ] ; then \
  571. echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
  572. else \
  573. echo $$r/../gcc/xgcc -B$$r/../gcc/; \
  574. fi; \
  575. else \
  576. if [ "@host@" = "@target@" ] ; then \
  577. echo $(CC); \
  578. else \
  579. echo gcc | sed '$(transform)'; \
  580. fi; \
  581. fi`
  582. CXX_FOR_TARGET = ` \
  583. if [ -f $$r/../gcc/g++ ] ; then \
  584. if [ -f $$r/../newlib/Makefile ] ; then \
  585. echo $$r/../gcc/g++ -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
  586. else \
  587. echo $$r/../gcc/g++ -B$$r/../gcc/; \
  588. fi; \
  589. elif [ -f $$r/../gcc/xg++ ] ; then \
  590. if [ -f $$r/../newlib/Makefile ] ; then \
  591. echo $$r/../gcc/xg++ -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
  592. else \
  593. echo $$r/../gcc/xg++ -B$$r/../gcc/; \
  594. fi; \
  595. else \
  596. if [ "@host@" = "@target@" ] ; then \
  597. echo $(CXX); \
  598. else \
  599. echo g++ | sed '$(transform)'; \
  600. fi; \
  601. fi`
  602. # Strip out sanitization options as we want to test building binaries without any extra paraphernalia
  603. CFLAGS_FOR_TARGET = `echo $(CFLAGS) | sed -e 's/-fsanitize=[^ ]*//g'`
  604. CXXFLAGS_FOR_TARGET = `echo $(CXXFLAGS) | sed -e 's/-fsanitize=[^ ]*//g'`
  605. info_TEXINFOS = ld.texi
  606. ld_TEXINFOS = configdoc.texi
  607. noinst_TEXINFOS = ldint.texi
  608. man_MANS = ld.1
  609. AM_MAKEINFOFLAGS = -I $(srcdir) -I $(BFDDIR)/doc -I ../bfd/doc \
  610. -I $(top_srcdir)/../libiberty --no-split
  611. TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc -I ../bfd/doc \
  612. -I $(top_srcdir)/../libiberty
  613. AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @zlibinc@ \
  614. @INCINTL@ $(HDEFINES) $(CFLAGS) @LARGEFILE_CPPFLAGS@ \
  615. -DLOCALEDIR="\"$(datadir)/locale\""
  616. BFDLIB = ../bfd/libbfd.la
  617. LIBIBERTY = ../libiberty/libiberty.a
  618. @ENABLE_LIBCTF_FALSE@LIBCTF =
  619. @ENABLE_LIBCTF_TRUE@LIBCTF = ../libctf/libctf.la
  620. # These all start with e so 'make clean' can find them.
  621. ALL_EMULATION_SOURCES = \
  622. eaix5ppc.c \
  623. eaix5rs6.c \
  624. eaixppc.c \
  625. eaixrs6.c \
  626. ealpha.c \
  627. ealphavms.c \
  628. earcelf.c \
  629. earclinux.c \
  630. earclinux_nps.c \
  631. earcv2elf.c \
  632. earcv2elfx.c \
  633. earm_wince_pe.c \
  634. earmelf.c \
  635. earmelf_fbsd.c \
  636. earmelf_fuchsia.c \
  637. earmelf_haiku.c \
  638. earmelf_linux.c \
  639. earmelf_linux_eabi.c \
  640. earmelf_linux_fdpiceabi.c \
  641. earmelf_nacl.c \
  642. earmelf_nbsd.c \
  643. earmelf_phoenix.c \
  644. earmelf_vxworks.c \
  645. earmelfb.c \
  646. earmelfb_fbsd.c \
  647. earmelfb_fuchsia.c \
  648. earmelfb_linux.c \
  649. earmelfb_linux_eabi.c \
  650. earmelfb_linux_fdpiceabi.c \
  651. earmelfb_nacl.c \
  652. earmelfb_nbsd.c \
  653. earmnto.c \
  654. earmpe.c \
  655. eavr1.c \
  656. eavr2.c \
  657. eavr25.c \
  658. eavr3.c \
  659. eavr31.c \
  660. eavr35.c \
  661. eavr4.c \
  662. eavr5.c \
  663. eavr51.c \
  664. eavr6.c \
  665. eavrtiny.c \
  666. eavrxmega1.c \
  667. eavrxmega2.c \
  668. eavrxmega3.c \
  669. eavrxmega4.c \
  670. eavrxmega5.c \
  671. eavrxmega6.c \
  672. eavrxmega7.c \
  673. ecrisaout.c \
  674. ecriself.c \
  675. ecrislinux.c \
  676. ecskyelf.c \
  677. ecskyelf_linux.c \
  678. ed10velf.c \
  679. ed30v_e.c \
  680. ed30v_o.c \
  681. ed30velf.c \
  682. eelf32_dlx.c \
  683. eelf32_sparc.c \
  684. eelf32_sparc_sol2.c \
  685. eelf32_sparc_vxworks.c \
  686. eelf32_spu.c \
  687. eelf32_tic6x_be.c \
  688. eelf32_tic6x_elf_be.c \
  689. eelf32_tic6x_elf_le.c \
  690. eelf32_tic6x_le.c \
  691. eelf32_tic6x_linux_be.c \
  692. eelf32_tic6x_linux_le.c \
  693. eelf32am33lin.c \
  694. eelf32bfin.c \
  695. eelf32bfinfd.c \
  696. eelf32cr16.c \
  697. eelf32crx.c \
  698. eelf32epiphany.c \
  699. eelf32epiphany_4x4.c \
  700. eelf32fr30.c \
  701. eelf32frv.c \
  702. eelf32frvfd.c \
  703. eelf32ft32.c \
  704. eelf32ip2k.c \
  705. eelf32iq10.c \
  706. eelf32iq2000.c \
  707. eelf32lm32.c \
  708. eelf32lm32fd.c \
  709. eelf32lppc.c \
  710. eelf32lppclinux.c \
  711. eelf32lppcnto.c \
  712. eelf32lppcsim.c \
  713. eelf32m32c.c \
  714. eelf32mb_linux.c \
  715. eelf32mbel_linux.c \
  716. eelf32mcore.c \
  717. eelf32mep.c \
  718. eelf32metag.c \
  719. eelf32microblaze.c \
  720. eelf32microblazeel.c \
  721. eelf32moxie.c \
  722. eelf32mt.c \
  723. eelf32or1k.c \
  724. eelf32or1k_linux.c \
  725. eelf32ppc.c \
  726. eelf32ppc_fbsd.c \
  727. eelf32ppchaiku.c \
  728. eelf32ppclinux.c \
  729. eelf32ppcnto.c \
  730. eelf32ppcsim.c \
  731. eelf32ppcvxworks.c \
  732. eelf32ppcwindiss.c \
  733. eelf32rl78.c \
  734. eelf32rx.c \
  735. eelf32rx_linux.c \
  736. eelf32tilegx.c \
  737. eelf32tilegx_be.c \
  738. eelf32tilepro.c \
  739. eelf32vax.c \
  740. eelf32visium.c \
  741. eelf32xc16x.c \
  742. eelf32xc16xl.c \
  743. eelf32xc16xs.c \
  744. eelf32xstormy16.c \
  745. eelf32xtensa.c \
  746. eelf32z80.c \
  747. eelf_i386.c \
  748. eelf_i386_be.c \
  749. eelf_i386_fbsd.c \
  750. eelf_i386_haiku.c \
  751. eelf_i386_ldso.c \
  752. eelf_i386_sol2.c \
  753. eelf_i386_vxworks.c \
  754. eelf_iamcu.c \
  755. eelf_s390.c \
  756. eh8300elf.c \
  757. eh8300elf_linux.c \
  758. eh8300helf.c \
  759. eh8300helf_linux.c \
  760. eh8300hnelf.c \
  761. eh8300self.c \
  762. eh8300self_linux.c \
  763. eh8300snelf.c \
  764. eh8300sxelf.c \
  765. eh8300sxelf_linux.c \
  766. eh8300sxnelf.c \
  767. ehppaelf.c \
  768. ehppalinux.c \
  769. ehppanbsd.c \
  770. ehppaobsd.c \
  771. ei386aout.c \
  772. ei386beos.c \
  773. ei386bsd.c \
  774. ei386go32.c \
  775. ei386lynx.c \
  776. ei386moss.c \
  777. ei386msdos.c \
  778. ei386nto.c \
  779. ei386pe.c \
  780. ei386pe_posix.c \
  781. em32relf.c \
  782. em32relf_linux.c \
  783. em32rlelf.c \
  784. em32rlelf_linux.c \
  785. em68hc11elf.c \
  786. em68hc11elfb.c \
  787. em68hc12elf.c \
  788. em68hc12elfb.c \
  789. em68kelf.c \
  790. em68kelfnbsd.c \
  791. em9s12zelf.c \
  792. emcorepe.c \
  793. emn10200.c \
  794. emn10300.c \
  795. emoxiebox.c \
  796. emsp430X.c \
  797. emsp430elf.c \
  798. ends32belf.c \
  799. ends32belf16m.c \
  800. ends32belf_linux.c \
  801. ends32elf.c \
  802. ends32elf16m.c \
  803. ends32elf_linux.c \
  804. enios2elf.c \
  805. enios2linux.c \
  806. ens32knbsd.c \
  807. epc532macha.c \
  808. epdp11.c \
  809. epjelf.c \
  810. epjlelf.c \
  811. eppcmacos.c \
  812. epruelf.c \
  813. escore3_elf.c \
  814. escore7_elf.c \
  815. esh.c \
  816. eshelf.c \
  817. eshelf_fd.c \
  818. eshelf_linux.c \
  819. eshelf_nbsd.c \
  820. eshelf_nto.c \
  821. eshelf_uclinux.c \
  822. eshelf_vxworks.c \
  823. eshl.c \
  824. eshlelf.c \
  825. eshlelf_fd.c \
  826. eshlelf_linux.c \
  827. eshlelf_nbsd.c \
  828. eshlelf_nto.c \
  829. eshlelf_vxworks.c \
  830. eshpe.c \
  831. etic30coff.c \
  832. etic3xcoff.c \
  833. etic3xcoff_onchip.c \
  834. etic4xcoff.c \
  835. etic54xcoff.c \
  836. ev850.c \
  837. ev850_rh850.c \
  838. evanilla.c \
  839. evaxnbsd.c \
  840. exgateelf.c \
  841. ez80.c \
  842. ez8001.c \
  843. ez8002.c
  844. ALL_EMULATIONS = $(ALL_EMULATION_SOURCES:.c=.@OBJEXT@)
  845. ALL_64_EMULATION_SOURCES = \
  846. eaarch64cloudabi.c \
  847. eaarch64cloudabib.c \
  848. eaarch64elf.c \
  849. eaarch64elf32.c \
  850. eaarch64elf32b.c \
  851. eaarch64elfb.c \
  852. eaarch64fbsd.c \
  853. eaarch64fbsdb.c \
  854. eaarch64haiku.c \
  855. eaarch64linux.c \
  856. eaarch64linux32.c \
  857. eaarch64linux32b.c \
  858. eaarch64linuxb.c \
  859. eelf32_x86_64.c \
  860. eelf32b4300.c \
  861. eelf32bmip.c \
  862. eelf32bmipn32.c \
  863. eelf32briscv.c \
  864. eelf32briscv_ilp32.c \
  865. eelf32briscv_ilp32f.c \
  866. eelf32bsmip.c \
  867. eelf32btsmip.c \
  868. eelf32btsmip_fbsd.c \
  869. eelf32btsmipn32.c \
  870. eelf32btsmipn32_fbsd.c \
  871. eelf32ebmip.c \
  872. eelf32ebmipvxworks.c \
  873. eelf32elmip.c \
  874. eelf32elmipvxworks.c \
  875. eelf32l4300.c \
  876. eelf32lmip.c \
  877. eelf32loongarch.c \
  878. eelf32lr5900.c \
  879. eelf32lr5900n32.c \
  880. eelf32lriscv.c \
  881. eelf32lriscv_ilp32.c \
  882. eelf32lriscv_ilp32f.c \
  883. eelf32lsmip.c \
  884. eelf32ltsmip.c \
  885. eelf32ltsmip_fbsd.c \
  886. eelf32ltsmipn32.c \
  887. eelf32ltsmipn32_fbsd.c \
  888. eelf32mipswindiss.c \
  889. eelf64_aix.c \
  890. eelf64_ia64.c \
  891. eelf64_ia64_fbsd.c \
  892. eelf64_ia64_vms.c \
  893. eelf64_s390.c \
  894. eelf64_sparc.c \
  895. eelf64_sparc_fbsd.c \
  896. eelf64_sparc_sol2.c \
  897. eelf64alpha.c \
  898. eelf64alpha_fbsd.c \
  899. eelf64alpha_nbsd.c \
  900. eelf64bmip.c \
  901. eelf64bpf.c \
  902. eelf64briscv.c \
  903. eelf64briscv_lp64.c \
  904. eelf64briscv_lp64f.c \
  905. eelf64btsmip.c \
  906. eelf64btsmip_fbsd.c \
  907. eelf64hppa.c \
  908. eelf64loongarch.c \
  909. eelf64lppc.c \
  910. eelf64lppc_fbsd.c \
  911. eelf64lriscv.c \
  912. eelf64lriscv_lp64.c \
  913. eelf64lriscv_lp64f.c \
  914. eelf64ltsmip.c \
  915. eelf64ltsmip_fbsd.c \
  916. eelf64mmix.c \
  917. eelf64ppc.c \
  918. eelf64ppc_fbsd.c \
  919. eelf64rdos.c \
  920. eelf64tilegx.c \
  921. eelf64tilegx_be.c \
  922. eelf_mipsel_haiku.c \
  923. eelf_x86_64.c \
  924. eelf_x86_64_cloudabi.c \
  925. eelf_x86_64_fbsd.c \
  926. eelf_x86_64_haiku.c \
  927. eelf_x86_64_sol2.c \
  928. ehppa64linux.c \
  929. ei386pep.c \
  930. emmo.c
  931. ALL_64_EMULATIONS = $(ALL_64_EMULATION_SOURCES:.c=.@OBJEXT@)
  932. ALL_EMUL_EXTRA_OFILES = \
  933. deffilep.@OBJEXT@ \
  934. pe-dll.@OBJEXT@ \
  935. ldelf.@OBJEXT@ \
  936. ldelfgen.@OBJEXT@
  937. ALL_64_EMUL_EXTRA_OFILES = \
  938. pep-dll.@OBJEXT@
  939. CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
  940. ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
  941. mri.c ldcref.c pe-dll.c pep-dll.c ldlex-wrapper.c \
  942. plugin.c ldbuildid.c ldelf.c ldelfgen.c
  943. HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
  944. ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
  945. ldwrite.h mri.h deffile.h pe-dll.h pep-dll.h \
  946. elf-hints-local.h plugin.h ldbuildid.h ldelf.h ldelfgen.h
  947. GENERATED_CFILES = ldgram.c ldlex.c deffilep.c
  948. GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h
  949. # Require an early dependency on the generated headers, as the dependency
  950. # tracking will not cause them to be built beforehand.
  951. BUILT_SOURCES = $(GENERATED_HFILES)
  952. OFILES = ldgram.@OBJEXT@ ldlex-wrapper.@OBJEXT@ lexsup.@OBJEXT@ ldlang.@OBJEXT@ \
  953. mri.@OBJEXT@ ldctor.@OBJEXT@ ldmain.@OBJEXT@ plugin.@OBJEXT@ \
  954. ldwrite.@OBJEXT@ ldexp.@OBJEXT@ ldemul.@OBJEXT@ ldver.@OBJEXT@ ldmisc.@OBJEXT@ \
  955. ldfile.@OBJEXT@ ldcref.@OBJEXT@ ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES} \
  956. ldbuildid.@OBJEXT@
  957. STAGESTUFF = *.@OBJEXT@ ldscripts/* e*.c
  958. SRC_POTFILES = $(CFILES) $(HFILES)
  959. BLD_POTFILES = $(ALL_EMULATION_SOURCES) $(ALL_64_EMULATION_SOURCES)
  960. @AMDEP_FALSE@GENDEPDIR =
  961. @AMDEP_TRUE@GENDEPDIR = $(DEPDIR)
  962. GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh "${srcdir}" "${libdir}" "${prefix}" "${exec_prefix}" @host@ @target@ @target_alias@ "$(GENDEPDIR)" "${LIB_PATH}" "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@" @use_sysroot@ @enable_initfini_array@
  963. GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed
  964. # We need this for automake to use YLWRAP.
  965. # Allow dependency tracking to work for these files, too.
  966. # Dependency tracking for the generated emulation files.
  967. EXTRA_ld_new_SOURCES = deffilep.y ldlex.l pep-dll.c pe-dll.c ldelf.c \
  968. ldelfgen.c $(ALL_EMULATION_SOURCES) \
  969. $(ALL_64_EMULATION_SOURCES)
  970. ld_new_SOURCES = ldgram.y ldlex-wrapper.c lexsup.c ldlang.c mri.c ldctor.c ldmain.c \
  971. ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c plugin.c \
  972. ldbuildid.c
  973. ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) \
  974. $(BFDLIB) $(LIBCTF) $(LIBIBERTY) $(LIBINTL_DEP)
  975. ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBCTF) $(LIBIBERTY) $(LIBINTL) $(ZLIB)
  976. #
  977. #
  978. # Build a dummy plugin using libtool.
  979. #
  980. noinst_LTLIBRARIES = libldtestplug.la libldtestplug2.la \
  981. libldtestplug3.la libldtestplug4.la
  982. libldtestplug_la_SOURCES = testplug.c
  983. libldtestplug_la_CFLAGS = -g -O2
  984. libldtestplug_la_LDFLAGS = -no-undefined -rpath /nowhere
  985. libldtestplug2_la_SOURCES = testplug2.c
  986. libldtestplug2_la_CFLAGS = -g -O2
  987. libldtestplug2_la_LDFLAGS = -no-undefined -rpath /nowhere
  988. libldtestplug3_la_SOURCES = testplug3.c
  989. libldtestplug3_la_CFLAGS = -g -O2
  990. libldtestplug3_la_LDFLAGS = -no-undefined -rpath /nowhere
  991. libldtestplug4_la_SOURCES = testplug4.c
  992. libldtestplug4_la_CFLAGS = -g -O2
  993. libldtestplug4_la_LDFLAGS = -no-undefined -rpath /nowhere
  994. bfdplugindir = $(libdir)/bfd-plugins
  995. bfdplugin_LTLIBRARIES = libdep.la
  996. libdep_la_SOURCES = libdep_plugin.c
  997. libdep_la_LDFLAGS = -no-undefined -rpath /nowhere -module -avoid-version
  998. libdep_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  999. --tag=disable-static \
  1000. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  1001. $(libdep_la_LDFLAGS) $(LDFLAGS) -o $@
  1002. MAINTAINERCLEANFILES = configdoc.texi ld.1 ld.info
  1003. # We want to reconfigure if configure.host or configure.tgt changes.
  1004. # development.sh is used to determine -Werror default.
  1005. CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host $(srcdir)/configure.tgt \
  1006. $(BFDDIR)/development.sh
  1007. EXTRA_DEJAGNU_SITE_CONFIG = development.exp enablings.exp
  1008. MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \
  1009. ldemul-list.h crtbegin.@OBJEXT@ crtend.@OBJEXT@ ld.log ld.sum
  1010. CLEANFILES = dep.sed DEP DEPA DEP1 DEP2 spu_ovl.s spu_ovl.@OBJEXT@ spu_icache.s spu_icache.@OBJEXT@
  1011. # Stuff that should be included in a distribution. The diststuff
  1012. # target is run by the taz target in ../Makefile.in.
  1013. EXTRA_DIST = ldgram.c ldgram.h ldlex.c emultempl/spu_ovl.@OBJEXT@_c \
  1014. emultempl/spu_icache.@OBJEXT@_c deffilep.c deffilep.h $(man_MANS)
  1015. DISTCLEANFILES = site.exp development.exp enablings.exp site.bak stringify.sed
  1016. all: $(BUILT_SOURCES) config.h
  1017. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  1018. .SUFFIXES:
  1019. .SUFFIXES: .c .dvi .l .lo .o .obj .ps .y
  1020. am--refresh: Makefile
  1021. @:
  1022. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  1023. @for dep in $?; do \
  1024. case '$(am__configure_deps)' in \
  1025. *$$dep*) \
  1026. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  1027. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  1028. && exit 0; \
  1029. exit 1;; \
  1030. esac; \
  1031. done; \
  1032. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  1033. $(am__cd) $(top_srcdir) && \
  1034. $(AUTOMAKE) --foreign Makefile
  1035. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  1036. @case '$?' in \
  1037. *config.status*) \
  1038. echo ' $(SHELL) ./config.status'; \
  1039. $(SHELL) ./config.status;; \
  1040. *) \
  1041. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  1042. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  1043. esac;
  1044. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  1045. $(SHELL) ./config.status --recheck
  1046. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  1047. $(am__cd) $(srcdir) && $(AUTOCONF)
  1048. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  1049. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  1050. $(am__aclocal_m4_deps):
  1051. config.h: stamp-h1
  1052. @test -f $@ || rm -f stamp-h1
  1053. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  1054. stamp-h1: $(srcdir)/config.in $(top_builddir)/config.status
  1055. @rm -f stamp-h1
  1056. cd $(top_builddir) && $(SHELL) ./config.status config.h
  1057. $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  1058. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  1059. rm -f stamp-h1
  1060. touch $@
  1061. distclean-hdr:
  1062. -rm -f config.h stamp-h1
  1063. po/Makefile.in: $(top_builddir)/config.status $(top_srcdir)/po/Make-in
  1064. cd $(top_builddir) && $(SHELL) ./config.status $@
  1065. install-bfdpluginLTLIBRARIES: $(bfdplugin_LTLIBRARIES)
  1066. @$(NORMAL_INSTALL)
  1067. @list='$(bfdplugin_LTLIBRARIES)'; test -n "$(bfdplugindir)" || list=; \
  1068. list2=; for p in $$list; do \
  1069. if test -f $$p; then \
  1070. list2="$$list2 $$p"; \
  1071. else :; fi; \
  1072. done; \
  1073. test -z "$$list2" || { \
  1074. echo " $(MKDIR_P) '$(DESTDIR)$(bfdplugindir)'"; \
  1075. $(MKDIR_P) "$(DESTDIR)$(bfdplugindir)" || exit 1; \
  1076. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(bfdplugindir)'"; \
  1077. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(bfdplugindir)"; \
  1078. }
  1079. uninstall-bfdpluginLTLIBRARIES:
  1080. @$(NORMAL_UNINSTALL)
  1081. @list='$(bfdplugin_LTLIBRARIES)'; test -n "$(bfdplugindir)" || list=; \
  1082. for p in $$list; do \
  1083. $(am__strip_dir) \
  1084. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(bfdplugindir)/$$f'"; \
  1085. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(bfdplugindir)/$$f"; \
  1086. done
  1087. clean-bfdpluginLTLIBRARIES:
  1088. -test -z "$(bfdplugin_LTLIBRARIES)" || rm -f $(bfdplugin_LTLIBRARIES)
  1089. @list='$(bfdplugin_LTLIBRARIES)'; \
  1090. locs=`for p in $$list; do echo $$p; done | \
  1091. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  1092. sort -u`; \
  1093. test -z "$$locs" || { \
  1094. echo rm -f $${locs}; \
  1095. rm -f $${locs}; \
  1096. }
  1097. clean-noinstLTLIBRARIES:
  1098. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  1099. @list='$(noinst_LTLIBRARIES)'; \
  1100. locs=`for p in $$list; do echo $$p; done | \
  1101. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  1102. sort -u`; \
  1103. test -z "$$locs" || { \
  1104. echo rm -f $${locs}; \
  1105. rm -f $${locs}; \
  1106. }
  1107. libdep.la: $(libdep_la_OBJECTS) $(libdep_la_DEPENDENCIES) $(EXTRA_libdep_la_DEPENDENCIES)
  1108. $(AM_V_GEN)$(libdep_la_LINK) -rpath $(bfdplugindir) $(libdep_la_OBJECTS) $(libdep_la_LIBADD) $(LIBS)
  1109. libldtestplug.la: $(libldtestplug_la_OBJECTS) $(libldtestplug_la_DEPENDENCIES) $(EXTRA_libldtestplug_la_DEPENDENCIES)
  1110. $(AM_V_CCLD)$(libldtestplug_la_LINK) $(libldtestplug_la_OBJECTS) $(libldtestplug_la_LIBADD) $(LIBS)
  1111. libldtestplug2.la: $(libldtestplug2_la_OBJECTS) $(libldtestplug2_la_DEPENDENCIES) $(EXTRA_libldtestplug2_la_DEPENDENCIES)
  1112. $(AM_V_CCLD)$(libldtestplug2_la_LINK) $(libldtestplug2_la_OBJECTS) $(libldtestplug2_la_LIBADD) $(LIBS)
  1113. libldtestplug3.la: $(libldtestplug3_la_OBJECTS) $(libldtestplug3_la_DEPENDENCIES) $(EXTRA_libldtestplug3_la_DEPENDENCIES)
  1114. $(AM_V_CCLD)$(libldtestplug3_la_LINK) $(libldtestplug3_la_OBJECTS) $(libldtestplug3_la_LIBADD) $(LIBS)
  1115. libldtestplug4.la: $(libldtestplug4_la_OBJECTS) $(libldtestplug4_la_DEPENDENCIES) $(EXTRA_libldtestplug4_la_DEPENDENCIES)
  1116. $(AM_V_CCLD)$(libldtestplug4_la_LINK) $(libldtestplug4_la_OBJECTS) $(libldtestplug4_la_LIBADD) $(LIBS)
  1117. install-binPROGRAMS: $(bin_PROGRAMS)
  1118. @$(NORMAL_INSTALL)
  1119. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  1120. if test -n "$$list"; then \
  1121. echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
  1122. $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
  1123. fi; \
  1124. for p in $$list; do echo "$$p $$p"; done | \
  1125. sed 's/$(EXEEXT)$$//' | \
  1126. while read p p1; do if test -f $$p \
  1127. || test -f $$p1 \
  1128. ; then echo "$$p"; echo "$$p"; else :; fi; \
  1129. done | \
  1130. sed -e 'p;s,.*/,,;n;h' \
  1131. -e 's|.*|.|' \
  1132. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  1133. sed 'N;N;N;s,\n, ,g' | \
  1134. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  1135. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  1136. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  1137. else { print "f", $$3 "/" $$4, $$1; } } \
  1138. END { for (d in files) print "f", d, files[d] }' | \
  1139. while read type dir files; do \
  1140. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  1141. test -z "$$files" || { \
  1142. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  1143. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  1144. } \
  1145. ; done
  1146. uninstall-binPROGRAMS:
  1147. @$(NORMAL_UNINSTALL)
  1148. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  1149. files=`for p in $$list; do echo "$$p"; done | \
  1150. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  1151. -e 's/$$/$(EXEEXT)/' \
  1152. `; \
  1153. test -n "$$list" || exit 0; \
  1154. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  1155. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  1156. clean-binPROGRAMS:
  1157. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  1158. echo " rm -f" $$list; \
  1159. rm -f $$list || exit $$?; \
  1160. test -n "$(EXEEXT)" || exit 0; \
  1161. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  1162. echo " rm -f" $$list; \
  1163. rm -f $$list
  1164. ldgram.h: ldgram.c
  1165. @if test ! -f $@; then rm -f ldgram.c; else :; fi
  1166. @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) ldgram.c; else :; fi
  1167. deffilep.h: deffilep.c
  1168. @if test ! -f $@; then rm -f deffilep.c; else :; fi
  1169. @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) deffilep.c; else :; fi
  1170. ld-new$(EXEEXT): $(ld_new_OBJECTS) $(ld_new_DEPENDENCIES) $(EXTRA_ld_new_DEPENDENCIES)
  1171. @rm -f ld-new$(EXEEXT)
  1172. $(AM_V_CCLD)$(LINK) $(ld_new_OBJECTS) $(ld_new_LDADD) $(LIBS)
  1173. mostlyclean-compile:
  1174. -rm -f *.$(OBJEXT)
  1175. distclean-compile:
  1176. -rm -f *.tab.c
  1177. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deffilep.Po@am__quote@
  1178. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabi.Po@am__quote@
  1179. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabib.Po@am__quote@
  1180. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf.Po@am__quote@
  1181. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32.Po@am__quote@
  1182. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32b.Po@am__quote@
  1183. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elfb.Po@am__quote@
  1184. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsd.Po@am__quote@
  1185. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsdb.Po@am__quote@
  1186. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64haiku.Po@am__quote@
  1187. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux.Po@am__quote@
  1188. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32.Po@am__quote@
  1189. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32b.Po@am__quote@
  1190. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linuxb.Po@am__quote@
  1191. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5ppc.Po@am__quote@
  1192. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5rs6.Po@am__quote@
  1193. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixppc.Po@am__quote@
  1194. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixrs6.Po@am__quote@
  1195. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealpha.Po@am__quote@
  1196. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealphavms.Po@am__quote@
  1197. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcelf.Po@am__quote@
  1198. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux.Po@am__quote@
  1199. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux_nps.Po@am__quote@
  1200. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elf.Po@am__quote@
  1201. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elfx.Po@am__quote@
  1202. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earm_wince_pe.Po@am__quote@
  1203. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf.Po@am__quote@
  1204. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fbsd.Po@am__quote@
  1205. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fuchsia.Po@am__quote@
  1206. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_haiku.Po@am__quote@
  1207. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux.Po@am__quote@
  1208. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_eabi.Po@am__quote@
  1209. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_fdpiceabi.Po@am__quote@
  1210. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nacl.Po@am__quote@
  1211. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nbsd.Po@am__quote@
  1212. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_phoenix.Po@am__quote@
  1213. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_vxworks.Po@am__quote@
  1214. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb.Po@am__quote@
  1215. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fbsd.Po@am__quote@
  1216. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fuchsia.Po@am__quote@
  1217. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux.Po@am__quote@
  1218. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_eabi.Po@am__quote@
  1219. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_fdpiceabi.Po@am__quote@
  1220. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nacl.Po@am__quote@
  1221. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nbsd.Po@am__quote@
  1222. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmnto.Po@am__quote@
  1223. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmpe.Po@am__quote@
  1224. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr1.Po@am__quote@
  1225. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr2.Po@am__quote@
  1226. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr25.Po@am__quote@
  1227. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr3.Po@am__quote@
  1228. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr31.Po@am__quote@
  1229. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr35.Po@am__quote@
  1230. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr4.Po@am__quote@
  1231. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr5.Po@am__quote@
  1232. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr51.Po@am__quote@
  1233. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr6.Po@am__quote@
  1234. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrtiny.Po@am__quote@
  1235. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega1.Po@am__quote@
  1236. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega2.Po@am__quote@
  1237. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega3.Po@am__quote@
  1238. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega4.Po@am__quote@
  1239. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega5.Po@am__quote@
  1240. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega6.Po@am__quote@
  1241. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega7.Po@am__quote@
  1242. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrisaout.Po@am__quote@
  1243. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecriself.Po@am__quote@
  1244. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrislinux.Po@am__quote@
  1245. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf.Po@am__quote@
  1246. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf_linux.Po@am__quote@
  1247. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed10velf.Po@am__quote@
  1248. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_e.Po@am__quote@
  1249. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_o.Po@am__quote@
  1250. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30velf.Po@am__quote@
  1251. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_dlx.Po@am__quote@
  1252. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc.Po@am__quote@
  1253. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_sol2.Po@am__quote@
  1254. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_vxworks.Po@am__quote@
  1255. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_spu.Po@am__quote@
  1256. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_be.Po@am__quote@
  1257. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_be.Po@am__quote@
  1258. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_le.Po@am__quote@
  1259. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_le.Po@am__quote@
  1260. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_be.Po@am__quote@
  1261. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_le.Po@am__quote@
  1262. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_x86_64.Po@am__quote@
  1263. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32am33lin.Po@am__quote@
  1264. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32b4300.Po@am__quote@
  1265. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfin.Po@am__quote@
  1266. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfinfd.Po@am__quote@
  1267. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmip.Po@am__quote@
  1268. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmipn32.Po@am__quote@
  1269. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv.Po@am__quote@
  1270. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv_ilp32.Po@am__quote@
  1271. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv_ilp32f.Po@am__quote@
  1272. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bsmip.Po@am__quote@
  1273. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip.Po@am__quote@
  1274. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip_fbsd.Po@am__quote@
  1275. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32.Po@am__quote@
  1276. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32_fbsd.Po@am__quote@
  1277. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32cr16.Po@am__quote@
  1278. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32crx.Po@am__quote@
  1279. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmip.Po@am__quote@
  1280. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmipvxworks.Po@am__quote@
  1281. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmip.Po@am__quote@
  1282. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmipvxworks.Po@am__quote@
  1283. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany.Po@am__quote@
  1284. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany_4x4.Po@am__quote@
  1285. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32fr30.Po@am__quote@
  1286. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frv.Po@am__quote@
  1287. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frvfd.Po@am__quote@
  1288. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ft32.Po@am__quote@
  1289. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ip2k.Po@am__quote@
  1290. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq10.Po@am__quote@
  1291. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq2000.Po@am__quote@
  1292. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32l4300.Po@am__quote@
  1293. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32.Po@am__quote@
  1294. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32fd.Po@am__quote@
  1295. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lmip.Po@am__quote@
  1296. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32loongarch.Po@am__quote@
  1297. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppc.Po@am__quote@
  1298. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppclinux.Po@am__quote@
  1299. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcnto.Po@am__quote@
  1300. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcsim.Po@am__quote@
  1301. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900.Po@am__quote@
  1302. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900n32.Po@am__quote@
  1303. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv.Po@am__quote@
  1304. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32.Po@am__quote@
  1305. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32f.Po@am__quote@
  1306. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lsmip.Po@am__quote@
  1307. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip.Po@am__quote@
  1308. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip_fbsd.Po@am__quote@
  1309. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32.Po@am__quote@
  1310. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32_fbsd.Po@am__quote@
  1311. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32m32c.Po@am__quote@
  1312. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mb_linux.Po@am__quote@
  1313. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mbel_linux.Po@am__quote@
  1314. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mcore.Po@am__quote@
  1315. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mep.Po@am__quote@
  1316. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32metag.Po@am__quote@
  1317. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblaze.Po@am__quote@
  1318. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblazeel.Po@am__quote@
  1319. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mipswindiss.Po@am__quote@
  1320. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32moxie.Po@am__quote@
  1321. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mt.Po@am__quote@
  1322. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k.Po@am__quote@
  1323. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k_linux.Po@am__quote@
  1324. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc.Po@am__quote@
  1325. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc_fbsd.Po@am__quote@
  1326. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppchaiku.Po@am__quote@
  1327. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppclinux.Po@am__quote@
  1328. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcnto.Po@am__quote@
  1329. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcsim.Po@am__quote@
  1330. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcvxworks.Po@am__quote@
  1331. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcwindiss.Po@am__quote@
  1332. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rl78.Po@am__quote@
  1333. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rx.Po@am__quote@
  1334. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rx_linux.Po@am__quote@
  1335. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx.Po@am__quote@
  1336. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx_be.Po@am__quote@
  1337. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilepro.Po@am__quote@
  1338. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32vax.Po@am__quote@
  1339. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32visium.Po@am__quote@
  1340. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16x.Po@am__quote@
  1341. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xl.Po@am__quote@
  1342. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xs.Po@am__quote@
  1343. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xstormy16.Po@am__quote@
  1344. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xtensa.Po@am__quote@
  1345. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32z80.Po@am__quote@
  1346. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_aix.Po@am__quote@
  1347. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64.Po@am__quote@
  1348. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_fbsd.Po@am__quote@
  1349. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_vms.Po@am__quote@
  1350. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_s390.Po@am__quote@
  1351. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc.Po@am__quote@
  1352. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_fbsd.Po@am__quote@
  1353. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_sol2.Po@am__quote@
  1354. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha.Po@am__quote@
  1355. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_fbsd.Po@am__quote@
  1356. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_nbsd.Po@am__quote@
  1357. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bmip.Po@am__quote@
  1358. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bpf.Po@am__quote@
  1359. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv.Po@am__quote@
  1360. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv_lp64.Po@am__quote@
  1361. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv_lp64f.Po@am__quote@
  1362. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip.Po@am__quote@
  1363. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip_fbsd.Po@am__quote@
  1364. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64hppa.Po@am__quote@
  1365. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64loongarch.Po@am__quote@
  1366. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lppc.Po@am__quote@
  1367. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lppc_fbsd.Po@am__quote@
  1368. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv.Po@am__quote@
  1369. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64.Po@am__quote@
  1370. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64f.Po@am__quote@
  1371. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip.Po@am__quote@
  1372. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip_fbsd.Po@am__quote@
  1373. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64mmix.Po@am__quote@
  1374. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc.Po@am__quote@
  1375. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc_fbsd.Po@am__quote@
  1376. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64rdos.Po@am__quote@
  1377. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx.Po@am__quote@
  1378. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Po@am__quote@
  1379. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Po@am__quote@
  1380. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Po@am__quote@
  1381. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Po@am__quote@
  1382. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Po@am__quote@
  1383. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_ldso.Po@am__quote@
  1384. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_sol2.Po@am__quote@
  1385. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_vxworks.Po@am__quote@
  1386. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_iamcu.Po@am__quote@
  1387. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Po@am__quote@
  1388. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_s390.Po@am__quote@
  1389. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Po@am__quote@
  1390. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Po@am__quote@
  1391. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Po@am__quote@
  1392. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Po@am__quote@
  1393. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_sol2.Po@am__quote@
  1394. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf.Po@am__quote@
  1395. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf_linux.Po@am__quote@
  1396. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf.Po@am__quote@
  1397. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf_linux.Po@am__quote@
  1398. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300hnelf.Po@am__quote@
  1399. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self.Po@am__quote@
  1400. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self_linux.Po@am__quote@
  1401. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300snelf.Po@am__quote@
  1402. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf.Po@am__quote@
  1403. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf_linux.Po@am__quote@
  1404. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxnelf.Po@am__quote@
  1405. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppa64linux.Po@am__quote@
  1406. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaelf.Po@am__quote@
  1407. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppalinux.Po@am__quote@
  1408. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppanbsd.Po@am__quote@
  1409. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaobsd.Po@am__quote@
  1410. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386aout.Po@am__quote@
  1411. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386beos.Po@am__quote@
  1412. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386bsd.Po@am__quote@
  1413. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386go32.Po@am__quote@
  1414. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386lynx.Po@am__quote@
  1415. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386moss.Po@am__quote@
  1416. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386msdos.Po@am__quote@
  1417. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386nto.Po@am__quote@
  1418. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe.Po@am__quote@
  1419. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe_posix.Po@am__quote@
  1420. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pep.Po@am__quote@
  1421. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf.Po@am__quote@
  1422. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf_linux.Po@am__quote@
  1423. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf.Po@am__quote@
  1424. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf_linux.Po@am__quote@
  1425. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elf.Po@am__quote@
  1426. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elfb.Po@am__quote@
  1427. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elf.Po@am__quote@
  1428. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elfb.Po@am__quote@
  1429. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelf.Po@am__quote@
  1430. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelfnbsd.Po@am__quote@
  1431. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em9s12zelf.Po@am__quote@
  1432. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emcorepe.Po@am__quote@
  1433. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emmo.Po@am__quote@
  1434. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10200.Po@am__quote@
  1435. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10300.Po@am__quote@
  1436. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emoxiebox.Po@am__quote@
  1437. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430X.Po@am__quote@
  1438. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430elf.Po@am__quote@
  1439. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf.Po@am__quote@
  1440. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf16m.Po@am__quote@
  1441. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf_linux.Po@am__quote@
  1442. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf.Po@am__quote@
  1443. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf16m.Po@am__quote@
  1444. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf_linux.Po@am__quote@
  1445. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2elf.Po@am__quote@
  1446. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2linux.Po@am__quote@
  1447. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ens32knbsd.Po@am__quote@
  1448. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epc532macha.Po@am__quote@
  1449. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epdp11.Po@am__quote@
  1450. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjelf.Po@am__quote@
  1451. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjlelf.Po@am__quote@
  1452. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppcmacos.Po@am__quote@
  1453. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epruelf.Po@am__quote@
  1454. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore3_elf.Po@am__quote@
  1455. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore7_elf.Po@am__quote@
  1456. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esh.Po@am__quote@
  1457. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf.Po@am__quote@
  1458. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_fd.Po@am__quote@
  1459. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_linux.Po@am__quote@
  1460. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nbsd.Po@am__quote@
  1461. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nto.Po@am__quote@
  1462. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_uclinux.Po@am__quote@
  1463. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_vxworks.Po@am__quote@
  1464. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshl.Po@am__quote@
  1465. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf.Po@am__quote@
  1466. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_fd.Po@am__quote@
  1467. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_linux.Po@am__quote@
  1468. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nbsd.Po@am__quote@
  1469. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nto.Po@am__quote@
  1470. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_vxworks.Po@am__quote@
  1471. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshpe.Po@am__quote@
  1472. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic30coff.Po@am__quote@
  1473. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff.Po@am__quote@
  1474. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff_onchip.Po@am__quote@
  1475. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic4xcoff.Po@am__quote@
  1476. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic54xcoff.Po@am__quote@
  1477. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850.Po@am__quote@
  1478. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850_rh850.Po@am__quote@
  1479. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evanilla.Po@am__quote@
  1480. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evaxnbsd.Po@am__quote@
  1481. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exgateelf.Po@am__quote@
  1482. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez80.Po@am__quote@
  1483. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8001.Po@am__quote@
  1484. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8002.Po@am__quote@
  1485. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldbuildid.Po@am__quote@
  1486. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldcref.Po@am__quote@
  1487. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldctor.Po@am__quote@
  1488. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldelf.Po@am__quote@
  1489. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldelfgen.Po@am__quote@
  1490. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldemul.Po@am__quote@
  1491. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldexp.Po@am__quote@
  1492. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldfile.Po@am__quote@
  1493. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldgram.Po@am__quote@
  1494. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldlang.Po@am__quote@
  1495. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldlex-wrapper.Po@am__quote@
  1496. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldlex.Po@am__quote@
  1497. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldmain.Po@am__quote@
  1498. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldmisc.Po@am__quote@
  1499. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldver.Po@am__quote@
  1500. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ldwrite.Po@am__quote@
  1501. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lexsup.Po@am__quote@
  1502. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdep_plugin.Plo@am__quote@
  1503. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libldtestplug2_la-testplug2.Plo@am__quote@
  1504. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libldtestplug3_la-testplug3.Plo@am__quote@
  1505. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libldtestplug4_la-testplug4.Plo@am__quote@
  1506. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libldtestplug_la-testplug.Plo@am__quote@
  1507. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mri.Po@am__quote@
  1508. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-dll.Po@am__quote@
  1509. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pep-dll.Po@am__quote@
  1510. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plugin.Po@am__quote@
  1511. .c.o:
  1512. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  1513. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  1514. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  1515. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1516. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  1517. .c.obj:
  1518. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  1519. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  1520. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  1521. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1522. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  1523. .c.lo:
  1524. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  1525. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  1526. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  1527. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1528. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  1529. libldtestplug_la-testplug.lo: testplug.c
  1530. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug_la_CFLAGS) $(CFLAGS) -MT libldtestplug_la-testplug.lo -MD -MP -MF $(DEPDIR)/libldtestplug_la-testplug.Tpo -c -o libldtestplug_la-testplug.lo `test -f 'testplug.c' || echo '$(srcdir)/'`testplug.c
  1531. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libldtestplug_la-testplug.Tpo $(DEPDIR)/libldtestplug_la-testplug.Plo
  1532. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='testplug.c' object='libldtestplug_la-testplug.lo' libtool=yes @AMDEPBACKSLASH@
  1533. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1534. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug_la_CFLAGS) $(CFLAGS) -c -o libldtestplug_la-testplug.lo `test -f 'testplug.c' || echo '$(srcdir)/'`testplug.c
  1535. libldtestplug2_la-testplug2.lo: testplug2.c
  1536. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug2_la_CFLAGS) $(CFLAGS) -MT libldtestplug2_la-testplug2.lo -MD -MP -MF $(DEPDIR)/libldtestplug2_la-testplug2.Tpo -c -o libldtestplug2_la-testplug2.lo `test -f 'testplug2.c' || echo '$(srcdir)/'`testplug2.c
  1537. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libldtestplug2_la-testplug2.Tpo $(DEPDIR)/libldtestplug2_la-testplug2.Plo
  1538. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='testplug2.c' object='libldtestplug2_la-testplug2.lo' libtool=yes @AMDEPBACKSLASH@
  1539. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1540. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug2_la_CFLAGS) $(CFLAGS) -c -o libldtestplug2_la-testplug2.lo `test -f 'testplug2.c' || echo '$(srcdir)/'`testplug2.c
  1541. libldtestplug3_la-testplug3.lo: testplug3.c
  1542. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug3_la_CFLAGS) $(CFLAGS) -MT libldtestplug3_la-testplug3.lo -MD -MP -MF $(DEPDIR)/libldtestplug3_la-testplug3.Tpo -c -o libldtestplug3_la-testplug3.lo `test -f 'testplug3.c' || echo '$(srcdir)/'`testplug3.c
  1543. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libldtestplug3_la-testplug3.Tpo $(DEPDIR)/libldtestplug3_la-testplug3.Plo
  1544. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='testplug3.c' object='libldtestplug3_la-testplug3.lo' libtool=yes @AMDEPBACKSLASH@
  1545. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1546. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug3_la_CFLAGS) $(CFLAGS) -c -o libldtestplug3_la-testplug3.lo `test -f 'testplug3.c' || echo '$(srcdir)/'`testplug3.c
  1547. libldtestplug4_la-testplug4.lo: testplug4.c
  1548. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug4_la_CFLAGS) $(CFLAGS) -MT libldtestplug4_la-testplug4.lo -MD -MP -MF $(DEPDIR)/libldtestplug4_la-testplug4.Tpo -c -o libldtestplug4_la-testplug4.lo `test -f 'testplug4.c' || echo '$(srcdir)/'`testplug4.c
  1549. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libldtestplug4_la-testplug4.Tpo $(DEPDIR)/libldtestplug4_la-testplug4.Plo
  1550. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='testplug4.c' object='libldtestplug4_la-testplug4.lo' libtool=yes @AMDEPBACKSLASH@
  1551. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1552. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libldtestplug4_la_CFLAGS) $(CFLAGS) -c -o libldtestplug4_la-testplug4.lo `test -f 'testplug4.c' || echo '$(srcdir)/'`testplug4.c
  1553. .l.c:
  1554. $(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE)
  1555. .y.c:
  1556. $(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h `echo $@ | $(am__yacc_c2h)` y.output $*.output -- $(YACCCOMPILE)
  1557. mostlyclean-libtool:
  1558. -rm -f *.lo
  1559. clean-libtool:
  1560. -rm -rf .libs _libs
  1561. distclean-libtool:
  1562. -rm -f libtool config.lt
  1563. ld.info: ld.texi $(ld_TEXINFOS)
  1564. $(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
  1565. rm -rf $$backupdir && mkdir $$backupdir && \
  1566. if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
  1567. for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
  1568. if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
  1569. done; \
  1570. else :; fi && \
  1571. if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
  1572. -o $@ `test -f 'ld.texi' || echo '$(srcdir)/'`ld.texi; \
  1573. then \
  1574. rc=0; \
  1575. else \
  1576. rc=$$?; \
  1577. $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
  1578. fi; \
  1579. rm -rf $$backupdir; exit $$rc
  1580. ld.dvi: ld.texi $(ld_TEXINFOS)
  1581. $(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1582. MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
  1583. $(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
  1584. `test -f 'ld.texi' || echo '$(srcdir)/'`ld.texi
  1585. ld.pdf: ld.texi $(ld_TEXINFOS)
  1586. $(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1587. MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
  1588. $(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
  1589. `test -f 'ld.texi' || echo '$(srcdir)/'`ld.texi
  1590. ld.html: ld.texi $(ld_TEXINFOS)
  1591. $(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
  1592. $(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
  1593. -o $(@:.html=.htp) `test -f 'ld.texi' || echo '$(srcdir)/'`ld.texi; \
  1594. then \
  1595. rm -rf $@ && mv $(@:.html=.htp) $@; \
  1596. else \
  1597. rm -rf $(@:.html=.htp); exit 1; \
  1598. fi
  1599. .dvi.ps:
  1600. $(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1601. $(DVIPS) $(AM_V_texinfo) -o $@ $<
  1602. uninstall-dvi-am:
  1603. @$(NORMAL_UNINSTALL)
  1604. @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
  1605. for p in $$list; do \
  1606. $(am__strip_dir) \
  1607. echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
  1608. rm -f "$(DESTDIR)$(dvidir)/$$f"; \
  1609. done
  1610. uninstall-html-am:
  1611. @$(NORMAL_UNINSTALL)
  1612. @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
  1613. for p in $$list; do \
  1614. $(am__strip_dir) \
  1615. echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
  1616. rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
  1617. done
  1618. uninstall-info-am:
  1619. @$(PRE_UNINSTALL)
  1620. @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
  1621. list='$(INFO_DEPS)'; \
  1622. for file in $$list; do \
  1623. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  1624. echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
  1625. if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
  1626. then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
  1627. done; \
  1628. else :; fi
  1629. @$(NORMAL_UNINSTALL)
  1630. @list='$(INFO_DEPS)'; \
  1631. for file in $$list; do \
  1632. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  1633. relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
  1634. (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
  1635. echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
  1636. rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
  1637. else :; fi); \
  1638. done
  1639. uninstall-pdf-am:
  1640. @$(NORMAL_UNINSTALL)
  1641. @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
  1642. for p in $$list; do \
  1643. $(am__strip_dir) \
  1644. echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
  1645. rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
  1646. done
  1647. uninstall-ps-am:
  1648. @$(NORMAL_UNINSTALL)
  1649. @list='$(PSS)'; test -n "$(psdir)" || list=; \
  1650. for p in $$list; do \
  1651. $(am__strip_dir) \
  1652. echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
  1653. rm -f "$(DESTDIR)$(psdir)/$$f"; \
  1654. done
  1655. dist-info: $(INFO_DEPS)
  1656. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  1657. list='$(INFO_DEPS)'; \
  1658. for base in $$list; do \
  1659. case $$base in \
  1660. $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
  1661. esac; \
  1662. if test -f $$base; then d=.; else d=$(srcdir); fi; \
  1663. base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
  1664. for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
  1665. if test -f $$file; then \
  1666. relfile=`expr "$$file" : "$$d/\(.*\)"`; \
  1667. test -f "$(distdir)/$$relfile" || \
  1668. cp -p $$file "$(distdir)/$$relfile"; \
  1669. else :; fi; \
  1670. done; \
  1671. done
  1672. mostlyclean-aminfo:
  1673. -rm -rf ld.t2d ld.t2p
  1674. clean-aminfo:
  1675. -test -z "ld.dvi ld.pdf ld.ps ld.html" \
  1676. || rm -rf ld.dvi ld.pdf ld.ps ld.html
  1677. maintainer-clean-aminfo:
  1678. @list='$(INFO_DEPS)'; for i in $$list; do \
  1679. i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
  1680. echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
  1681. rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
  1682. done
  1683. install-man1: $(man_MANS)
  1684. @$(NORMAL_INSTALL)
  1685. @list1=''; \
  1686. list2='$(man_MANS)'; \
  1687. test -n "$(man1dir)" \
  1688. && test -n "`echo $$list1$$list2`" \
  1689. || exit 0; \
  1690. echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
  1691. $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
  1692. { for i in $$list1; do echo "$$i"; done; \
  1693. if test -n "$$list2"; then \
  1694. for i in $$list2; do echo "$$i"; done \
  1695. | sed -n '/\.1[a-z]*$$/p'; \
  1696. fi; \
  1697. } | while read p; do \
  1698. if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
  1699. echo "$$d$$p"; echo "$$p"; \
  1700. done | \
  1701. sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  1702. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
  1703. sed 'N;N;s,\n, ,g' | { \
  1704. list=; while read file base inst; do \
  1705. if test "$$base" = "$$inst"; then list="$$list $$file"; else \
  1706. echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
  1707. $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
  1708. fi; \
  1709. done; \
  1710. for i in $$list; do echo "$$i"; done | $(am__base_list) | \
  1711. while read files; do \
  1712. test -z "$$files" || { \
  1713. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
  1714. $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
  1715. done; }
  1716. uninstall-man1:
  1717. @$(NORMAL_UNINSTALL)
  1718. @list=''; test -n "$(man1dir)" || exit 0; \
  1719. files=`{ for i in $$list; do echo "$$i"; done; \
  1720. l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
  1721. sed -n '/\.1[a-z]*$$/p'; \
  1722. } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
  1723. -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
  1724. dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
  1725. # This directory's subdirectories are mostly independent; you can cd
  1726. # into them and run 'make' without going through this Makefile.
  1727. # To change the values of 'make' variables: instead of editing Makefiles,
  1728. # (1) if the variable is set in 'config.status', edit 'config.status'
  1729. # (which will cause the Makefiles to be regenerated when you run 'make');
  1730. # (2) otherwise, pass the desired values on the 'make' command line.
  1731. $(am__recursive_targets):
  1732. @fail=; \
  1733. if $(am__make_keepgoing); then \
  1734. failcom='fail=yes'; \
  1735. else \
  1736. failcom='exit 1'; \
  1737. fi; \
  1738. dot_seen=no; \
  1739. target=`echo $@ | sed s/-recursive//`; \
  1740. case "$@" in \
  1741. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  1742. *) list='$(SUBDIRS)' ;; \
  1743. esac; \
  1744. for subdir in $$list; do \
  1745. echo "Making $$target in $$subdir"; \
  1746. if test "$$subdir" = "."; then \
  1747. dot_seen=yes; \
  1748. local_target="$$target-am"; \
  1749. else \
  1750. local_target="$$target"; \
  1751. fi; \
  1752. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  1753. || eval $$failcom; \
  1754. done; \
  1755. if test "$$dot_seen" = "no"; then \
  1756. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  1757. fi; test -z "$$fail"
  1758. ID: $(am__tagged_files)
  1759. $(am__define_uniq_tagged_files); mkid -fID $$unique
  1760. tags: tags-recursive
  1761. TAGS: tags
  1762. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  1763. set x; \
  1764. here=`pwd`; \
  1765. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  1766. include_option=--etags-include; \
  1767. empty_fix=.; \
  1768. else \
  1769. include_option=--include; \
  1770. empty_fix=; \
  1771. fi; \
  1772. list='$(SUBDIRS)'; for subdir in $$list; do \
  1773. if test "$$subdir" = .; then :; else \
  1774. test ! -f $$subdir/TAGS || \
  1775. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  1776. fi; \
  1777. done; \
  1778. $(am__define_uniq_tagged_files); \
  1779. shift; \
  1780. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  1781. test -n "$$unique" || unique=$$empty_fix; \
  1782. if test $$# -gt 0; then \
  1783. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1784. "$$@" $$unique; \
  1785. else \
  1786. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1787. $$unique; \
  1788. fi; \
  1789. fi
  1790. ctags: ctags-recursive
  1791. CTAGS: ctags
  1792. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  1793. $(am__define_uniq_tagged_files); \
  1794. test -z "$(CTAGS_ARGS)$$unique" \
  1795. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  1796. $$unique
  1797. GTAGS:
  1798. here=`$(am__cd) $(top_builddir) && pwd` \
  1799. && $(am__cd) $(top_srcdir) \
  1800. && gtags -i $(GTAGS_ARGS) "$$here"
  1801. cscope: cscope.files
  1802. test ! -s cscope.files \
  1803. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  1804. clean-cscope:
  1805. -rm -f cscope.files
  1806. cscope.files: clean-cscope cscopelist
  1807. cscopelist: cscopelist-recursive
  1808. cscopelist-am: $(am__tagged_files)
  1809. list='$(am__tagged_files)'; \
  1810. case "$(srcdir)" in \
  1811. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  1812. *) sdir=$(subdir)/$(srcdir) ;; \
  1813. esac; \
  1814. for i in $$list; do \
  1815. if test -f "$$i"; then \
  1816. echo "$(subdir)/$$i"; \
  1817. else \
  1818. echo "$$sdir/$$i"; \
  1819. fi; \
  1820. done >> $(top_builddir)/cscope.files
  1821. distclean-tags:
  1822. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  1823. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  1824. site.exp: Makefile $(EXTRA_DEJAGNU_SITE_CONFIG)
  1825. @echo 'Making a new site.exp file ...'
  1826. @echo '## these variables are automatically generated by make ##' >site.tmp
  1827. @echo '# Do not edit here. If you wish to override these values' >>site.tmp
  1828. @echo '# edit the last section' >>site.tmp
  1829. @echo 'set srcdir "$(srcdir)"' >>site.tmp
  1830. @echo "set objdir `pwd`" >>site.tmp
  1831. @echo 'set build_alias "$(build_alias)"' >>site.tmp
  1832. @echo 'set build_triplet $(build_triplet)' >>site.tmp
  1833. @echo 'set host_alias "$(host_alias)"' >>site.tmp
  1834. @echo 'set host_triplet $(host_triplet)' >>site.tmp
  1835. @echo 'set target_alias "$(target_alias)"' >>site.tmp
  1836. @echo 'set target_triplet $(target_triplet)' >>site.tmp
  1837. @list='$(EXTRA_DEJAGNU_SITE_CONFIG)'; for f in $$list; do \
  1838. echo "## Begin content included from file $$f. Do not modify. ##" \
  1839. && cat `test -f "$$f" || echo '$(srcdir)/'`$$f \
  1840. && echo "## End content included from file $$f. ##" \
  1841. || exit 1; \
  1842. done >> site.tmp
  1843. @echo "## End of auto-generated content; you can edit from here. ##" >> site.tmp
  1844. @if test -f site.exp; then \
  1845. sed -e '1,/^## End of auto-generated content.*##/d' site.exp >> site.tmp; \
  1846. fi
  1847. @-rm -f site.bak
  1848. @test ! -f site.exp || mv site.exp site.bak
  1849. @mv site.tmp site.exp
  1850. distclean-DEJAGNU:
  1851. -rm -f site.exp site.bak
  1852. -l='$(DEJATOOL)'; for tool in $$l; do \
  1853. rm -f $$tool.sum $$tool.log; \
  1854. done
  1855. check-am: all-am
  1856. $(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
  1857. check: $(BUILT_SOURCES)
  1858. $(MAKE) $(AM_MAKEFLAGS) check-recursive
  1859. all-am: Makefile $(INFO_DEPS) $(LTLIBRARIES) $(PROGRAMS) $(MANS) \
  1860. config.h
  1861. installdirs: installdirs-recursive
  1862. installdirs-am:
  1863. for dir in "$(DESTDIR)$(bfdplugindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)"; do \
  1864. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1865. done
  1866. install: $(BUILT_SOURCES)
  1867. $(MAKE) $(AM_MAKEFLAGS) install-recursive
  1868. install-exec: install-exec-recursive
  1869. install-data: install-data-recursive
  1870. uninstall: uninstall-recursive
  1871. install-am: all-am
  1872. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1873. installcheck: installcheck-recursive
  1874. install-strip:
  1875. if test -z '$(STRIP)'; then \
  1876. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1877. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1878. install; \
  1879. else \
  1880. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1881. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1882. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  1883. fi
  1884. mostlyclean-generic:
  1885. -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
  1886. clean-generic:
  1887. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  1888. distclean-generic:
  1889. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1890. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1891. -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  1892. maintainer-clean-generic:
  1893. @echo "This command is intended for maintainers to use"
  1894. @echo "it deletes files that may require special tools to rebuild."
  1895. -rm -f deffilep.c
  1896. -rm -f deffilep.h
  1897. -rm -f ldgram.c
  1898. -rm -f ldgram.h
  1899. -rm -f ldlex.c
  1900. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  1901. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  1902. clean: clean-recursive
  1903. clean-am: clean-aminfo clean-bfdpluginLTLIBRARIES clean-binPROGRAMS \
  1904. clean-generic clean-libtool clean-noinstLTLIBRARIES \
  1905. mostlyclean-am
  1906. distclean: distclean-recursive
  1907. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1908. -rm -rf ./$(DEPDIR)
  1909. -rm -f Makefile
  1910. distclean-am: clean-am distclean-DEJAGNU distclean-compile \
  1911. distclean-generic distclean-hdr distclean-libtool \
  1912. distclean-local distclean-tags
  1913. dvi: dvi-recursive
  1914. dvi-am: $(DVIS)
  1915. html: html-recursive
  1916. html-am: $(HTMLS) html-local
  1917. info: info-recursive
  1918. info-am: $(INFO_DEPS)
  1919. install-data-am: install-bfdpluginLTLIBRARIES install-data-local \
  1920. install-info-am install-man
  1921. install-dvi: install-dvi-recursive
  1922. install-dvi-am: $(DVIS)
  1923. @$(NORMAL_INSTALL)
  1924. @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
  1925. if test -n "$$list"; then \
  1926. echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
  1927. $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
  1928. fi; \
  1929. for p in $$list; do \
  1930. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  1931. echo "$$d$$p"; \
  1932. done | $(am__base_list) | \
  1933. while read files; do \
  1934. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
  1935. $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
  1936. done
  1937. install-exec-am: install-binPROGRAMS install-exec-local
  1938. install-html: install-html-recursive
  1939. install-html-am: $(HTMLS)
  1940. @$(NORMAL_INSTALL)
  1941. @list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
  1942. if test -n "$$list"; then \
  1943. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
  1944. $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
  1945. fi; \
  1946. for p in $$list; do \
  1947. if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
  1948. $(am__strip_dir) \
  1949. d2=$$d$$p; \
  1950. if test -d "$$d2"; then \
  1951. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
  1952. $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
  1953. echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
  1954. $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
  1955. else \
  1956. list2="$$list2 $$d2"; \
  1957. fi; \
  1958. done; \
  1959. test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
  1960. while read files; do \
  1961. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
  1962. $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
  1963. done; }
  1964. install-info: install-info-recursive
  1965. install-info-am: $(INFO_DEPS)
  1966. @$(NORMAL_INSTALL)
  1967. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  1968. list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
  1969. if test -n "$$list"; then \
  1970. echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
  1971. $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
  1972. fi; \
  1973. for file in $$list; do \
  1974. case $$file in \
  1975. $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
  1976. esac; \
  1977. if test -f $$file; then d=.; else d=$(srcdir); fi; \
  1978. file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
  1979. for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
  1980. $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
  1981. if test -f $$ifile; then \
  1982. echo "$$ifile"; \
  1983. else : ; fi; \
  1984. done; \
  1985. done | $(am__base_list) | \
  1986. while read files; do \
  1987. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
  1988. $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
  1989. @$(POST_INSTALL)
  1990. @if $(am__can_run_installinfo); then \
  1991. list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
  1992. for file in $$list; do \
  1993. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  1994. echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
  1995. install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
  1996. done; \
  1997. else : ; fi
  1998. install-man: install-man1
  1999. install-pdf: install-pdf-recursive
  2000. install-pdf-am: $(PDFS)
  2001. @$(NORMAL_INSTALL)
  2002. @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
  2003. if test -n "$$list"; then \
  2004. echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
  2005. $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
  2006. fi; \
  2007. for p in $$list; do \
  2008. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2009. echo "$$d$$p"; \
  2010. done | $(am__base_list) | \
  2011. while read files; do \
  2012. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
  2013. $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
  2014. install-ps: install-ps-recursive
  2015. install-ps-am: $(PSS)
  2016. @$(NORMAL_INSTALL)
  2017. @list='$(PSS)'; test -n "$(psdir)" || list=; \
  2018. if test -n "$$list"; then \
  2019. echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
  2020. $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
  2021. fi; \
  2022. for p in $$list; do \
  2023. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2024. echo "$$d$$p"; \
  2025. done | $(am__base_list) | \
  2026. while read files; do \
  2027. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
  2028. $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
  2029. installcheck-am:
  2030. maintainer-clean: maintainer-clean-recursive
  2031. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  2032. -rm -rf $(top_srcdir)/autom4te.cache
  2033. -rm -rf ./$(DEPDIR)
  2034. -rm -f Makefile
  2035. maintainer-clean-am: distclean-am maintainer-clean-aminfo \
  2036. maintainer-clean-generic
  2037. mostlyclean: mostlyclean-recursive
  2038. mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
  2039. mostlyclean-generic mostlyclean-libtool mostlyclean-local
  2040. pdf: pdf-recursive
  2041. pdf-am: $(PDFS)
  2042. ps: ps-recursive
  2043. ps-am: $(PSS)
  2044. uninstall-am: uninstall-bfdpluginLTLIBRARIES uninstall-binPROGRAMS \
  2045. uninstall-dvi-am uninstall-html-am uninstall-info-am \
  2046. uninstall-man uninstall-pdf-am uninstall-ps-am
  2047. uninstall-man: uninstall-man1
  2048. .MAKE: $(am__recursive_targets) all check check-am install install-am \
  2049. install-strip
  2050. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  2051. am--refresh check check-DEJAGNU check-am clean clean-aminfo \
  2052. clean-bfdpluginLTLIBRARIES clean-binPROGRAMS clean-cscope \
  2053. clean-generic clean-libtool clean-noinstLTLIBRARIES cscope \
  2054. cscopelist-am ctags ctags-am dist-info distclean \
  2055. distclean-DEJAGNU distclean-compile distclean-generic \
  2056. distclean-hdr distclean-libtool distclean-local distclean-tags \
  2057. dvi dvi-am html html-am html-local info info-am install \
  2058. install-am install-bfdpluginLTLIBRARIES install-binPROGRAMS \
  2059. install-data install-data-am install-data-local install-dvi \
  2060. install-dvi-am install-exec install-exec-am install-exec-local \
  2061. install-html install-html-am install-info install-info-am \
  2062. install-man install-man1 install-pdf install-pdf-am install-ps \
  2063. install-ps-am install-strip installcheck installcheck-am \
  2064. installdirs installdirs-am maintainer-clean \
  2065. maintainer-clean-aminfo maintainer-clean-generic mostlyclean \
  2066. mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
  2067. mostlyclean-libtool mostlyclean-local pdf pdf-am ps ps-am tags \
  2068. tags-am uninstall uninstall-am uninstall-bfdpluginLTLIBRARIES \
  2069. uninstall-binPROGRAMS uninstall-dvi-am uninstall-html-am \
  2070. uninstall-info-am uninstall-man uninstall-man1 \
  2071. uninstall-pdf-am uninstall-ps-am
  2072. .PRECIOUS: Makefile
  2073. # Disable -Werror, if it has been enabled, since old versions of bison/
  2074. # yacc will produce working code which contain compile time warnings.
  2075. ldgram.@OBJEXT@: ldgram.c
  2076. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f ldgram.c || echo $(srcdir)/`ldgram.c $(NO_WERROR)
  2077. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2078. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldgram.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2079. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2080. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c `test -f ldgram.c || echo $(srcdir)/`ldgram.c $(NO_WERROR)
  2081. ldlex-wrapper.@OBJEXT@: ldlex-wrapper.c ldlex.c
  2082. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/ldlex-wrapper.c $(NO_WERROR)
  2083. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2084. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldlex-wrapper.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2085. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2086. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c $(srcdir)/ldlex-wrapper.c $(NO_WERROR)
  2087. deffilep.@OBJEXT@: deffilep.c
  2088. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deffilep.c || echo $(srcdir)/`deffilep.c $(NO_WERROR)
  2089. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2090. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='deffilep.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2091. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2092. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c `test -f deffilep.c || echo $(srcdir)/`deffilep.c $(NO_WERROR)
  2093. po/SRC-POTFILES.in: @MAINT@ Makefile
  2094. for f in $(SRC_POTFILES); do echo $$f; done | LC_ALL=C sort > $@-tmp \
  2095. && mv $@-tmp $(srcdir)/po/SRC-POTFILES.in
  2096. po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
  2097. for f in $(BLD_POTFILES); do echo $$f; done | LC_ALL=C sort > $@-tmp \
  2098. && mv $@-tmp $(srcdir)/po/BLD-POTFILES.in
  2099. ldmain.@OBJEXT@: ldmain.c config.status
  2100. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
  2101. @am__fastdepCC_TRUE@ -DDEFAULT_EMULATION='"$(EMUL)"' \
  2102. @am__fastdepCC_TRUE@ -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \
  2103. @am__fastdepCC_TRUE@ -DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \
  2104. @am__fastdepCC_TRUE@ $(srcdir)/ldmain.c
  2105. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2106. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldmain.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2107. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2108. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' \
  2109. @am__fastdepCC_FALSE@ -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \
  2110. @am__fastdepCC_FALSE@ -DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \
  2111. @am__fastdepCC_FALSE@ $(srcdir)/ldmain.c
  2112. ldfile.@OBJEXT@: ldfile.c config.status
  2113. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
  2114. @am__fastdepCC_TRUE@ -DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \
  2115. @am__fastdepCC_TRUE@ $(srcdir)/ldfile.c
  2116. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2117. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ldfile.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2118. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2119. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c -DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' \
  2120. @am__fastdepCC_FALSE@ -DTOOLBINDIR='"$(tooldir)/bin"' \
  2121. @am__fastdepCC_FALSE@ $(srcdir)/ldfile.c
  2122. eelf32_spu.@OBJEXT@: eelf32_spu.c
  2123. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
  2124. @am__fastdepCC_TRUE@ -DEMBEDSPU="\"`echo embedspu | sed '$(transform)'`\"" eelf32_spu.c
  2125. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  2126. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eelf32_spu.c' object='$@' libtool=no @AMDEPBACKSLASH@
  2127. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2128. @am__fastdepCC_FALSE@ $(AM_V_CC)$(COMPILE) -c -DEMBEDSPU="\"`echo embedspu | sed '$(transform)'`\"" \
  2129. @am__fastdepCC_FALSE@ eelf32_spu.c
  2130. ldemul-list.h: Makefile
  2131. (echo "/* This file is automatically generated. DO NOT EDIT! */";\
  2132. for f in `echo " " ${EMULATION_OFILES} "" \
  2133. | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
  2134. echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
  2135. done;\
  2136. echo "";\
  2137. echo "#define EMULATION_LIST \\";\
  2138. for f in `echo " " ${EMULATION_OFILES} "" \
  2139. | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
  2140. echo " &ld_$${f}_emulation, \\"; \
  2141. done;\
  2142. echo " 0") >ldemul-tmp.h
  2143. mv ldemul-tmp.h ldemul-list.h
  2144. stringify.sed: ${srcdir}/emultempl/$(STRINGIFY)
  2145. $(AM_V_GEN)cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed
  2146. @TDIRS@
  2147. # We can't use pattern rules as we don't want to depend on GNU
  2148. # make, or else these rules could have been expressed in one
  2149. # two-liner: 'e%.c:' and ' ${GENSCRIPTS} $* "$(tdir_$*)"'.
  2150. # (The recursive variable expansion is portable.)
  2151. run-genscripts:
  2152. $(AM_V_at)${GENSCRIPTS} $(script_target) "$($(script_tdirname))"
  2153. .PHONY: run-genscripts
  2154. $(ALL_EMULATION_SOURCES) $(ALL_64_EMULATION_SOURCES): $(GEN_DEPENDS)
  2155. $(AM_V_GEN)base=`echo $@ | sed -e 's,e\(.*\).c,\1,'`; \
  2156. $(MAKE) run-genscripts "script_target=$$base" "script_tdirname=tdir_$$base"
  2157. # It's a pity we can't generate these include "./deps/e*.Pc" lines
  2158. # from ALL_EMULATION_SOURCES and ALL_64_EMULATION_SOURCES, but that isn't
  2159. # so easy to do. What we'd like to do is have automake generate these
  2160. # lines in Makefile.in, but I can't see a way of doing that. Generating
  2161. # the includes at configure time is possible but then we'd need to
  2162. # duplicate autoconf/automake handling of dependency files.
  2163. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5ppc.Pc@am__quote@
  2164. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5rs6.Pc@am__quote@
  2165. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixppc.Pc@am__quote@
  2166. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixrs6.Pc@am__quote@
  2167. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealpha.Pc@am__quote@
  2168. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealphavms.Pc@am__quote@
  2169. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcelf.Pc@am__quote@
  2170. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux.Pc@am__quote@
  2171. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux_nps.Pc@am__quote@
  2172. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elf.Pc@am__quote@
  2173. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elfx.Pc@am__quote@
  2174. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earm_wince_pe.Pc@am__quote@
  2175. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf.Pc@am__quote@
  2176. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fbsd.Pc@am__quote@
  2177. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fuchsia.Pc@am__quote@
  2178. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_haiku.Pc@am__quote@
  2179. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux.Pc@am__quote@
  2180. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_eabi.Pc@am__quote@
  2181. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_fdpiceabi.Pc@am__quote@
  2182. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nacl.Pc@am__quote@
  2183. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nbsd.Pc@am__quote@
  2184. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_phoenix.Pc@am__quote@
  2185. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_vxworks.Pc@am__quote@
  2186. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb.Pc@am__quote@
  2187. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fbsd.Pc@am__quote@
  2188. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fuchsia.Pc@am__quote@
  2189. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux.Pc@am__quote@
  2190. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_eabi.Pc@am__quote@
  2191. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_fdpiceabi.Pc@am__quote@
  2192. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nacl.Pc@am__quote@
  2193. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nbsd.Pc@am__quote@
  2194. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmnto.Pc@am__quote@
  2195. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmpe.Pc@am__quote@
  2196. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr1.Pc@am__quote@
  2197. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr2.Pc@am__quote@
  2198. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr25.Pc@am__quote@
  2199. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr3.Pc@am__quote@
  2200. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr31.Pc@am__quote@
  2201. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr35.Pc@am__quote@
  2202. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr4.Pc@am__quote@
  2203. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr5.Pc@am__quote@
  2204. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr51.Pc@am__quote@
  2205. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr6.Pc@am__quote@
  2206. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrtiny.Pc@am__quote@
  2207. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega1.Pc@am__quote@
  2208. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega2.Pc@am__quote@
  2209. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega3.Pc@am__quote@
  2210. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega4.Pc@am__quote@
  2211. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega5.Pc@am__quote@
  2212. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega6.Pc@am__quote@
  2213. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega7.Pc@am__quote@
  2214. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrisaout.Pc@am__quote@
  2215. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecriself.Pc@am__quote@
  2216. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrislinux.Pc@am__quote@
  2217. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf.Pc@am__quote@
  2218. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf_linux.Pc@am__quote@
  2219. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed10velf.Pc@am__quote@
  2220. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_e.Pc@am__quote@
  2221. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_o.Pc@am__quote@
  2222. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30velf.Pc@am__quote@
  2223. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_dlx.Pc@am__quote@
  2224. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc.Pc@am__quote@
  2225. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_sol2.Pc@am__quote@
  2226. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_vxworks.Pc@am__quote@
  2227. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_spu.Pc@am__quote@
  2228. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_be.Pc@am__quote@
  2229. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_be.Pc@am__quote@
  2230. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_le.Pc@am__quote@
  2231. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_le.Pc@am__quote@
  2232. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_be.Pc@am__quote@
  2233. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_le.Pc@am__quote@
  2234. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32am33lin.Pc@am__quote@
  2235. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfin.Pc@am__quote@
  2236. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfinfd.Pc@am__quote@
  2237. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32cr16.Pc@am__quote@
  2238. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32crx.Pc@am__quote@
  2239. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany.Pc@am__quote@
  2240. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany_4x4.Pc@am__quote@
  2241. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32fr30.Pc@am__quote@
  2242. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frv.Pc@am__quote@
  2243. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frvfd.Pc@am__quote@
  2244. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ft32.Pc@am__quote@
  2245. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ip2k.Pc@am__quote@
  2246. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq10.Pc@am__quote@
  2247. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq2000.Pc@am__quote@
  2248. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32.Pc@am__quote@
  2249. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32fd.Pc@am__quote@
  2250. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppc.Pc@am__quote@
  2251. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppclinux.Pc@am__quote@
  2252. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcnto.Pc@am__quote@
  2253. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcsim.Pc@am__quote@
  2254. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32m32c.Pc@am__quote@
  2255. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mb_linux.Pc@am__quote@
  2256. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mbel_linux.Pc@am__quote@
  2257. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mcore.Pc@am__quote@
  2258. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mep.Pc@am__quote@
  2259. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32metag.Pc@am__quote@
  2260. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblaze.Pc@am__quote@
  2261. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblazeel.Pc@am__quote@
  2262. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32moxie.Pc@am__quote@
  2263. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mt.Pc@am__quote@
  2264. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k.Pc@am__quote@
  2265. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k_linux.Pc@am__quote@
  2266. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc.Pc@am__quote@
  2267. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc_fbsd.Pc@am__quote@
  2268. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppchaiku.Pc@am__quote@
  2269. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppclinux.Pc@am__quote@
  2270. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcnto.Pc@am__quote@
  2271. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcsim.Pc@am__quote@
  2272. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcvxworks.Pc@am__quote@
  2273. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcwindiss.Pc@am__quote@
  2274. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rl78.Pc@am__quote@
  2275. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rx.Pc@am__quote@
  2276. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rx_linux.Pc@am__quote@
  2277. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx.Pc@am__quote@
  2278. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx_be.Pc@am__quote@
  2279. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilepro.Pc@am__quote@
  2280. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32vax.Pc@am__quote@
  2281. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32visium.Pc@am__quote@
  2282. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16x.Pc@am__quote@
  2283. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xl.Pc@am__quote@
  2284. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xs.Pc@am__quote@
  2285. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xstormy16.Pc@am__quote@
  2286. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xtensa.Pc@am__quote@
  2287. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32z80.Pc@am__quote@
  2288. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Pc@am__quote@
  2289. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Pc@am__quote@
  2290. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Pc@am__quote@
  2291. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_haiku.Pc@am__quote@
  2292. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_ldso.Pc@am__quote@
  2293. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_sol2.Pc@am__quote@
  2294. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_vxworks.Pc@am__quote@
  2295. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_iamcu.Pc@am__quote@
  2296. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_s390.Pc@am__quote@
  2297. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf.Pc@am__quote@
  2298. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf_linux.Pc@am__quote@
  2299. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf.Pc@am__quote@
  2300. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf_linux.Pc@am__quote@
  2301. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300hnelf.Pc@am__quote@
  2302. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self.Pc@am__quote@
  2303. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self_linux.Pc@am__quote@
  2304. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300snelf.Pc@am__quote@
  2305. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf.Pc@am__quote@
  2306. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf_linux.Pc@am__quote@
  2307. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxnelf.Pc@am__quote@
  2308. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaelf.Pc@am__quote@
  2309. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppalinux.Pc@am__quote@
  2310. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppanbsd.Pc@am__quote@
  2311. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaobsd.Pc@am__quote@
  2312. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386aout.Pc@am__quote@
  2313. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386beos.Pc@am__quote@
  2314. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386bsd.Pc@am__quote@
  2315. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386go32.Pc@am__quote@
  2316. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386lynx.Pc@am__quote@
  2317. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386moss.Pc@am__quote@
  2318. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386msdos.Pc@am__quote@
  2319. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386nto.Pc@am__quote@
  2320. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe.Pc@am__quote@
  2321. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe_posix.Pc@am__quote@
  2322. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf.Pc@am__quote@
  2323. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf_linux.Pc@am__quote@
  2324. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf.Pc@am__quote@
  2325. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf_linux.Pc@am__quote@
  2326. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elf.Pc@am__quote@
  2327. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elfb.Pc@am__quote@
  2328. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elf.Pc@am__quote@
  2329. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elfb.Pc@am__quote@
  2330. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelf.Pc@am__quote@
  2331. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelfnbsd.Pc@am__quote@
  2332. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em9s12zelf.Pc@am__quote@
  2333. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emcorepe.Pc@am__quote@
  2334. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10200.Pc@am__quote@
  2335. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10300.Pc@am__quote@
  2336. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emoxiebox.Pc@am__quote@
  2337. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430X.Pc@am__quote@
  2338. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430elf.Pc@am__quote@
  2339. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf.Pc@am__quote@
  2340. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf16m.Pc@am__quote@
  2341. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf_linux.Pc@am__quote@
  2342. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf.Pc@am__quote@
  2343. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf16m.Pc@am__quote@
  2344. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf_linux.Pc@am__quote@
  2345. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2elf.Pc@am__quote@
  2346. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2linux.Pc@am__quote@
  2347. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ens32knbsd.Pc@am__quote@
  2348. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epc532macha.Pc@am__quote@
  2349. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epdp11.Pc@am__quote@
  2350. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjelf.Pc@am__quote@
  2351. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjlelf.Pc@am__quote@
  2352. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppcmacos.Pc@am__quote@
  2353. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epruelf.Pc@am__quote@
  2354. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore3_elf.Pc@am__quote@
  2355. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore7_elf.Pc@am__quote@
  2356. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esh.Pc@am__quote@
  2357. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf.Pc@am__quote@
  2358. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_fd.Pc@am__quote@
  2359. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_linux.Pc@am__quote@
  2360. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nbsd.Pc@am__quote@
  2361. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nto.Pc@am__quote@
  2362. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_uclinux.Pc@am__quote@
  2363. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_vxworks.Pc@am__quote@
  2364. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshl.Pc@am__quote@
  2365. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf.Pc@am__quote@
  2366. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_fd.Pc@am__quote@
  2367. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_linux.Pc@am__quote@
  2368. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nbsd.Pc@am__quote@
  2369. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nto.Pc@am__quote@
  2370. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_vxworks.Pc@am__quote@
  2371. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshpe.Pc@am__quote@
  2372. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic30coff.Pc@am__quote@
  2373. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff.Pc@am__quote@
  2374. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff_onchip.Pc@am__quote@
  2375. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic4xcoff.Pc@am__quote@
  2376. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic54xcoff.Pc@am__quote@
  2377. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850.Pc@am__quote@
  2378. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850_rh850.Pc@am__quote@
  2379. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evanilla.Pc@am__quote@
  2380. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evaxnbsd.Pc@am__quote@
  2381. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exgateelf.Pc@am__quote@
  2382. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez80.Pc@am__quote@
  2383. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8001.Pc@am__quote@
  2384. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8002.Pc@am__quote@
  2385. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabi.Pc@am__quote@
  2386. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabib.Pc@am__quote@
  2387. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf.Pc@am__quote@
  2388. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32.Pc@am__quote@
  2389. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32b.Pc@am__quote@
  2390. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elfb.Pc@am__quote@
  2391. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsd.Pc@am__quote@
  2392. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsdb.Pc@am__quote@
  2393. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64haiku.Pc@am__quote@
  2394. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux.Pc@am__quote@
  2395. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32.Pc@am__quote@
  2396. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32b.Pc@am__quote@
  2397. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linuxb.Pc@am__quote@
  2398. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_x86_64.Pc@am__quote@
  2399. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32b4300.Pc@am__quote@
  2400. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmip.Pc@am__quote@
  2401. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmipn32.Pc@am__quote@
  2402. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv.Pc@am__quote@
  2403. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv_ilp32.Pc@am__quote@
  2404. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32briscv_ilp32f.Pc@am__quote@
  2405. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bsmip.Pc@am__quote@
  2406. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip.Pc@am__quote@
  2407. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip_fbsd.Pc@am__quote@
  2408. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32.Pc@am__quote@
  2409. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32_fbsd.Pc@am__quote@
  2410. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmip.Pc@am__quote@
  2411. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmipvxworks.Pc@am__quote@
  2412. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmip.Pc@am__quote@
  2413. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmipvxworks.Pc@am__quote@
  2414. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32l4300.Pc@am__quote@
  2415. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32loongarch.Pc@am__quote@
  2416. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lmip.Pc@am__quote@
  2417. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900.Pc@am__quote@
  2418. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900n32.Pc@am__quote@
  2419. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv.Pc@am__quote@
  2420. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32.Pc@am__quote@
  2421. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32f.Pc@am__quote@
  2422. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lsmip.Pc@am__quote@
  2423. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip.Pc@am__quote@
  2424. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip_fbsd.Pc@am__quote@
  2425. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32.Pc@am__quote@
  2426. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32_fbsd.Pc@am__quote@
  2427. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mipswindiss.Pc@am__quote@
  2428. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_aix.Pc@am__quote@
  2429. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64.Pc@am__quote@
  2430. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_fbsd.Pc@am__quote@
  2431. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_vms.Pc@am__quote@
  2432. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_s390.Pc@am__quote@
  2433. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc.Pc@am__quote@
  2434. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_fbsd.Pc@am__quote@
  2435. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_sol2.Pc@am__quote@
  2436. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha.Pc@am__quote@
  2437. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_fbsd.Pc@am__quote@
  2438. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_nbsd.Pc@am__quote@
  2439. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bmip.Pc@am__quote@
  2440. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bpf.Pc@am__quote@
  2441. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv.Pc@am__quote@
  2442. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv_lp64.Pc@am__quote@
  2443. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64briscv_lp64f.Pc@am__quote@
  2444. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip.Pc@am__quote@
  2445. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip_fbsd.Pc@am__quote@
  2446. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64hppa.Pc@am__quote@
  2447. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lppc.Pc@am__quote@
  2448. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lppc_fbsd.Pc@am__quote@
  2449. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64loongarch.Pc@am__quote@
  2450. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv.Pc@am__quote@
  2451. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64.Pc@am__quote@
  2452. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64f.Pc@am__quote@
  2453. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip.Pc@am__quote@
  2454. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip_fbsd.Pc@am__quote@
  2455. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64mmix.Pc@am__quote@
  2456. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc.Pc@am__quote@
  2457. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc_fbsd.Pc@am__quote@
  2458. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64rdos.Pc@am__quote@
  2459. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx.Pc@am__quote@
  2460. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Pc@am__quote@
  2461. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_mipsel_haiku.Pc@am__quote@
  2462. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Pc@am__quote@
  2463. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Pc@am__quote@
  2464. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Pc@am__quote@
  2465. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_haiku.Pc@am__quote@
  2466. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_sol2.Pc@am__quote@
  2467. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppa64linux.Pc@am__quote@
  2468. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pep.Pc@am__quote@
  2469. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emmo.Pc@am__quote@
  2470. check-DEJAGNU: site.exp
  2471. (cd .libs; test -e ldscripts || test ! -e ld-new || $(LN_S) ../ldscripts .)
  2472. srcroot=`cd $(srcdir) && pwd`; export srcroot; \
  2473. r=`pwd`; export r; \
  2474. LC_ALL=C; export LC_ALL; \
  2475. EXPECT=$(EXPECT); export EXPECT; \
  2476. runtest=$(RUNTEST); \
  2477. if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
  2478. $$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \
  2479. CC="$(CC)" CFLAGS="$(CFLAGS)" \
  2480. CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" \
  2481. CC_FOR_TARGET="$(CC_FOR_TARGET)" \
  2482. CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
  2483. CXX_FOR_TARGET="$(CXX_FOR_TARGET)" \
  2484. CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
  2485. OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" CTFLIB="$(TESTCTFLIB) $(ZLIB)" \
  2486. LIBIBERTY="$(LIBIBERTY) $(LIBINTL)" LIBS="$(LIBS)" \
  2487. DO_COMPARE="`echo '$(do_compare)' | sed -e 's,\\$$,,g'`" \
  2488. $(RUNTESTFLAGS); \
  2489. else echo "WARNING: could not find \`runtest'" 1>&2; :;\
  2490. fi
  2491. development.exp: $(BFDDIR)/development.sh
  2492. $(AM_V_GEN)$(EGREP) "(development|experimental)=" $(BFDDIR)/development.sh \
  2493. | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@
  2494. enablings.exp:
  2495. $(AM_V_GEN)echo "set enable_libctf ${enable_libctf}" >> $@
  2496. # DOCUMENTATION TARGETS
  2497. # Manual configuration file; not usually attached to normal configuration,
  2498. # because almost all configs use "gen" version of manual.
  2499. # Set DOCVER above to change.
  2500. configdoc.texi: ${DOCVER}-doc.texi
  2501. $(AM_V_GEN)cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
  2502. $(AM_V_at)chmod u+w ./configdoc.texi
  2503. # Build the man page from the texinfo file
  2504. # The sed command removes the no-adjust Nroff command so that
  2505. # the man output looks standard.
  2506. ld.1: $(srcdir)/ld.texi configdoc.texi
  2507. $(AM_V_GEN)touch $@
  2508. $(AM_V_at)-$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texi > ld.pod
  2509. $(AM_V_at)-($(POD2MAN) ld.pod | \
  2510. sed -e '/^.if n .na/d' > $@.T$$$$ && \
  2511. mv -f $@.T$$$$ $@) || \
  2512. (rm -f $@.T$$$$ && exit 1)
  2513. $(AM_V_at)rm -f ld.pod
  2514. mostlyclean-local:
  2515. -rm -rf tmpdir
  2516. .PHONY: install-exec-local install-data-local
  2517. install-exec-local: ld-new$(EXEEXT) install-binPROGRAMS
  2518. $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
  2519. n=`echo $(installed_linker) | sed '$(transform)'`; \
  2520. if test "$(bindir)" != "$(tooldir)/bin"; then \
  2521. rm -f $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT); \
  2522. ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT) >/dev/null 2>/dev/null \
  2523. || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT); \
  2524. fi; \
  2525. if test "x$(install_as_default)" = "xyes"; then \
  2526. ld=`echo ld | sed '$(transform)'`; \
  2527. rm -f $(DESTDIR)$(bindir)/$$ld$(EXEEXT); \
  2528. ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(bindir)/$$ld$(EXEEXT) >/dev/null 2>/dev/null \
  2529. || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$$ld$(EXEEXT); \
  2530. if test "$(bindir)" != "$(tooldir)/bin"; then \
  2531. rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
  2532. ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
  2533. || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \
  2534. fi; \
  2535. fi
  2536. install-data-local: install-bfdpluginLTLIBRARIES
  2537. $(mkinstalldirs) $(DESTDIR)$(scriptdir)/ldscripts
  2538. for f in ldscripts/* ; do \
  2539. $(INSTALL_DATA) $$f $(DESTDIR)$(scriptdir)/$$f ; \
  2540. done
  2541. rm -f $(DESTDIR)$(bfdplugindir)/libdep.la
  2542. rm -f $(DESTDIR)$(bfdplugindir)/libdep.dll.a
  2543. diststuff: info $(EXTRA_DIST)
  2544. # Both info (ld.info) and ld.1 depend on configdoc.texi.
  2545. # But info isn't a direct target. Make info-recursive to depend on
  2546. # ld.1 to support parallel build.
  2547. info-recursive: ld.1
  2548. html-local: doc/ld/index.html
  2549. doc/ld/index.html: ld.texi $(ld_TEXINFOS)
  2550. $(AM_V_at)$(MKDIR_P) doc
  2551. $(AM_V_GEN)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
  2552. --split=node -I$(srcdir) $(srcdir)/ld.texi -o doc/ld
  2553. distclean-local:
  2554. rm -rf ldscripts
  2555. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  2556. # Otherwise a system limit (for SysV at least) may be exceeded.
  2557. .NOEXPORT: