Makefile.in 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  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. transform = $(program_transform_name)
  95. NORMAL_INSTALL = :
  96. PRE_INSTALL = :
  97. POST_INSTALL = :
  98. NORMAL_UNINSTALL = :
  99. PRE_UNINSTALL = :
  100. POST_UNINSTALL = :
  101. build_triplet = @build@
  102. host_triplet = @host@
  103. target_triplet = @target@
  104. @INSTALL_LIBBFD_FALSE@am__append_1 = -rpath $(rpath_bfdlibdir)
  105. @PLUGINS_TRUE@am__append_2 = $(INCDIR)/plugin-api.h
  106. subdir = .
  107. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  108. am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
  109. $(top_srcdir)/../config/bfd64.m4 \
  110. $(top_srcdir)/../config/depstand.m4 \
  111. $(top_srcdir)/../config/gettext-sister.m4 \
  112. $(top_srcdir)/../config/jobserver.m4 \
  113. $(top_srcdir)/../config/largefile.m4 \
  114. $(top_srcdir)/../config/lead-dot.m4 \
  115. $(top_srcdir)/../config/nls.m4 \
  116. $(top_srcdir)/../config/override.m4 \
  117. $(top_srcdir)/../config/plugins.m4 \
  118. $(top_srcdir)/../config/po.m4 \
  119. $(top_srcdir)/../config/progtest.m4 \
  120. $(top_srcdir)/../config/zlib.m4 $(top_srcdir)/../libtool.m4 \
  121. $(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
  122. $(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
  123. $(top_srcdir)/bfd.m4 $(top_srcdir)/warning.m4 \
  124. $(top_srcdir)/acinclude.m4 $(top_srcdir)/version.m4 \
  125. $(top_srcdir)/configure.ac
  126. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  127. $(ACLOCAL_M4)
  128. DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
  129. $(am__configure_deps) $(am__bfdinclude_HEADERS_DIST)
  130. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  131. configure.lineno config.status.lineno
  132. mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
  133. CONFIG_HEADER = config.h
  134. CONFIG_CLEAN_FILES = bfd-in3.h po/Makefile.in
  135. CONFIG_CLEAN_VPATH_FILES =
  136. LIBRARIES = $(noinst_LIBRARIES)
  137. ARFLAGS = cru
  138. AM_V_AR = $(am__v_AR_@AM_V@)
  139. am__v_AR_ = $(am__v_AR_@AM_DEFAULT_V@)
  140. am__v_AR_0 = @echo " AR " $@;
  141. am__v_AR_1 =
  142. libbfd_a_AR = $(AR) $(ARFLAGS)
  143. libbfd_a_LIBADD =
  144. am_libbfd_a_OBJECTS =
  145. libbfd_a_OBJECTS = $(am_libbfd_a_OBJECTS)
  146. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  147. am__vpath_adj = case $$p in \
  148. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  149. *) f=$$p;; \
  150. esac;
  151. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  152. am__install_max = 40
  153. am__nobase_strip_setup = \
  154. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  155. am__nobase_strip = \
  156. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  157. am__nobase_list = $(am__nobase_strip_setup); \
  158. for p in $$list; do echo "$$p $$p"; done | \
  159. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  160. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  161. if (++n[$$2] == $(am__install_max)) \
  162. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  163. END { for (dir in files) print dir, files[dir] }'
  164. am__base_list = \
  165. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  166. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  167. am__uninstall_files_from_dir = { \
  168. test -z "$$files" \
  169. || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
  170. || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
  171. $(am__cd) "$$dir" && rm -f $$files; }; \
  172. }
  173. am__installdirs = "$(DESTDIR)$(bfdlibdir)" "$(DESTDIR)$(infodir)" \
  174. "$(DESTDIR)$(bfdincludedir)"
  175. LTLIBRARIES = $(bfdlib_LTLIBRARIES) $(noinst_LTLIBRARIES)
  176. am__DEPENDENCIES_1 =
  177. am__objects_1 = archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
  178. cache.lo coff-bfd.lo compress.lo corefile.lo elf-properties.lo \
  179. format.lo hash.lo init.lo libbfd.lo linker.lo merge.lo \
  180. opncls.lo reloc.lo section.lo simple.lo stab-syms.lo stabs.lo \
  181. syms.lo targets.lo binary.lo ihex.lo srec.lo tekhex.lo \
  182. verilog.lo
  183. am_libbfd_la_OBJECTS = $(am__objects_1)
  184. libbfd_la_OBJECTS = $(am_libbfd_la_OBJECTS)
  185. AM_V_lt = $(am__v_lt_@AM_V@)
  186. am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
  187. am__v_lt_0 = --silent
  188. am__v_lt_1 =
  189. libbfd_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  190. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  191. $(libbfd_la_LDFLAGS) $(LDFLAGS) -o $@
  192. @INSTALL_LIBBFD_FALSE@am_libbfd_la_rpath =
  193. @INSTALL_LIBBFD_TRUE@am_libbfd_la_rpath = -rpath $(bfdlibdir)
  194. AM_V_P = $(am__v_P_@AM_V@)
  195. am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
  196. am__v_P_0 = false
  197. am__v_P_1 = :
  198. AM_V_GEN = $(am__v_GEN_@AM_V@)
  199. am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
  200. am__v_GEN_0 = @echo " GEN " $@;
  201. am__v_GEN_1 =
  202. AM_V_at = $(am__v_at_@AM_V@)
  203. am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
  204. am__v_at_0 = @
  205. am__v_at_1 =
  206. DEFAULT_INCLUDES = -I.@am__isrc@
  207. depcomp = $(SHELL) $(top_srcdir)/../depcomp
  208. am__depfiles_maybe = depfiles
  209. am__mv = mv -f
  210. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  211. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  212. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  213. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  214. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  215. $(AM_CFLAGS) $(CFLAGS)
  216. AM_V_CC = $(am__v_CC_@AM_V@)
  217. am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
  218. am__v_CC_0 = @echo " CC " $@;
  219. am__v_CC_1 =
  220. CCLD = $(CC)
  221. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  222. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  223. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  224. AM_V_CCLD = $(am__v_CCLD_@AM_V@)
  225. am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
  226. am__v_CCLD_0 = @echo " CCLD " $@;
  227. am__v_CCLD_1 =
  228. SOURCES = $(libbfd_a_SOURCES) $(libbfd_la_SOURCES) \
  229. $(EXTRA_libbfd_la_SOURCES)
  230. AM_V_DVIPS = $(am__v_DVIPS_@AM_V@)
  231. am__v_DVIPS_ = $(am__v_DVIPS_@AM_DEFAULT_V@)
  232. am__v_DVIPS_0 = @echo " DVIPS " $@;
  233. am__v_DVIPS_1 =
  234. AM_V_MAKEINFO = $(am__v_MAKEINFO_@AM_V@)
  235. am__v_MAKEINFO_ = $(am__v_MAKEINFO_@AM_DEFAULT_V@)
  236. am__v_MAKEINFO_0 = @echo " MAKEINFO" $@;
  237. am__v_MAKEINFO_1 =
  238. AM_V_INFOHTML = $(am__v_INFOHTML_@AM_V@)
  239. am__v_INFOHTML_ = $(am__v_INFOHTML_@AM_DEFAULT_V@)
  240. am__v_INFOHTML_0 = @echo " INFOHTML" $@;
  241. am__v_INFOHTML_1 =
  242. AM_V_TEXI2DVI = $(am__v_TEXI2DVI_@AM_V@)
  243. am__v_TEXI2DVI_ = $(am__v_TEXI2DVI_@AM_DEFAULT_V@)
  244. am__v_TEXI2DVI_0 = @echo " TEXI2DVI" $@;
  245. am__v_TEXI2DVI_1 =
  246. AM_V_TEXI2PDF = $(am__v_TEXI2PDF_@AM_V@)
  247. am__v_TEXI2PDF_ = $(am__v_TEXI2PDF_@AM_DEFAULT_V@)
  248. am__v_TEXI2PDF_0 = @echo " TEXI2PDF" $@;
  249. am__v_TEXI2PDF_1 =
  250. AM_V_texinfo = $(am__v_texinfo_@AM_V@)
  251. am__v_texinfo_ = $(am__v_texinfo_@AM_DEFAULT_V@)
  252. am__v_texinfo_0 = -q
  253. am__v_texinfo_1 =
  254. AM_V_texidevnull = $(am__v_texidevnull_@AM_V@)
  255. am__v_texidevnull_ = $(am__v_texidevnull_@AM_DEFAULT_V@)
  256. am__v_texidevnull_0 = > /dev/null
  257. am__v_texidevnull_1 =
  258. am__dirstamp = $(am__leading_dot)dirstamp
  259. INFO_DEPS = doc/bfd.info
  260. am__TEXINFO_TEX_DIR = $(srcdir)
  261. DVIS = doc/bfd.dvi
  262. PDFS = doc/bfd.pdf
  263. PSS = doc/bfd.ps
  264. HTMLS = doc/bfd.html
  265. TEXINFOS = doc/bfd.texi
  266. TEXI2PDF = $(TEXI2DVI) --pdf --batch
  267. MAKEINFOHTML = $(MAKEINFO) --html
  268. AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
  269. DVIPS = dvips
  270. RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
  271. ctags-recursive dvi-recursive html-recursive info-recursive \
  272. install-data-recursive install-dvi-recursive \
  273. install-exec-recursive install-html-recursive \
  274. install-info-recursive install-pdf-recursive \
  275. install-ps-recursive install-recursive installcheck-recursive \
  276. installdirs-recursive pdf-recursive ps-recursive \
  277. tags-recursive uninstall-recursive
  278. am__can_run_installinfo = \
  279. case $$AM_UPDATE_INFO_DIR in \
  280. n|no|NO) false;; \
  281. *) (install-info --version) >/dev/null 2>&1;; \
  282. esac
  283. am__bfdinclude_HEADERS_DIST = $(INCDIR)/plugin-api.h bfd.h \
  284. $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
  285. $(INCDIR)/diagnostics.h $(INCDIR)/bfdlink.h
  286. HEADERS = $(bfdinclude_HEADERS)
  287. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  288. distclean-recursive maintainer-clean-recursive
  289. am__recursive_targets = \
  290. $(RECURSIVE_TARGETS) \
  291. $(RECURSIVE_CLEAN_TARGETS) \
  292. $(am__extra_recursive_targets)
  293. AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
  294. cscope
  295. am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
  296. $(LISP)config.in
  297. # Read a list of newline-separated strings from the standard input,
  298. # and print each of them once, without duplicates. Input order is
  299. # *not* preserved.
  300. am__uniquify_input = $(AWK) '\
  301. BEGIN { nonempty = 0; } \
  302. { items[$$0] = 1; nonempty = 1; } \
  303. END { if (nonempty) { for (i in items) print i; }; } \
  304. '
  305. # Make sure the list of sources is unique. This is necessary because,
  306. # e.g., the same source file might be shared among _SOURCES variables
  307. # for different programs/libraries.
  308. am__define_uniq_tagged_files = \
  309. list='$(am__tagged_files)'; \
  310. unique=`for i in $$list; do \
  311. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  312. done | $(am__uniquify_input)`
  313. ETAGS = etags
  314. CTAGS = ctags
  315. CSCOPE = cscope
  316. DIST_SUBDIRS = $(SUBDIRS)
  317. ACLOCAL = @ACLOCAL@
  318. AMTAR = @AMTAR@
  319. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  320. AR = @AR@
  321. AUTOCONF = @AUTOCONF@
  322. AUTOHEADER = @AUTOHEADER@
  323. AUTOMAKE = @AUTOMAKE@
  324. AWK = @AWK@
  325. BFD_HOSTPTR_T = @BFD_HOSTPTR_T@
  326. BFD_HOST_64BIT_LONG = @BFD_HOST_64BIT_LONG@
  327. BFD_HOST_64BIT_LONG_LONG = @BFD_HOST_64BIT_LONG_LONG@
  328. BFD_HOST_64_BIT = @BFD_HOST_64_BIT@
  329. BFD_HOST_64_BIT_DEFINED = @BFD_HOST_64_BIT_DEFINED@
  330. BFD_HOST_U_64_BIT = @BFD_HOST_U_64_BIT@
  331. CATALOGS = @CATALOGS@
  332. CATOBJEXT = @CATOBJEXT@
  333. CC = @CC@
  334. CCDEPMODE = @CCDEPMODE@
  335. CC_FOR_BUILD = @CC_FOR_BUILD@
  336. CFLAGS = @CFLAGS@
  337. COREFILE = @COREFILE@
  338. COREFLAG = @COREFLAG@
  339. CPP = @CPP@
  340. CPPFLAGS = @CPPFLAGS@
  341. CYGPATH_W = @CYGPATH_W@
  342. DATADIRNAME = @DATADIRNAME@
  343. DEBUGDIR = @DEBUGDIR@
  344. DEFS = @DEFS@
  345. DEPDIR = @DEPDIR@
  346. DSYMUTIL = @DSYMUTIL@
  347. DUMPBIN = @DUMPBIN@
  348. ECHO_C = @ECHO_C@
  349. ECHO_N = @ECHO_N@
  350. ECHO_T = @ECHO_T@
  351. EGREP = @EGREP@
  352. EXEEXT = @EXEEXT@
  353. EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
  354. FGREP = @FGREP@
  355. GENCAT = @GENCAT@
  356. GMSGFMT = @GMSGFMT@
  357. GREP = @GREP@
  358. HDEFINES = @HDEFINES@
  359. INCINTL = @INCINTL@
  360. INSTALL = @INSTALL@
  361. INSTALL_DATA = @INSTALL_DATA@
  362. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  363. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  364. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  365. INSTOBJEXT = @INSTOBJEXT@
  366. LARGEFILE_CPPFLAGS = @LARGEFILE_CPPFLAGS@
  367. LD = @LD@
  368. LDFLAGS = @LDFLAGS@
  369. LIBINTL = @LIBINTL@
  370. LIBINTL_DEP = @LIBINTL_DEP@
  371. LIBM = @LIBM@
  372. LIBOBJS = @LIBOBJS@
  373. LIBS = @LIBS@
  374. LIBTOOL = @LIBTOOL@
  375. LIPO = @LIPO@
  376. LN_S = @LN_S@
  377. LTLIBOBJS = @LTLIBOBJS@
  378. MAINT = @MAINT@
  379. MAKEINFO = @MAKEINFO@
  380. MKDIR_P = @MKDIR_P@
  381. MKINSTALLDIRS = @MKINSTALLDIRS@
  382. MSGFMT = @MSGFMT@
  383. MSGMERGE = @MSGMERGE@
  384. NM = @NM@
  385. NMEDIT = @NMEDIT@
  386. NO_WERROR = @NO_WERROR@
  387. OBJDUMP = @OBJDUMP@
  388. OBJEXT = @OBJEXT@
  389. OTOOL = @OTOOL@
  390. OTOOL64 = @OTOOL64@
  391. PACKAGE = @PACKAGE@
  392. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  393. PACKAGE_NAME = @PACKAGE_NAME@
  394. PACKAGE_STRING = @PACKAGE_STRING@
  395. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  396. PACKAGE_URL = @PACKAGE_URL@
  397. PACKAGE_VERSION = @PACKAGE_VERSION@
  398. PATH_SEPARATOR = @PATH_SEPARATOR@
  399. PKGVERSION = @PKGVERSION@
  400. POSUB = @POSUB@
  401. RANLIB = @RANLIB@
  402. REPORT_BUGS_TEXI = @REPORT_BUGS_TEXI@
  403. REPORT_BUGS_TO = @REPORT_BUGS_TO@
  404. SED = @SED@
  405. SET_MAKE = @SET_MAKE@
  406. SHARED_LDFLAGS = @SHARED_LDFLAGS@
  407. SHARED_LIBADD = @SHARED_LIBADD@
  408. SHELL = @SHELL@
  409. STRIP = @STRIP@
  410. TDEFINES = @TDEFINES@
  411. USE_NLS = @USE_NLS@
  412. VERSION = @VERSION@
  413. WARN_CFLAGS = @WARN_CFLAGS@
  414. WARN_CFLAGS_FOR_BUILD = @WARN_CFLAGS_FOR_BUILD@
  415. WARN_WRITE_STRINGS = @WARN_WRITE_STRINGS@
  416. XGETTEXT = @XGETTEXT@
  417. abs_builddir = @abs_builddir@
  418. abs_srcdir = @abs_srcdir@
  419. abs_top_builddir = @abs_top_builddir@
  420. abs_top_srcdir = @abs_top_srcdir@
  421. ac_ct_CC = @ac_ct_CC@
  422. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  423. all_backends = @all_backends@
  424. am__include = @am__include@
  425. am__leading_dot = @am__leading_dot@
  426. am__quote = @am__quote@
  427. am__tar = @am__tar@
  428. am__untar = @am__untar@
  429. bfd64_libs = @bfd64_libs@
  430. bfd_backends = @bfd_backends@
  431. bfd_default_target_size = @bfd_default_target_size@
  432. bfd_file_ptr = @bfd_file_ptr@
  433. bfd_machines = @bfd_machines@
  434. bfd_ufile_ptr = @bfd_ufile_ptr@
  435. @INSTALL_LIBBFD_FALSE@bfdincludedir =
  436. @INSTALL_LIBBFD_TRUE@bfdincludedir = @bfdincludedir@
  437. # Empty these so that the respective installation directories will not be created.
  438. @INSTALL_LIBBFD_FALSE@bfdlibdir =
  439. @INSTALL_LIBBFD_TRUE@bfdlibdir = @bfdlibdir@
  440. bindir = @bindir@
  441. build = @build@
  442. build_alias = @build_alias@
  443. build_cpu = @build_cpu@
  444. build_os = @build_os@
  445. build_vendor = @build_vendor@
  446. builddir = @builddir@
  447. datadir = @datadir@
  448. datarootdir = @datarootdir@
  449. docdir = @docdir@
  450. dvidir = @dvidir@
  451. exec_prefix = @exec_prefix@
  452. havevecs = @havevecs@
  453. host = @host@
  454. host_alias = @host_alias@
  455. host_cpu = @host_cpu@
  456. host_noncanonical = @host_noncanonical@
  457. host_os = @host_os@
  458. host_vendor = @host_vendor@
  459. htmldir = @htmldir@
  460. includedir = @includedir@
  461. infodir = @infodir@
  462. install_sh = @install_sh@
  463. libdir = @libdir@
  464. libexecdir = @libexecdir@
  465. localedir = @localedir@
  466. localstatedir = @localstatedir@
  467. lt_cv_dlopen_libs = @lt_cv_dlopen_libs@
  468. mandir = @mandir@
  469. mkdir_p = @mkdir_p@
  470. oldincludedir = @oldincludedir@
  471. pdfdir = @pdfdir@
  472. prefix = @prefix@
  473. program_transform_name = @program_transform_name@
  474. psdir = @psdir@
  475. sbindir = @sbindir@
  476. sharedstatedir = @sharedstatedir@
  477. srcdir = @srcdir@
  478. supports_plugins = @supports_plugins@
  479. sysconfdir = @sysconfdir@
  480. target = @target@
  481. target_alias = @target_alias@
  482. target_cpu = @target_cpu@
  483. target_noncanonical = @target_noncanonical@
  484. target_os = @target_os@
  485. target_vendor = @target_vendor@
  486. tdefaults = @tdefaults@
  487. top_build_prefix = @top_build_prefix@
  488. top_builddir = @top_builddir@
  489. top_srcdir = @top_srcdir@
  490. wordsize = @wordsize@
  491. zlibdir = @zlibdir@
  492. zlibinc = @zlibinc@
  493. AUTOMAKE_OPTIONS = no-dist foreign info-in-builddir no-texinfo.tex
  494. ACLOCAL_AMFLAGS = -I . -I .. -I ../config
  495. MOSTLYCLEANFILES = ofiles stamp-ofiles $(MKDOC) doc/*.o doc/*.stamp
  496. CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a \
  497. stamp-lib stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
  498. DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) libtool-soversion \
  499. doc/bfd.?? doc/bfd.??? texput.log
  500. MAINTAINERCLEANFILES = $(DOCFILES) doc/bfd.info
  501. INCDIR = $(srcdir)/../include
  502. CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
  503. SUBDIRS = po
  504. bfddocdir = doc
  505. libbfd_la_LDFLAGS = $(am__append_1) -release `cat libtool-soversion` \
  506. @SHARED_LDFLAGS@ $(am__empty)
  507. @INSTALL_LIBBFD_TRUE@bfdlib_LTLIBRARIES = libbfd.la
  508. @INSTALL_LIBBFD_FALSE@bfdinclude_HEADERS = $(am__append_2)
  509. @INSTALL_LIBBFD_TRUE@bfdinclude_HEADERS = $(BFD_H) \
  510. @INSTALL_LIBBFD_TRUE@ $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
  511. @INSTALL_LIBBFD_TRUE@ $(INCDIR)/diagnostics.h \
  512. @INSTALL_LIBBFD_TRUE@ $(INCDIR)/bfdlink.h $(am__append_2)
  513. @INSTALL_LIBBFD_FALSE@rpath_bfdlibdir = @bfdlibdir@
  514. @INSTALL_LIBBFD_FALSE@noinst_LTLIBRARIES = libbfd.la
  515. # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
  516. # -I../zlib, unless we were configured with --with-system-zlib, in which
  517. # case both are empty.
  518. ZLIB = @zlibdir@ -lz
  519. ZLIBINC = @zlibinc@
  520. AM_CFLAGS = $(WARN_CFLAGS) $(ZLIBINC)
  521. AM_CPPFLAGS = -DBINDIR='"$(bindir)"' -DLIBDIR='"$(libdir)"' \
  522. @LARGEFILE_CPPFLAGS@ @HDEFINES@ @COREFLAG@ @TDEFINES@ \
  523. $(CSEARCH) $(CSWITCHES) $(HAVEVECS) @INCINTL@
  524. @PLUGINS_TRUE@LIBDL = @lt_cv_dlopen_libs@
  525. # bfd.h goes here, for now
  526. BFD_H = bfd.h
  527. # Jim Kingdon notes:
  528. # Writing S-records should be included in all (or at least most)
  529. # *-*-coff, *-*-aout, etc., configurations, because people will want to
  530. # be able to use objcopy to create S-records. (S-records are not useful
  531. # for the debugger, so if you are downloading things as S-records you
  532. # need two copies of the executable, one to download and one for the
  533. # debugger).
  534. BFD32_LIBS = \
  535. archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo cache.lo \
  536. coff-bfd.lo compress.lo corefile.lo elf-properties.lo format.lo \
  537. hash.lo init.lo libbfd.lo linker.lo merge.lo opncls.lo reloc.lo \
  538. section.lo simple.lo stab-syms.lo stabs.lo syms.lo targets.lo \
  539. binary.lo ihex.lo srec.lo tekhex.lo verilog.lo
  540. BFD64_LIBS = archive64.lo
  541. BFD32_LIBS_CFILES = \
  542. archive.c archures.c bfd.c bfdio.c bfdwin.c cache.c coff-bfd.c \
  543. compress.c corefile.c elf-properties.c format.c hash.c \
  544. init.c libbfd.c linker.c merge.c opncls.c reloc.c \
  545. section.c simple.c stab-syms.c stabs.c syms.c targets.c \
  546. binary.c ihex.c srec.c tekhex.c verilog.c
  547. BFD64_LIBS_CFILES = archive64.c
  548. # This list is alphabetized to make it easier to keep in sync
  549. # with the decls and initializer in archures.c.
  550. ALL_MACHINES = \
  551. cpu-aarch64.lo \
  552. cpu-alpha.lo \
  553. cpu-amdgcn.lo \
  554. cpu-arc.lo \
  555. cpu-arm.lo \
  556. cpu-avr.lo \
  557. cpu-bfin.lo \
  558. cpu-bpf.lo \
  559. cpu-cr16.lo \
  560. cpu-cris.lo \
  561. cpu-crx.lo \
  562. cpu-csky.lo \
  563. cpu-d10v.lo \
  564. cpu-d30v.lo \
  565. cpu-dlx.lo \
  566. cpu-epiphany.lo \
  567. cpu-fr30.lo \
  568. cpu-frv.lo \
  569. cpu-ft32.lo \
  570. cpu-h8300.lo \
  571. cpu-hppa.lo \
  572. cpu-i386.lo \
  573. cpu-iamcu.lo \
  574. cpu-ia64.lo \
  575. cpu-ip2k.lo \
  576. cpu-iq2000.lo \
  577. cpu-lm32.lo \
  578. cpu-loongarch.lo \
  579. cpu-m10200.lo \
  580. cpu-m10300.lo \
  581. cpu-m32c.lo \
  582. cpu-m32r.lo \
  583. cpu-m68hc11.lo \
  584. cpu-m68hc12.lo \
  585. cpu-m9s12x.lo \
  586. cpu-s12z.lo \
  587. cpu-m9s12xg.lo \
  588. cpu-m68k.lo \
  589. cpu-mcore.lo \
  590. cpu-mep.lo \
  591. cpu-metag.lo \
  592. cpu-microblaze.lo \
  593. cpu-mips.lo \
  594. cpu-mmix.lo \
  595. cpu-moxie.lo \
  596. cpu-msp430.lo \
  597. cpu-mt.lo \
  598. cpu-nds32.lo \
  599. cpu-nfp.lo \
  600. cpu-nios2.lo \
  601. cpu-ns32k.lo \
  602. cpu-or1k.lo \
  603. cpu-pdp11.lo \
  604. cpu-pj.lo \
  605. cpu-powerpc.lo \
  606. cpu-pru.lo \
  607. cpu-rs6000.lo \
  608. cpu-riscv.lo \
  609. cpu-rl78.lo \
  610. cpu-rx.lo \
  611. cpu-s390.lo \
  612. cpu-score.lo \
  613. cpu-sh.lo \
  614. cpu-sparc.lo \
  615. cpu-spu.lo \
  616. cpu-tic30.lo \
  617. cpu-tic4x.lo \
  618. cpu-tic54x.lo \
  619. cpu-tic6x.lo \
  620. cpu-tilegx.lo \
  621. cpu-tilepro.lo \
  622. cpu-v850.lo \
  623. cpu-v850_rh850.lo \
  624. cpu-vax.lo \
  625. cpu-visium.lo \
  626. cpu-wasm32.lo \
  627. cpu-xc16x.lo \
  628. cpu-xgate.lo \
  629. cpu-xstormy16.lo \
  630. cpu-xtensa.lo \
  631. cpu-z80.lo \
  632. cpu-z8k.lo
  633. ALL_MACHINES_CFILES = \
  634. cpu-aarch64.c \
  635. cpu-alpha.c \
  636. cpu-amdgcn.c \
  637. cpu-arc.c \
  638. cpu-arm.c \
  639. cpu-avr.c \
  640. cpu-bfin.c \
  641. cpu-bpf.c \
  642. cpu-cr16.c \
  643. cpu-cris.c \
  644. cpu-crx.c \
  645. cpu-csky.c \
  646. cpu-d10v.c \
  647. cpu-d30v.c \
  648. cpu-dlx.c \
  649. cpu-epiphany.c \
  650. cpu-fr30.c \
  651. cpu-frv.c \
  652. cpu-ft32.c \
  653. cpu-h8300.c \
  654. cpu-hppa.c \
  655. cpu-i386.c \
  656. cpu-iamcu.c \
  657. cpu-ia64.c \
  658. cpu-ip2k.c \
  659. cpu-iq2000.c \
  660. cpu-lm32.c \
  661. cpu-loongarch.c \
  662. cpu-m10200.c \
  663. cpu-m10300.c \
  664. cpu-m32c.c \
  665. cpu-m32r.c \
  666. cpu-m68hc11.c \
  667. cpu-m68hc12.c \
  668. cpu-m9s12x.c \
  669. cpu-s12z.c \
  670. cpu-m9s12xg.c \
  671. cpu-m68k.c \
  672. cpu-mcore.c \
  673. cpu-mep.c \
  674. cpu-metag.c \
  675. cpu-microblaze.c \
  676. cpu-mips.c \
  677. cpu-mmix.c \
  678. cpu-moxie.c \
  679. cpu-msp430.c \
  680. cpu-mt.c \
  681. cpu-nds32.c \
  682. cpu-nfp.c \
  683. cpu-ns32k.c \
  684. cpu-nios2.c \
  685. cpu-or1k.c \
  686. cpu-pdp11.c \
  687. cpu-pj.c \
  688. cpu-powerpc.c \
  689. cpu-pru.c \
  690. cpu-rs6000.c \
  691. cpu-riscv.c \
  692. cpu-rl78.c \
  693. cpu-rx.c \
  694. cpu-s390.c \
  695. cpu-score.c \
  696. cpu-sh.c \
  697. cpu-sparc.c \
  698. cpu-spu.c \
  699. cpu-tic30.c \
  700. cpu-tic4x.c \
  701. cpu-tic54x.c \
  702. cpu-tic6x.c \
  703. cpu-tilegx.c \
  704. cpu-tilepro.c \
  705. cpu-v850.c \
  706. cpu-v850_rh850.c \
  707. cpu-vax.c \
  708. cpu-visium.c \
  709. cpu-wasm32.c \
  710. cpu-xc16x.c \
  711. cpu-xgate.c \
  712. cpu-xstormy16.c \
  713. cpu-xtensa.c \
  714. cpu-z80.c \
  715. cpu-z8k.c
  716. # The .o files needed by all of the 32 bit vectors that are configured into
  717. # target_vector in targets.c if configured with --enable-targets=all.
  718. BFD32_BACKENDS = \
  719. aout-cris.lo \
  720. aout-ns32k.lo \
  721. aout32.lo \
  722. cf-i386lynx.lo \
  723. coff-go32.lo \
  724. coff-i386.lo \
  725. coff-mips.lo \
  726. coff-rs6000.lo \
  727. coff-sh.lo \
  728. coff-stgo32.lo \
  729. coff-tic30.lo \
  730. coff-tic4x.lo \
  731. coff-tic54x.lo \
  732. coff-z80.lo \
  733. coff-z8k.lo \
  734. coffgen.lo \
  735. cofflink.lo \
  736. dwarf1.lo \
  737. dwarf2.lo \
  738. ecoff.lo \
  739. ecofflink.lo \
  740. elf-attrs.lo \
  741. elf-eh-frame.lo \
  742. elf-ifunc.lo \
  743. elf-m10200.lo \
  744. elf-m10300.lo \
  745. elf-nacl.lo \
  746. elf-strtab.lo \
  747. elf-vxworks.lo \
  748. elf.lo \
  749. elf32-am33lin.lo \
  750. elf32-arc.lo \
  751. elf32-arm.lo \
  752. elf32-avr.lo \
  753. elf32-bfin.lo \
  754. elf32-cr16.lo \
  755. elf32-cris.lo \
  756. elf32-crx.lo \
  757. elf32-csky.lo \
  758. elf32-d10v.lo \
  759. elf32-d30v.lo \
  760. elf32-dlx.lo \
  761. elf32-epiphany.lo \
  762. elf32-fr30.lo \
  763. elf32-frv.lo \
  764. elf32-ft32.lo \
  765. elf32-gen.lo \
  766. elf32-h8300.lo \
  767. elf32-hppa.lo \
  768. elf32-i386.lo \
  769. elfxx-x86.lo \
  770. elf32-ip2k.lo \
  771. elf32-iq2000.lo \
  772. elf32-lm32.lo \
  773. elf32-m32c.lo \
  774. elf32-m32r.lo \
  775. elf32-m68hc11.lo \
  776. elf32-m68hc12.lo \
  777. elf32-m68hc1x.lo \
  778. elf32-m68k.lo \
  779. elf32-s12z.lo \
  780. elf32-mcore.lo \
  781. elf32-mep.lo \
  782. elf32-metag.lo \
  783. elf32-microblaze.lo \
  784. elf32-moxie.lo \
  785. elf32-msp430.lo \
  786. elf32-mt.lo \
  787. elf32-nds32.lo \
  788. elf32-nios2.lo \
  789. elf32-or1k.lo \
  790. elf32-pj.lo \
  791. elf32-ppc.lo \
  792. elf32-pru.lo \
  793. elf32-rl78.lo \
  794. elf32-rx.lo \
  795. elf32-s390.lo \
  796. elf32-sh.lo \
  797. elf32-sparc.lo \
  798. elf32-spu.lo \
  799. elf32-tic6x.lo \
  800. elf32-tilegx.lo \
  801. elf32-tilepro.lo \
  802. elf32-v850.lo \
  803. elf32-vax.lo \
  804. elf32-visium.lo \
  805. elf32-wasm32.lo \
  806. elf32-xc16x.lo \
  807. elf32-xgate.lo \
  808. elf32-xstormy16.lo \
  809. elf32-xtensa.lo \
  810. elf32-z80.lo \
  811. elf32.lo \
  812. elflink.lo \
  813. elfxx-sparc.lo \
  814. elfxx-tilegx.lo \
  815. i386aout.lo \
  816. i386bsd.lo \
  817. i386lynx.lo \
  818. i386msdos.lo \
  819. mach-o.lo \
  820. mach-o-i386.lo \
  821. mach-o-arm.lo \
  822. ns32knetbsd.lo \
  823. pc532-mach.lo \
  824. pdp11.lo \
  825. pe-arm-wince.lo \
  826. pe-arm.lo \
  827. pe-i386.lo \
  828. pe-mcore.lo \
  829. pe-sh.lo \
  830. pef.lo \
  831. pei-arm-wince.lo \
  832. pei-arm.lo \
  833. pei-i386.lo \
  834. pei-mcore.lo \
  835. pei-sh.lo \
  836. peigen.lo \
  837. plugin.lo \
  838. ppcboot.lo \
  839. reloc16.lo \
  840. som.lo \
  841. vax1knetbsd.lo \
  842. vaxnetbsd.lo \
  843. vms-lib.lo \
  844. vms-misc.lo \
  845. wasm-module.lo \
  846. xcofflink.lo \
  847. xsym.lo \
  848. xtensa-isa.lo \
  849. xtensa-modules.lo
  850. BFD32_BACKENDS_CFILES = \
  851. aout-cris.c \
  852. aout-ns32k.c \
  853. aout32.c \
  854. cf-i386lynx.c \
  855. coff-go32.c \
  856. coff-i386.c \
  857. coff-mips.c \
  858. coff-rs6000.c \
  859. coff-sh.c \
  860. coff-stgo32.c \
  861. coff-tic30.c \
  862. coff-tic4x.c \
  863. coff-tic54x.c \
  864. coff-z80.c \
  865. coff-z8k.c \
  866. coffgen.c \
  867. cofflink.c \
  868. dwarf1.c \
  869. dwarf2.c \
  870. ecoff.c \
  871. ecofflink.c \
  872. elf-attrs.c \
  873. elf-eh-frame.c \
  874. elf-ifunc.c \
  875. elf-m10200.c \
  876. elf-m10300.c \
  877. elf-nacl.c \
  878. elf-strtab.c \
  879. elf-vxworks.c \
  880. elf.c \
  881. elf32-am33lin.c \
  882. elf32-arc.c \
  883. elf32-arm.c \
  884. elf32-avr.c \
  885. elf32-bfin.c \
  886. elf32-cr16.c \
  887. elf32-cris.c \
  888. elf32-crx.c \
  889. elf32-csky.c \
  890. elf32-d10v.c \
  891. elf32-d30v.c \
  892. elf32-dlx.c \
  893. elf32-epiphany.c \
  894. elf32-fr30.c \
  895. elf32-frv.c \
  896. elf32-ft32.c \
  897. elf32-gen.c \
  898. elf32-h8300.c \
  899. elf32-hppa.c \
  900. elf32-i386.c \
  901. elfxx-x86.c \
  902. elf32-ip2k.c \
  903. elf32-iq2000.c \
  904. elf32-lm32.c \
  905. elf32-m32c.c \
  906. elf32-m32r.c \
  907. elf32-m68hc11.c \
  908. elf32-m68hc12.c \
  909. elf32-m68hc1x.c \
  910. elf32-m68k.c \
  911. elf32-s12z.c \
  912. elf32-mcore.c \
  913. elf32-mep.c \
  914. elf32-metag.c \
  915. elf32-microblaze.c \
  916. elf32-moxie.c \
  917. elf32-msp430.c \
  918. elf32-mt.c \
  919. elf32-nds32.c \
  920. elf32-nios2.c \
  921. elf32-or1k.c \
  922. elf32-pj.c \
  923. elf32-ppc.c \
  924. elf32-pru.c \
  925. elf32-rl78.c \
  926. elf32-rx.c \
  927. elf32-s390.c \
  928. elf32-sh.c \
  929. elf32-sparc.c \
  930. elf32-spu.c \
  931. elf32-tic6x.c \
  932. elf32-tilegx.c \
  933. elf32-tilepro.c \
  934. elf32-v850.c \
  935. elf32-vax.c \
  936. elf32-visium.c \
  937. elf32-wasm32.c \
  938. elf32-xc16x.c \
  939. elf32-xgate.c \
  940. elf32-xstormy16.c \
  941. elf32-xtensa.c \
  942. elf32-z80.c \
  943. elf32.c \
  944. elflink.c \
  945. elfxx-sparc.c \
  946. elfxx-tilegx.c \
  947. i386aout.c \
  948. i386bsd.c \
  949. i386lynx.c \
  950. i386msdos.c \
  951. mach-o.c \
  952. mach-o-i386.c \
  953. mach-o-arm.c \
  954. ns32knetbsd.c \
  955. pc532-mach.c \
  956. pdp11.c \
  957. pe-arm-wince.c \
  958. pe-arm.c \
  959. pe-i386.c \
  960. pe-mcore.c \
  961. pe-sh.c \
  962. pef.c \
  963. pei-arm-wince.c \
  964. pei-arm.c \
  965. pei-i386.c \
  966. pei-mcore.c \
  967. pei-sh.c \
  968. plugin.c \
  969. ppcboot.c \
  970. reloc16.c \
  971. som.c \
  972. vax1knetbsd.c \
  973. vaxnetbsd.c \
  974. vms-lib.c \
  975. vms-misc.c \
  976. wasm-module.c \
  977. xcofflink.c \
  978. xsym.c \
  979. xtensa-isa.c \
  980. xtensa-modules.c
  981. # The .o files needed by all of the 64 bit vectors that are configured into
  982. # target_vector in targets.c if configured with --enable-targets=all
  983. # and --enable-64-bit-bfd.
  984. # elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
  985. # BFD32_BACKENDS.
  986. BFD64_BACKENDS = \
  987. elf32-aarch64.lo \
  988. elf64-aarch64.lo \
  989. elfxx-aarch64.lo \
  990. aix5ppc-core.lo \
  991. aout64.lo \
  992. coff-alpha.lo \
  993. coff-x86_64.lo \
  994. coff64-rs6000.lo \
  995. elf32-ia64.lo \
  996. elf32-mips.lo \
  997. elf32-score.lo \
  998. elf32-score7.lo \
  999. elf64-alpha.lo \
  1000. elf64-amdgcn.lo \
  1001. elf64-gen.lo \
  1002. elf64-hppa.lo \
  1003. elf64-ia64.lo \
  1004. elf64-ia64-vms.lo \
  1005. elfxx-ia64.lo \
  1006. elf32-loongarch.lo \
  1007. elf64-loongarch.lo \
  1008. elfxx-loongarch.lo \
  1009. elfn32-mips.lo \
  1010. elf64-mips.lo \
  1011. elfxx-mips.lo \
  1012. elf64-mmix.lo \
  1013. elf64-nfp.lo \
  1014. elf64-ppc.lo \
  1015. elf32-riscv.lo \
  1016. elf64-riscv.lo \
  1017. elfxx-riscv.lo \
  1018. elf64-s390.lo \
  1019. elf64-sparc.lo \
  1020. elf64-tilegx.lo \
  1021. elf64-x86-64.lo \
  1022. elfxx-x86.lo \
  1023. elf64-bpf.lo \
  1024. elf64.lo \
  1025. mach-o-aarch64.lo \
  1026. mach-o-x86-64.lo \
  1027. mmo.lo \
  1028. pe-aarch64igen.lo \
  1029. pe-x86_64.lo \
  1030. pei-aarch64.lo \
  1031. pei-ia64.lo \
  1032. pei-x86_64.lo \
  1033. pepigen.lo \
  1034. pex64igen.lo \
  1035. vms-alpha.lo
  1036. BFD64_BACKENDS_CFILES = \
  1037. aix5ppc-core.c \
  1038. aout64.c \
  1039. coff-alpha.c \
  1040. coff-x86_64.c \
  1041. coff64-rs6000.c \
  1042. elf32-mips.c \
  1043. elf32-score.c \
  1044. elf32-score7.c \
  1045. elf64-alpha.c \
  1046. elf64-amdgcn.c \
  1047. elf64-gen.c \
  1048. elf64-hppa.c \
  1049. elf64-ia64-vms.c \
  1050. elf64-mips.c \
  1051. elf64-mmix.c \
  1052. elf64-nfp.c \
  1053. elf64-ppc.c \
  1054. elf64-s390.c \
  1055. elf64-sparc.c \
  1056. elf64-tilegx.c \
  1057. elf64-x86-64.c \
  1058. elfxx-x86.c \
  1059. elf64-bpf.c \
  1060. elf64.c \
  1061. elfn32-mips.c \
  1062. elfxx-aarch64.c \
  1063. elfxx-ia64.c \
  1064. elfxx-loongarch.c \
  1065. elfxx-mips.c \
  1066. elfxx-riscv.c \
  1067. mach-o-aarch64.c \
  1068. mach-o-x86-64.c \
  1069. mmo.c \
  1070. pe-x86_64.c \
  1071. pei-aarch64.c \
  1072. pei-ia64.c \
  1073. pei-x86_64.c \
  1074. vms-alpha.c
  1075. OPTIONAL_BACKENDS = \
  1076. aix386-core.lo \
  1077. cisco-core.lo \
  1078. hpux-core.lo \
  1079. irix-core.lo \
  1080. lynx-core.lo \
  1081. netbsd-core.lo \
  1082. osf-core.lo \
  1083. rs6000-core.lo \
  1084. sco5-core.lo \
  1085. trad-core.lo
  1086. OPTIONAL_BACKENDS_CFILES = \
  1087. aix386-core.c \
  1088. cisco-core.c \
  1089. hpux-core.c \
  1090. irix-core.c \
  1091. lynx-core.c \
  1092. netbsd-core.c \
  1093. osf-core.c \
  1094. rs6000-core.c \
  1095. sco5-core.c \
  1096. trad-core.c
  1097. # Reconfigure if config.bfd or configure.host changes.
  1098. # development.sh is used to determine -Werror default.
  1099. CONFIG_STATUS_DEPENDENCIES = \
  1100. $(srcdir)/config.bfd \
  1101. $(srcdir)/configure.host \
  1102. $(srcdir)/development.sh
  1103. # These are defined by configure:
  1104. WORDSIZE = @wordsize@
  1105. ALL_BACKENDS = @all_backends@
  1106. BFD_BACKENDS = @bfd_backends@
  1107. BFD_MACHINES = @bfd_machines@
  1108. TDEFAULTS = @tdefaults@
  1109. HAVEVECS = @havevecs@
  1110. # C source files that correspond to .o's.
  1111. SOURCE_CFILES = \
  1112. $(BFD32_LIBS_CFILES) \
  1113. $(BFD64_LIBS_CFILES) \
  1114. $(ALL_MACHINES_CFILES) \
  1115. $(BFD32_BACKENDS_CFILES) \
  1116. $(BFD64_BACKENDS_CFILES) \
  1117. $(OPTIONAL_BACKENDS_CFILES)
  1118. BUILD_CFILES = \
  1119. elf32-aarch64.c elf64-aarch64.c \
  1120. elf32-ia64.c elf64-ia64.c \
  1121. elf32-loongarch.c elf64-loongarch.c \
  1122. elf32-riscv.c elf64-riscv.c \
  1123. peigen.c pepigen.c pex64igen.c pe-aarch64igen.c
  1124. CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
  1125. SOURCE_HFILES = \
  1126. aout-target.h aoutx.h arc-got.h arc-plt.h \
  1127. coff-arm.h coff-bfd.h coffcode.h coffswap.h \
  1128. cpu-aarch64.h cpu-arm.h cpu-h8300.h cpu-m68k.h cpu-riscv.h \
  1129. ecoff-bfd.h ecoffswap.h \
  1130. elf32-arm.h elf32-avr.h elf32-bfin.h elf32-cr16.h elf32-csky.h \
  1131. elf32-dlx.h elf32-hppa.h elf32-m68hc1x.h elf32-m68k.h \
  1132. elf32-metag.h elf32-nds32.h elf32-nios2.h elf32-ppc.h \
  1133. elf32-rx.h elf32-score.h elf32-sh-relocs.h elf32-spu.h \
  1134. elf32-tic6x.h elf32-tilegx.h elf32-tilepro.h elf32-v850.h \
  1135. elf64-hppa.h elf64-ppc.h elf64-tilegx.h \
  1136. elf-bfd.h elfcode.h elfcore.h elf-hppa.h elf-linker-x86.h \
  1137. elf-linux-core.h elf-nacl.h elf-s390.h elf-vxworks.h \
  1138. elfxx-aarch64.h elfxx-ia64.h elfxx-mips.h elfxx-riscv.h \
  1139. elfxx-sparc.h elfxx-tilegx.h elfxx-x86.h elfxx-loongarch.h \
  1140. genlink.h go32stub.h \
  1141. libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \
  1142. libpei.h libxcoff.h \
  1143. mach-o.h \
  1144. netbsd.h ns32k.h \
  1145. pef.h pef-traceback.h peicode.h plugin.h \
  1146. som.h sysdep.h \
  1147. version.h vms.h \
  1148. wasm-module.h \
  1149. xcofflink.h xsym.h
  1150. BUILD_HFILES = \
  1151. bfdver.h elf32-target.h elf64-target.h targmatch.h
  1152. # Ensure they are built early:
  1153. BUILT_SOURCES = $(BUILD_HFILES)
  1154. HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
  1155. BFD_H_DEPS = $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/diagnostics.h
  1156. LOCAL_H_DEPS = libbfd.h sysdep.h config.h
  1157. SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
  1158. BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
  1159. # Various kinds of .o files to put in libbfd.a:
  1160. # BFD_BACKENDS Routines the configured targets need.
  1161. # BFD_MACHINES Architecture-specific routines the configured targets need.
  1162. # COREFILE Core file routines for a native configuration
  1163. # bfd64_libs Routines for 64bit support
  1164. OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ @bfd64_libs@
  1165. # Since BFD64_LIBS is optional and we can't have substitution in
  1166. # libbfd_la_SOURCES, we put BFD64_LIBS in OFILES instead.
  1167. # However, list all sources in EXTRA_libbfd_la_SOURCES so the
  1168. # dependency tracking fragments are picked up in the Makefile.
  1169. libbfd_la_SOURCES = $(BFD32_LIBS_CFILES)
  1170. EXTRA_libbfd_la_SOURCES = $(CFILES)
  1171. libbfd_la_DEPENDENCIES = $(OFILES) ofiles
  1172. libbfd_la_LIBADD = `cat ofiles` @SHARED_LIBADD@ $(LIBDL) $(ZLIB)
  1173. # libtool will build .libs/libbfd.a. We create libbfd.a in the build
  1174. # directory so that we don't have to convert all the programs that use
  1175. # libbfd.a simultaneously. This is a hack which should be removed if
  1176. # everything else starts using libtool. FIXME.
  1177. noinst_LIBRARIES = libbfd.a
  1178. libbfd_a_SOURCES =
  1179. BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c \
  1180. bfdio.c bfdwin.c section.c archures.c reloc.c \
  1181. syms.c bfd.c archive.c corefile.c targets.c format.c \
  1182. linker.c simple.c compress.c
  1183. BFD64_H_FILES = archive64.c
  1184. LIBBFD_H_FILES = libbfd-in.h libbfd.c bfdio.c bfdwin.c \
  1185. cache.c reloc.c archures.c linker.c
  1186. LIBCOFF_H_FILES = libcoff-in.h coffcode.h
  1187. # We only rebuild the header files automatically if we have been
  1188. # configured with --enable-maintainer-mode.
  1189. REGEN_HEADER = \
  1190. ( \
  1191. set -e; \
  1192. echo "$$H_FILES" | sed -f $(srcdir)/doc/header.sed; \
  1193. for file in $$H_FILES; do \
  1194. file="$(srcdir)/$$file"; \
  1195. case $$file in \
  1196. *-in.h) cat $$file;; \
  1197. *) echo $$file | sed -e 's,.*/,,' -e 's,^,/* Extracted from ,' \
  1198. -e 's,$$,. */,'; \
  1199. $(MKDOC) $$CHEW_FLAGS -f $(srcdir)/doc/proto.str < $$file;; \
  1200. esac; \
  1201. done; \
  1202. echo "\#ifdef __cplusplus"; \
  1203. echo "}"; \
  1204. echo "\#endif"; \
  1205. echo "\#endif"; \
  1206. )
  1207. DOCFILES = \
  1208. doc/aoutx.texi \
  1209. doc/archive.texi \
  1210. doc/archures.texi \
  1211. doc/bfdio.texi \
  1212. doc/bfdt.texi \
  1213. doc/bfdver.texi \
  1214. doc/bfdwin.texi \
  1215. doc/cache.texi \
  1216. doc/coffcode.texi \
  1217. doc/corefile.texi \
  1218. doc/elfcode.texi \
  1219. doc/elf.texi \
  1220. doc/format.texi \
  1221. doc/hash.texi \
  1222. doc/init.texi \
  1223. doc/libbfd.texi \
  1224. doc/linker.texi \
  1225. doc/mmo.texi \
  1226. doc/opncls.texi \
  1227. doc/reloc.texi \
  1228. doc/section.texi \
  1229. doc/syms.texi \
  1230. doc/targets.texi
  1231. # SRCDOC, SRCPROT, SRCIPROT only used to sidestep Sun Make bug in interaction
  1232. # between VPATH and suffix rules. If you use GNU Make, perhaps other Makes,
  1233. # you don't need these three:
  1234. SRCDOC = \
  1235. $(srcdir)/aoutx.h $(srcdir)/archive.c \
  1236. $(srcdir)/archures.c $(srcdir)/bfd.c \
  1237. $(srcdir)/bfdio.c $(srcdir)/bfdwin.c \
  1238. $(srcdir)/cache.c $(srcdir)/coffcode.h \
  1239. $(srcdir)/corefile.c $(srcdir)/elf.c \
  1240. $(srcdir)/elfcode.h $(srcdir)/format.c \
  1241. $(srcdir)/libbfd.c $(srcdir)/opncls.c \
  1242. $(srcdir)/reloc.c $(srcdir)/section.c \
  1243. $(srcdir)/syms.c $(srcdir)/targets.c \
  1244. $(srcdir)/hash.c $(srcdir)/linker.c \
  1245. $(srcdir)/mmo.c
  1246. SRCPROT = $(srcdir)/archive.c $(srcdir)/archures.c \
  1247. $(srcdir)/bfd.c $(srcdir)/coffcode.h $(srcdir)/corefile.c \
  1248. $(srcdir)/format.c $(srcdir)/libbfd.c \
  1249. $(srcdir)/bfdio.c $(srcdir)/bfdwin.c \
  1250. $(srcdir)/opncls.c $(srcdir)/reloc.c \
  1251. $(srcdir)/section.c $(srcdir)/syms.c \
  1252. $(srcdir)/targets.c $(srcdir)/init.c
  1253. SRCIPROT = $(srcdir)/cache.c $(srcdir)/libbfd.c \
  1254. $(srcdir)/bfdio.c $(srcdir)/bfdwin.c \
  1255. $(srcdir)/reloc.c $(srcdir)/cpu-h8300.c \
  1256. $(srcdir)/cpu-i960.c $(srcdir)/archures.c \
  1257. $(srcdir)/init.c
  1258. TEXIDIR = $(srcdir)/../texinfo/fsf
  1259. info_TEXINFOS = doc/bfd.texi
  1260. doc_bfd_TEXINFOS = $(DOCFILES) doc/bfdsumm.texi
  1261. AM_MAKEINFOFLAGS = --no-split -I "$(srcdir)/doc" -I doc
  1262. TEXI2DVI = texi2dvi -I "$(srcdir)/doc" -I doc
  1263. MKDOC = doc/chew$(EXEEXT_FOR_BUILD)
  1264. # We can't replace these rules with an implicit rule, because
  1265. # makes without VPATH support couldn't find the .h files in `..'.
  1266. # We do not depend on chew directly so that we can distribute the info
  1267. # files, and permit people to rebuild them, without requiring the makeinfo
  1268. # program. If somebody tries to rebuild info, but none of the .texi files
  1269. # have changed, then nothing will be rebuilt.
  1270. REGEN_TEXI = \
  1271. ( \
  1272. set -e; \
  1273. $(MKDOC) -f $(srcdir)/doc/doc.str < $< > $@.tmp; \
  1274. texi=$@; \
  1275. texi=$${texi%.stamp}.texi; \
  1276. test -e $$texi || test ! -f $(srcdir)/$$texi || $(LN_S) $(srcdir)/$$texi .; \
  1277. $(SHELL) $(srcdir)/../move-if-change $@.tmp $$texi; \
  1278. touch $@; \
  1279. )
  1280. noinst_TEXINFOS = doc/bfdint.texi
  1281. all: $(BUILT_SOURCES) config.h
  1282. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  1283. .SUFFIXES:
  1284. .SUFFIXES: .c .dvi .lo .o .obj .ps
  1285. am--refresh: Makefile
  1286. @:
  1287. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/doc/local.mk $(am__configure_deps)
  1288. @for dep in $?; do \
  1289. case '$(am__configure_deps)' in \
  1290. *$$dep*) \
  1291. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  1292. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  1293. && exit 0; \
  1294. exit 1;; \
  1295. esac; \
  1296. done; \
  1297. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  1298. $(am__cd) $(top_srcdir) && \
  1299. $(AUTOMAKE) --foreign Makefile
  1300. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  1301. @case '$?' in \
  1302. *config.status*) \
  1303. echo ' $(SHELL) ./config.status'; \
  1304. $(SHELL) ./config.status;; \
  1305. *) \
  1306. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  1307. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  1308. esac;
  1309. $(srcdir)/doc/local.mk $(am__empty):
  1310. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  1311. $(SHELL) ./config.status --recheck
  1312. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  1313. $(am__cd) $(srcdir) && $(AUTOCONF)
  1314. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  1315. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  1316. $(am__aclocal_m4_deps):
  1317. config.h: stamp-h1
  1318. @test -f $@ || rm -f stamp-h1
  1319. @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
  1320. stamp-h1: $(srcdir)/config.in $(top_builddir)/config.status
  1321. @rm -f stamp-h1
  1322. cd $(top_builddir) && $(SHELL) ./config.status config.h
  1323. $(srcdir)/config.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  1324. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  1325. rm -f stamp-h1
  1326. touch $@
  1327. distclean-hdr:
  1328. -rm -f config.h stamp-h1
  1329. bfd-in3.h: $(top_builddir)/config.status $(srcdir)/bfd-in2.h
  1330. cd $(top_builddir) && $(SHELL) ./config.status $@
  1331. po/Makefile.in: $(top_builddir)/config.status $(top_srcdir)/po/Make-in
  1332. cd $(top_builddir) && $(SHELL) ./config.status $@
  1333. clean-noinstLIBRARIES:
  1334. -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
  1335. install-bfdlibLTLIBRARIES: $(bfdlib_LTLIBRARIES)
  1336. @$(NORMAL_INSTALL)
  1337. @list='$(bfdlib_LTLIBRARIES)'; test -n "$(bfdlibdir)" || list=; \
  1338. list2=; for p in $$list; do \
  1339. if test -f $$p; then \
  1340. list2="$$list2 $$p"; \
  1341. else :; fi; \
  1342. done; \
  1343. test -z "$$list2" || { \
  1344. echo " $(MKDIR_P) '$(DESTDIR)$(bfdlibdir)'"; \
  1345. $(MKDIR_P) "$(DESTDIR)$(bfdlibdir)" || exit 1; \
  1346. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(bfdlibdir)'"; \
  1347. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(bfdlibdir)"; \
  1348. }
  1349. uninstall-bfdlibLTLIBRARIES:
  1350. @$(NORMAL_UNINSTALL)
  1351. @list='$(bfdlib_LTLIBRARIES)'; test -n "$(bfdlibdir)" || list=; \
  1352. for p in $$list; do \
  1353. $(am__strip_dir) \
  1354. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(bfdlibdir)/$$f'"; \
  1355. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(bfdlibdir)/$$f"; \
  1356. done
  1357. clean-bfdlibLTLIBRARIES:
  1358. -test -z "$(bfdlib_LTLIBRARIES)" || rm -f $(bfdlib_LTLIBRARIES)
  1359. @list='$(bfdlib_LTLIBRARIES)'; \
  1360. locs=`for p in $$list; do echo $$p; done | \
  1361. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  1362. sort -u`; \
  1363. test -z "$$locs" || { \
  1364. echo rm -f $${locs}; \
  1365. rm -f $${locs}; \
  1366. }
  1367. clean-noinstLTLIBRARIES:
  1368. -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
  1369. @list='$(noinst_LTLIBRARIES)'; \
  1370. locs=`for p in $$list; do echo $$p; done | \
  1371. sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
  1372. sort -u`; \
  1373. test -z "$$locs" || { \
  1374. echo rm -f $${locs}; \
  1375. rm -f $${locs}; \
  1376. }
  1377. libbfd.la: $(libbfd_la_OBJECTS) $(libbfd_la_DEPENDENCIES) $(EXTRA_libbfd_la_DEPENDENCIES)
  1378. $(AM_V_CCLD)$(libbfd_la_LINK) $(am_libbfd_la_rpath) $(libbfd_la_OBJECTS) $(libbfd_la_LIBADD) $(LIBS)
  1379. mostlyclean-compile:
  1380. -rm -f *.$(OBJEXT)
  1381. distclean-compile:
  1382. -rm -f *.tab.c
  1383. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aix386-core.Plo@am__quote@
  1384. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aix5ppc-core.Plo@am__quote@
  1385. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aout-cris.Plo@am__quote@
  1386. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aout-ns32k.Plo@am__quote@
  1387. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aout32.Plo@am__quote@
  1388. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aout64.Plo@am__quote@
  1389. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/archive.Plo@am__quote@
  1390. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/archive64.Plo@am__quote@
  1391. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/archures.Plo@am__quote@
  1392. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bfd.Plo@am__quote@
  1393. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bfdio.Plo@am__quote@
  1394. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bfdwin.Plo@am__quote@
  1395. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/binary.Plo@am__quote@
  1396. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cache.Plo@am__quote@
  1397. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cf-i386lynx.Plo@am__quote@
  1398. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cisco-core.Plo@am__quote@
  1399. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-alpha.Plo@am__quote@
  1400. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-bfd.Plo@am__quote@
  1401. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-go32.Plo@am__quote@
  1402. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-i386.Plo@am__quote@
  1403. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-mips.Plo@am__quote@
  1404. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-rs6000.Plo@am__quote@
  1405. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-sh.Plo@am__quote@
  1406. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-stgo32.Plo@am__quote@
  1407. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-tic30.Plo@am__quote@
  1408. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-tic4x.Plo@am__quote@
  1409. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-tic54x.Plo@am__quote@
  1410. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-x86_64.Plo@am__quote@
  1411. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-z80.Plo@am__quote@
  1412. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-z8k.Plo@am__quote@
  1413. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff64-rs6000.Plo@am__quote@
  1414. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coffgen.Plo@am__quote@
  1415. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cofflink.Plo@am__quote@
  1416. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compress.Plo@am__quote@
  1417. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/corefile.Plo@am__quote@
  1418. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-aarch64.Plo@am__quote@
  1419. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-alpha.Plo@am__quote@
  1420. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-amdgcn.Plo@am__quote@
  1421. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-arc.Plo@am__quote@
  1422. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-arm.Plo@am__quote@
  1423. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-avr.Plo@am__quote@
  1424. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-bfin.Plo@am__quote@
  1425. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-bpf.Plo@am__quote@
  1426. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-cr16.Plo@am__quote@
  1427. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-cris.Plo@am__quote@
  1428. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-crx.Plo@am__quote@
  1429. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-csky.Plo@am__quote@
  1430. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-d10v.Plo@am__quote@
  1431. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-d30v.Plo@am__quote@
  1432. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-dlx.Plo@am__quote@
  1433. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-epiphany.Plo@am__quote@
  1434. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-fr30.Plo@am__quote@
  1435. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-frv.Plo@am__quote@
  1436. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-ft32.Plo@am__quote@
  1437. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-h8300.Plo@am__quote@
  1438. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-hppa.Plo@am__quote@
  1439. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-i386.Plo@am__quote@
  1440. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-ia64.Plo@am__quote@
  1441. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-iamcu.Plo@am__quote@
  1442. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-ip2k.Plo@am__quote@
  1443. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-iq2000.Plo@am__quote@
  1444. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-lm32.Plo@am__quote@
  1445. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-loongarch.Plo@am__quote@
  1446. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m10200.Plo@am__quote@
  1447. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m10300.Plo@am__quote@
  1448. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m32c.Plo@am__quote@
  1449. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m32r.Plo@am__quote@
  1450. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m68hc11.Plo@am__quote@
  1451. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m68hc12.Plo@am__quote@
  1452. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m68k.Plo@am__quote@
  1453. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m9s12x.Plo@am__quote@
  1454. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-m9s12xg.Plo@am__quote@
  1455. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-mcore.Plo@am__quote@
  1456. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-mep.Plo@am__quote@
  1457. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-metag.Plo@am__quote@
  1458. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-microblaze.Plo@am__quote@
  1459. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-mips.Plo@am__quote@
  1460. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-mmix.Plo@am__quote@
  1461. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-moxie.Plo@am__quote@
  1462. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-msp430.Plo@am__quote@
  1463. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-mt.Plo@am__quote@
  1464. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-nds32.Plo@am__quote@
  1465. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-nfp.Plo@am__quote@
  1466. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-nios2.Plo@am__quote@
  1467. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-ns32k.Plo@am__quote@
  1468. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-or1k.Plo@am__quote@
  1469. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-pdp11.Plo@am__quote@
  1470. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-pj.Plo@am__quote@
  1471. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-powerpc.Plo@am__quote@
  1472. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-pru.Plo@am__quote@
  1473. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-riscv.Plo@am__quote@
  1474. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-rl78.Plo@am__quote@
  1475. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-rs6000.Plo@am__quote@
  1476. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-rx.Plo@am__quote@
  1477. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-s12z.Plo@am__quote@
  1478. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-s390.Plo@am__quote@
  1479. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-score.Plo@am__quote@
  1480. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-sh.Plo@am__quote@
  1481. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-sparc.Plo@am__quote@
  1482. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-spu.Plo@am__quote@
  1483. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tic30.Plo@am__quote@
  1484. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tic4x.Plo@am__quote@
  1485. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tic54x.Plo@am__quote@
  1486. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tic6x.Plo@am__quote@
  1487. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tilegx.Plo@am__quote@
  1488. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-tilepro.Plo@am__quote@
  1489. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-v850.Plo@am__quote@
  1490. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-v850_rh850.Plo@am__quote@
  1491. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-vax.Plo@am__quote@
  1492. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-visium.Plo@am__quote@
  1493. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-wasm32.Plo@am__quote@
  1494. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-xc16x.Plo@am__quote@
  1495. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-xgate.Plo@am__quote@
  1496. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-xstormy16.Plo@am__quote@
  1497. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-xtensa.Plo@am__quote@
  1498. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-z80.Plo@am__quote@
  1499. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu-z8k.Plo@am__quote@
  1500. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf1.Plo@am__quote@
  1501. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf2.Plo@am__quote@
  1502. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecoff.Plo@am__quote@
  1503. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecofflink.Plo@am__quote@
  1504. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-attrs.Plo@am__quote@
  1505. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-eh-frame.Plo@am__quote@
  1506. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-ifunc.Plo@am__quote@
  1507. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-m10200.Plo@am__quote@
  1508. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-m10300.Plo@am__quote@
  1509. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-nacl.Plo@am__quote@
  1510. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-properties.Plo@am__quote@
  1511. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-strtab.Plo@am__quote@
  1512. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-vxworks.Plo@am__quote@
  1513. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf.Plo@am__quote@
  1514. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-aarch64.Plo@am__quote@
  1515. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-am33lin.Plo@am__quote@
  1516. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-arc.Plo@am__quote@
  1517. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-arm.Plo@am__quote@
  1518. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-avr.Plo@am__quote@
  1519. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-bfin.Plo@am__quote@
  1520. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-cr16.Plo@am__quote@
  1521. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-cris.Plo@am__quote@
  1522. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-crx.Plo@am__quote@
  1523. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-csky.Plo@am__quote@
  1524. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-d10v.Plo@am__quote@
  1525. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-d30v.Plo@am__quote@
  1526. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-dlx.Plo@am__quote@
  1527. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-epiphany.Plo@am__quote@
  1528. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-fr30.Plo@am__quote@
  1529. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-frv.Plo@am__quote@
  1530. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-ft32.Plo@am__quote@
  1531. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-gen.Plo@am__quote@
  1532. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-h8300.Plo@am__quote@
  1533. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-hppa.Plo@am__quote@
  1534. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-i386.Plo@am__quote@
  1535. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-ia64.Plo@am__quote@
  1536. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-ip2k.Plo@am__quote@
  1537. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-iq2000.Plo@am__quote@
  1538. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-lm32.Plo@am__quote@
  1539. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-loongarch.Plo@am__quote@
  1540. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m32c.Plo@am__quote@
  1541. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m32r.Plo@am__quote@
  1542. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m68hc11.Plo@am__quote@
  1543. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m68hc12.Plo@am__quote@
  1544. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m68hc1x.Plo@am__quote@
  1545. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-m68k.Plo@am__quote@
  1546. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-mcore.Plo@am__quote@
  1547. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-mep.Plo@am__quote@
  1548. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-metag.Plo@am__quote@
  1549. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-microblaze.Plo@am__quote@
  1550. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-mips.Plo@am__quote@
  1551. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-moxie.Plo@am__quote@
  1552. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-msp430.Plo@am__quote@
  1553. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-mt.Plo@am__quote@
  1554. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-nds32.Plo@am__quote@
  1555. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-nios2.Plo@am__quote@
  1556. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-or1k.Plo@am__quote@
  1557. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-pj.Plo@am__quote@
  1558. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-ppc.Plo@am__quote@
  1559. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-pru.Plo@am__quote@
  1560. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-riscv.Plo@am__quote@
  1561. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-rl78.Plo@am__quote@
  1562. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-rx.Plo@am__quote@
  1563. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-s12z.Plo@am__quote@
  1564. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-s390.Plo@am__quote@
  1565. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-score.Plo@am__quote@
  1566. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-score7.Plo@am__quote@
  1567. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-sh.Plo@am__quote@
  1568. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-sparc.Plo@am__quote@
  1569. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-spu.Plo@am__quote@
  1570. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-tic6x.Plo@am__quote@
  1571. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-tilegx.Plo@am__quote@
  1572. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-tilepro.Plo@am__quote@
  1573. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-v850.Plo@am__quote@
  1574. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-vax.Plo@am__quote@
  1575. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-visium.Plo@am__quote@
  1576. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-wasm32.Plo@am__quote@
  1577. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-xc16x.Plo@am__quote@
  1578. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-xgate.Plo@am__quote@
  1579. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-xstormy16.Plo@am__quote@
  1580. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-xtensa.Plo@am__quote@
  1581. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32-z80.Plo@am__quote@
  1582. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf32.Plo@am__quote@
  1583. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-aarch64.Plo@am__quote@
  1584. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-alpha.Plo@am__quote@
  1585. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-amdgcn.Plo@am__quote@
  1586. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-bpf.Plo@am__quote@
  1587. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-gen.Plo@am__quote@
  1588. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-hppa.Plo@am__quote@
  1589. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-ia64-vms.Plo@am__quote@
  1590. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-ia64.Plo@am__quote@
  1591. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-loongarch.Plo@am__quote@
  1592. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-mips.Plo@am__quote@
  1593. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-mmix.Plo@am__quote@
  1594. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-nfp.Plo@am__quote@
  1595. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-ppc.Plo@am__quote@
  1596. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-riscv.Plo@am__quote@
  1597. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-s390.Plo@am__quote@
  1598. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-sparc.Plo@am__quote@
  1599. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-tilegx.Plo@am__quote@
  1600. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64-x86-64.Plo@am__quote@
  1601. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf64.Plo@am__quote@
  1602. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elflink.Plo@am__quote@
  1603. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfn32-mips.Plo@am__quote@
  1604. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-aarch64.Plo@am__quote@
  1605. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-ia64.Plo@am__quote@
  1606. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-loongarch.Plo@am__quote@
  1607. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-mips.Plo@am__quote@
  1608. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-riscv.Plo@am__quote@
  1609. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-sparc.Plo@am__quote@
  1610. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-tilegx.Plo@am__quote@
  1611. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elfxx-x86.Plo@am__quote@
  1612. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/format.Plo@am__quote@
  1613. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hash.Plo@am__quote@
  1614. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpux-core.Plo@am__quote@
  1615. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i386aout.Plo@am__quote@
  1616. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i386bsd.Plo@am__quote@
  1617. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i386lynx.Plo@am__quote@
  1618. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/i386msdos.Plo@am__quote@
  1619. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ihex.Plo@am__quote@
  1620. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/init.Plo@am__quote@
  1621. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/irix-core.Plo@am__quote@
  1622. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libbfd.Plo@am__quote@
  1623. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linker.Plo@am__quote@
  1624. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lynx-core.Plo@am__quote@
  1625. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mach-o-aarch64.Plo@am__quote@
  1626. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mach-o-arm.Plo@am__quote@
  1627. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mach-o-i386.Plo@am__quote@
  1628. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mach-o-x86-64.Plo@am__quote@
  1629. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mach-o.Plo@am__quote@
  1630. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/merge.Plo@am__quote@
  1631. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mmo.Plo@am__quote@
  1632. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/netbsd-core.Plo@am__quote@
  1633. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ns32knetbsd.Plo@am__quote@
  1634. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/opncls.Plo@am__quote@
  1635. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/osf-core.Plo@am__quote@
  1636. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pc532-mach.Plo@am__quote@
  1637. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pdp11.Plo@am__quote@
  1638. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-aarch64igen.Plo@am__quote@
  1639. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-arm-wince.Plo@am__quote@
  1640. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-arm.Plo@am__quote@
  1641. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-i386.Plo@am__quote@
  1642. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-mcore.Plo@am__quote@
  1643. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-sh.Plo@am__quote@
  1644. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pe-x86_64.Plo@am__quote@
  1645. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pef.Plo@am__quote@
  1646. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-aarch64.Plo@am__quote@
  1647. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-arm-wince.Plo@am__quote@
  1648. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-arm.Plo@am__quote@
  1649. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-i386.Plo@am__quote@
  1650. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-ia64.Plo@am__quote@
  1651. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-mcore.Plo@am__quote@
  1652. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-sh.Plo@am__quote@
  1653. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pei-x86_64.Plo@am__quote@
  1654. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/peigen.Plo@am__quote@
  1655. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pepigen.Plo@am__quote@
  1656. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pex64igen.Plo@am__quote@
  1657. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/plugin.Plo@am__quote@
  1658. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppcboot.Plo@am__quote@
  1659. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reloc.Plo@am__quote@
  1660. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reloc16.Plo@am__quote@
  1661. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rs6000-core.Plo@am__quote@
  1662. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sco5-core.Plo@am__quote@
  1663. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/section.Plo@am__quote@
  1664. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple.Plo@am__quote@
  1665. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/som.Plo@am__quote@
  1666. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/srec.Plo@am__quote@
  1667. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stab-syms.Plo@am__quote@
  1668. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stabs.Plo@am__quote@
  1669. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/syms.Plo@am__quote@
  1670. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/targets.Plo@am__quote@
  1671. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tekhex.Plo@am__quote@
  1672. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trad-core.Plo@am__quote@
  1673. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vax1knetbsd.Plo@am__quote@
  1674. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vaxnetbsd.Plo@am__quote@
  1675. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/verilog.Plo@am__quote@
  1676. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vms-alpha.Plo@am__quote@
  1677. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vms-lib.Plo@am__quote@
  1678. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vms-misc.Plo@am__quote@
  1679. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wasm-module.Plo@am__quote@
  1680. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xcofflink.Plo@am__quote@
  1681. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xsym.Plo@am__quote@
  1682. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xtensa-isa.Plo@am__quote@
  1683. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xtensa-modules.Plo@am__quote@
  1684. .c.o:
  1685. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  1686. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  1687. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  1688. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1689. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
  1690. .c.obj:
  1691. @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  1692. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  1693. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  1694. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1695. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  1696. .c.lo:
  1697. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  1698. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  1699. @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  1700. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1701. @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
  1702. mostlyclean-libtool:
  1703. -rm -f *.lo
  1704. clean-libtool:
  1705. -rm -rf .libs _libs
  1706. distclean-libtool:
  1707. -rm -f libtool config.lt
  1708. doc/$(am__dirstamp):
  1709. @$(MKDIR_P) doc
  1710. @: > doc/$(am__dirstamp)
  1711. doc/bfd.info: doc/bfd.texi $(doc_bfd_TEXINFOS)
  1712. @test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
  1713. $(AM_V_MAKEINFO)restore=: && backupdir="$(am__leading_dot)am$$$$" && \
  1714. rm -rf $$backupdir && mkdir $$backupdir && \
  1715. if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
  1716. for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
  1717. if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
  1718. done; \
  1719. else :; fi && \
  1720. if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
  1721. -o $@ `test -f 'doc/bfd.texi' || echo '$(srcdir)/'`doc/bfd.texi; \
  1722. then \
  1723. rc=0; \
  1724. else \
  1725. rc=$$?; \
  1726. $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
  1727. fi; \
  1728. rm -rf $$backupdir; exit $$rc
  1729. doc/bfd.dvi: doc/bfd.texi $(doc_bfd_TEXINFOS) doc/$(am__dirstamp)
  1730. $(AM_V_TEXI2DVI)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1731. MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
  1732. $(TEXI2DVI) $(AM_V_texinfo) --build-dir=$(@:.dvi=.t2d) -o $@ $(AM_V_texidevnull) \
  1733. `test -f 'doc/bfd.texi' || echo '$(srcdir)/'`doc/bfd.texi
  1734. doc/bfd.pdf: doc/bfd.texi $(doc_bfd_TEXINFOS) doc/$(am__dirstamp)
  1735. $(AM_V_TEXI2PDF)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1736. MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
  1737. $(TEXI2PDF) $(AM_V_texinfo) --build-dir=$(@:.pdf=.t2p) -o $@ $(AM_V_texidevnull) \
  1738. `test -f 'doc/bfd.texi' || echo '$(srcdir)/'`doc/bfd.texi
  1739. doc/bfd.html: doc/bfd.texi $(doc_bfd_TEXINFOS) doc/$(am__dirstamp)
  1740. $(AM_V_MAKEINFO)rm -rf $(@:.html=.htp)
  1741. $(AM_V_at)if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
  1742. -o $(@:.html=.htp) `test -f 'doc/bfd.texi' || echo '$(srcdir)/'`doc/bfd.texi; \
  1743. then \
  1744. rm -rf $@ && mv $(@:.html=.htp) $@; \
  1745. else \
  1746. rm -rf $(@:.html=.htp); exit 1; \
  1747. fi
  1748. .dvi.ps:
  1749. $(AM_V_DVIPS)TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
  1750. $(DVIPS) $(AM_V_texinfo) -o $@ $<
  1751. uninstall-dvi-am:
  1752. @$(NORMAL_UNINSTALL)
  1753. @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
  1754. for p in $$list; do \
  1755. $(am__strip_dir) \
  1756. echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
  1757. rm -f "$(DESTDIR)$(dvidir)/$$f"; \
  1758. done
  1759. uninstall-html-am:
  1760. @$(NORMAL_UNINSTALL)
  1761. @list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
  1762. for p in $$list; do \
  1763. $(am__strip_dir) \
  1764. echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
  1765. rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
  1766. done
  1767. uninstall-info-am:
  1768. @$(PRE_UNINSTALL)
  1769. @if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
  1770. list='$(INFO_DEPS)'; \
  1771. for file in $$list; do \
  1772. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  1773. echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
  1774. if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
  1775. then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
  1776. done; \
  1777. else :; fi
  1778. @$(NORMAL_UNINSTALL)
  1779. @list='$(INFO_DEPS)'; \
  1780. for file in $$list; do \
  1781. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  1782. relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
  1783. (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
  1784. 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]"; \
  1785. rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
  1786. else :; fi); \
  1787. done
  1788. uninstall-pdf-am:
  1789. @$(NORMAL_UNINSTALL)
  1790. @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
  1791. for p in $$list; do \
  1792. $(am__strip_dir) \
  1793. echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
  1794. rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
  1795. done
  1796. uninstall-ps-am:
  1797. @$(NORMAL_UNINSTALL)
  1798. @list='$(PSS)'; test -n "$(psdir)" || list=; \
  1799. for p in $$list; do \
  1800. $(am__strip_dir) \
  1801. echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
  1802. rm -f "$(DESTDIR)$(psdir)/$$f"; \
  1803. done
  1804. dist-info: $(INFO_DEPS)
  1805. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  1806. list='$(INFO_DEPS)'; \
  1807. for base in $$list; do \
  1808. case $$base in \
  1809. $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
  1810. esac; \
  1811. if test -f $$base; then d=.; else d=$(srcdir); fi; \
  1812. base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
  1813. 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 \
  1814. if test -f $$file; then \
  1815. relfile=`expr "$$file" : "$$d/\(.*\)"`; \
  1816. test -f "$(distdir)/$$relfile" || \
  1817. cp -p $$file "$(distdir)/$$relfile"; \
  1818. else :; fi; \
  1819. done; \
  1820. done
  1821. mostlyclean-aminfo:
  1822. -rm -rf doc/bfd.t2d doc/bfd.t2p
  1823. clean-aminfo:
  1824. -test -z "doc/bfd.dvi doc/bfd.pdf doc/bfd.ps doc/bfd.html" \
  1825. || rm -rf doc/bfd.dvi doc/bfd.pdf doc/bfd.ps doc/bfd.html
  1826. maintainer-clean-aminfo:
  1827. @list='$(INFO_DEPS)'; for i in $$list; do \
  1828. i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
  1829. echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
  1830. rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
  1831. done
  1832. install-bfdincludeHEADERS: $(bfdinclude_HEADERS)
  1833. @$(NORMAL_INSTALL)
  1834. @list='$(bfdinclude_HEADERS)'; test -n "$(bfdincludedir)" || list=; \
  1835. if test -n "$$list"; then \
  1836. echo " $(MKDIR_P) '$(DESTDIR)$(bfdincludedir)'"; \
  1837. $(MKDIR_P) "$(DESTDIR)$(bfdincludedir)" || exit 1; \
  1838. fi; \
  1839. for p in $$list; do \
  1840. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  1841. echo "$$d$$p"; \
  1842. done | $(am__base_list) | \
  1843. while read files; do \
  1844. echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(bfdincludedir)'"; \
  1845. $(INSTALL_HEADER) $$files "$(DESTDIR)$(bfdincludedir)" || exit $$?; \
  1846. done
  1847. uninstall-bfdincludeHEADERS:
  1848. @$(NORMAL_UNINSTALL)
  1849. @list='$(bfdinclude_HEADERS)'; test -n "$(bfdincludedir)" || list=; \
  1850. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  1851. dir='$(DESTDIR)$(bfdincludedir)'; $(am__uninstall_files_from_dir)
  1852. # This directory's subdirectories are mostly independent; you can cd
  1853. # into them and run 'make' without going through this Makefile.
  1854. # To change the values of 'make' variables: instead of editing Makefiles,
  1855. # (1) if the variable is set in 'config.status', edit 'config.status'
  1856. # (which will cause the Makefiles to be regenerated when you run 'make');
  1857. # (2) otherwise, pass the desired values on the 'make' command line.
  1858. $(am__recursive_targets):
  1859. @fail=; \
  1860. if $(am__make_keepgoing); then \
  1861. failcom='fail=yes'; \
  1862. else \
  1863. failcom='exit 1'; \
  1864. fi; \
  1865. dot_seen=no; \
  1866. target=`echo $@ | sed s/-recursive//`; \
  1867. case "$@" in \
  1868. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  1869. *) list='$(SUBDIRS)' ;; \
  1870. esac; \
  1871. for subdir in $$list; do \
  1872. echo "Making $$target in $$subdir"; \
  1873. if test "$$subdir" = "."; then \
  1874. dot_seen=yes; \
  1875. local_target="$$target-am"; \
  1876. else \
  1877. local_target="$$target"; \
  1878. fi; \
  1879. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  1880. || eval $$failcom; \
  1881. done; \
  1882. if test "$$dot_seen" = "no"; then \
  1883. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  1884. fi; test -z "$$fail"
  1885. ID: $(am__tagged_files)
  1886. $(am__define_uniq_tagged_files); mkid -fID $$unique
  1887. tags: tags-recursive
  1888. TAGS: tags
  1889. tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  1890. set x; \
  1891. here=`pwd`; \
  1892. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  1893. include_option=--etags-include; \
  1894. empty_fix=.; \
  1895. else \
  1896. include_option=--include; \
  1897. empty_fix=; \
  1898. fi; \
  1899. list='$(SUBDIRS)'; for subdir in $$list; do \
  1900. if test "$$subdir" = .; then :; else \
  1901. test ! -f $$subdir/TAGS || \
  1902. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  1903. fi; \
  1904. done; \
  1905. $(am__define_uniq_tagged_files); \
  1906. shift; \
  1907. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  1908. test -n "$$unique" || unique=$$empty_fix; \
  1909. if test $$# -gt 0; then \
  1910. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1911. "$$@" $$unique; \
  1912. else \
  1913. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1914. $$unique; \
  1915. fi; \
  1916. fi
  1917. ctags: ctags-recursive
  1918. CTAGS: ctags
  1919. ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
  1920. $(am__define_uniq_tagged_files); \
  1921. test -z "$(CTAGS_ARGS)$$unique" \
  1922. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  1923. $$unique
  1924. GTAGS:
  1925. here=`$(am__cd) $(top_builddir) && pwd` \
  1926. && $(am__cd) $(top_srcdir) \
  1927. && gtags -i $(GTAGS_ARGS) "$$here"
  1928. cscope: cscope.files
  1929. test ! -s cscope.files \
  1930. || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
  1931. clean-cscope:
  1932. -rm -f cscope.files
  1933. cscope.files: clean-cscope cscopelist
  1934. cscopelist: cscopelist-recursive
  1935. cscopelist-am: $(am__tagged_files)
  1936. list='$(am__tagged_files)'; \
  1937. case "$(srcdir)" in \
  1938. [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
  1939. *) sdir=$(subdir)/$(srcdir) ;; \
  1940. esac; \
  1941. for i in $$list; do \
  1942. if test -f "$$i"; then \
  1943. echo "$(subdir)/$$i"; \
  1944. else \
  1945. echo "$$sdir/$$i"; \
  1946. fi; \
  1947. done >> $(top_builddir)/cscope.files
  1948. distclean-tags:
  1949. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  1950. -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
  1951. check-am: all-am
  1952. check: $(BUILT_SOURCES)
  1953. $(MAKE) $(AM_MAKEFLAGS) check-recursive
  1954. all-am: Makefile $(INFO_DEPS) $(LIBRARIES) $(LTLIBRARIES) $(HEADERS) \
  1955. config.h
  1956. installdirs: installdirs-recursive
  1957. installdirs-am:
  1958. for dir in "$(DESTDIR)$(bfdlibdir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(bfdincludedir)"; do \
  1959. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1960. done
  1961. install: $(BUILT_SOURCES)
  1962. $(MAKE) $(AM_MAKEFLAGS) install-recursive
  1963. install-exec: install-exec-recursive
  1964. install-data: install-data-recursive
  1965. uninstall: uninstall-recursive
  1966. install-am: all-am
  1967. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1968. installcheck: installcheck-recursive
  1969. install-strip:
  1970. if test -z '$(STRIP)'; then \
  1971. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1972. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1973. install; \
  1974. else \
  1975. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1976. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1977. "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
  1978. fi
  1979. mostlyclean-generic:
  1980. -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
  1981. clean-generic:
  1982. -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  1983. distclean-generic:
  1984. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1985. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1986. -rm -f doc/$(am__dirstamp)
  1987. -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  1988. maintainer-clean-generic:
  1989. @echo "This command is intended for maintainers to use"
  1990. @echo "it deletes files that may require special tools to rebuild."
  1991. -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
  1992. -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
  1993. clean: clean-recursive
  1994. clean-am: clean-aminfo clean-bfdlibLTLIBRARIES clean-generic \
  1995. clean-libtool clean-noinstLIBRARIES clean-noinstLTLIBRARIES \
  1996. mostlyclean-am
  1997. distclean: distclean-recursive
  1998. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1999. -rm -rf ./$(DEPDIR)
  2000. -rm -f Makefile
  2001. distclean-am: clean-am distclean-compile distclean-generic \
  2002. distclean-hdr distclean-libtool distclean-tags
  2003. dvi: dvi-recursive
  2004. dvi-am: $(DVIS)
  2005. html: html-recursive
  2006. html-am: $(HTMLS) html-local
  2007. info: info-recursive
  2008. info-am: $(INFO_DEPS)
  2009. install-data-am: install-bfdincludeHEADERS install-bfdlibLTLIBRARIES \
  2010. install-info-am
  2011. install-dvi: install-dvi-recursive
  2012. install-dvi-am: $(DVIS)
  2013. @$(NORMAL_INSTALL)
  2014. @list='$(DVIS)'; test -n "$(dvidir)" || list=; \
  2015. if test -n "$$list"; then \
  2016. echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
  2017. $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
  2018. fi; \
  2019. for p in $$list; do \
  2020. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2021. echo "$$d$$p"; \
  2022. done | $(am__base_list) | \
  2023. while read files; do \
  2024. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
  2025. $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
  2026. done
  2027. install-exec-am:
  2028. install-html: install-html-recursive
  2029. install-html-am: $(HTMLS)
  2030. @$(NORMAL_INSTALL)
  2031. @list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
  2032. if test -n "$$list"; then \
  2033. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
  2034. $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
  2035. fi; \
  2036. for p in $$list; do \
  2037. if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2038. $(am__strip_dir) \
  2039. d2=$$d$$p; \
  2040. if test -d "$$d2"; then \
  2041. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
  2042. $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
  2043. echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
  2044. $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
  2045. else \
  2046. list2="$$list2 $$d2"; \
  2047. fi; \
  2048. done; \
  2049. test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
  2050. while read files; do \
  2051. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
  2052. $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
  2053. done; }
  2054. install-info: install-info-recursive
  2055. install-info-am: $(INFO_DEPS)
  2056. @$(NORMAL_INSTALL)
  2057. @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
  2058. list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
  2059. if test -n "$$list"; then \
  2060. echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
  2061. $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
  2062. fi; \
  2063. for file in $$list; do \
  2064. case $$file in \
  2065. $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
  2066. esac; \
  2067. if test -f $$file; then d=.; else d=$(srcdir); fi; \
  2068. file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
  2069. for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
  2070. $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
  2071. if test -f $$ifile; then \
  2072. echo "$$ifile"; \
  2073. else : ; fi; \
  2074. done; \
  2075. done | $(am__base_list) | \
  2076. while read files; do \
  2077. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
  2078. $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
  2079. @$(POST_INSTALL)
  2080. @if $(am__can_run_installinfo); then \
  2081. list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
  2082. for file in $$list; do \
  2083. relfile=`echo "$$file" | sed 's|^.*/||'`; \
  2084. echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
  2085. install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
  2086. done; \
  2087. else : ; fi
  2088. install-man:
  2089. install-pdf: install-pdf-recursive
  2090. install-pdf-am: $(PDFS)
  2091. @$(NORMAL_INSTALL)
  2092. @list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
  2093. if test -n "$$list"; then \
  2094. echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
  2095. $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
  2096. fi; \
  2097. for p in $$list; do \
  2098. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2099. echo "$$d$$p"; \
  2100. done | $(am__base_list) | \
  2101. while read files; do \
  2102. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
  2103. $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
  2104. install-ps: install-ps-recursive
  2105. install-ps-am: $(PSS)
  2106. @$(NORMAL_INSTALL)
  2107. @list='$(PSS)'; test -n "$(psdir)" || list=; \
  2108. if test -n "$$list"; then \
  2109. echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
  2110. $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
  2111. fi; \
  2112. for p in $$list; do \
  2113. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  2114. echo "$$d$$p"; \
  2115. done | $(am__base_list) | \
  2116. while read files; do \
  2117. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
  2118. $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
  2119. installcheck-am:
  2120. maintainer-clean: maintainer-clean-recursive
  2121. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  2122. -rm -rf $(top_srcdir)/autom4te.cache
  2123. -rm -rf ./$(DEPDIR)
  2124. -rm -f Makefile
  2125. maintainer-clean-am: distclean-am maintainer-clean-aminfo \
  2126. maintainer-clean-generic
  2127. mostlyclean: mostlyclean-recursive
  2128. mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
  2129. mostlyclean-generic mostlyclean-libtool
  2130. pdf: pdf-recursive
  2131. pdf-am: $(PDFS)
  2132. ps: ps-recursive
  2133. ps-am: $(PSS)
  2134. uninstall-am: uninstall-bfdincludeHEADERS uninstall-bfdlibLTLIBRARIES \
  2135. uninstall-dvi-am uninstall-html-am uninstall-info-am \
  2136. uninstall-pdf-am uninstall-ps-am
  2137. .MAKE: $(am__recursive_targets) all check install install-am \
  2138. install-strip
  2139. .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
  2140. am--refresh check check-am clean clean-aminfo \
  2141. clean-bfdlibLTLIBRARIES clean-cscope clean-generic \
  2142. clean-libtool clean-noinstLIBRARIES clean-noinstLTLIBRARIES \
  2143. cscope cscopelist-am ctags ctags-am dist-info distclean \
  2144. distclean-compile distclean-generic distclean-hdr \
  2145. distclean-libtool distclean-tags dvi dvi-am html html-am \
  2146. html-local info info-am install install-am \
  2147. install-bfdincludeHEADERS install-bfdlibLTLIBRARIES \
  2148. install-data install-data-am install-dvi install-dvi-am \
  2149. install-exec install-exec-am install-html install-html-am \
  2150. install-info install-info-am install-man install-pdf \
  2151. install-pdf-am install-ps install-ps-am install-strip \
  2152. installcheck installcheck-am installdirs installdirs-am \
  2153. maintainer-clean maintainer-clean-aminfo \
  2154. maintainer-clean-generic mostlyclean mostlyclean-aminfo \
  2155. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  2156. pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
  2157. uninstall-bfdincludeHEADERS uninstall-bfdlibLTLIBRARIES \
  2158. uninstall-dvi-am uninstall-html-am uninstall-info-am \
  2159. uninstall-pdf-am uninstall-ps-am
  2160. .PRECIOUS: Makefile
  2161. $(BFD32_LIBS) \
  2162. $(BFD64_LIBS) \
  2163. $(ALL_MACHINES) \
  2164. $(BFD32_BACKENDS) \
  2165. $(BFD64_BACKENDS) \
  2166. $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
  2167. po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
  2168. for file in $(SRC_POTFILES); do echo $$file; done \
  2169. | LC_ALL=C sort > tmp.src \
  2170. && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
  2171. po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
  2172. for file in $(BLD_POTFILES); do echo $$file; done \
  2173. | LC_ALL=C sort > tmp.bld \
  2174. && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
  2175. all diststuff: info
  2176. stamp-ofiles: Makefile
  2177. rm -f tofiles
  2178. f=""; \
  2179. for i in $(OFILES) ; do \
  2180. case " $$f " in \
  2181. *" $$i "*) ;; \
  2182. *) f="$$f $$i" ;; \
  2183. esac ; \
  2184. done ; \
  2185. echo $$f > tofiles
  2186. $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
  2187. touch stamp-ofiles
  2188. ofiles: stamp-ofiles ; @true
  2189. stamp-lib: libbfd.la
  2190. libtooldir=`$(LIBTOOL) --config | $(SED) -n -e 's/^objdir=//p'`; \
  2191. if [ -f $$libtooldir/libbfd.a ]; then \
  2192. cp $$libtooldir/libbfd.a libbfd.tmp; \
  2193. $(RANLIB) libbfd.tmp; \
  2194. $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
  2195. else true; fi
  2196. touch stamp-lib
  2197. libbfd.a: stamp-lib ; @true
  2198. # This file holds an array associating configuration triplets and
  2199. # vector names. It is built from config.bfd. It is not compiled by
  2200. # itself, but is included by targets.c.
  2201. targmatch.h: config.bfd targmatch.sed
  2202. $(AM_V_at)rm -f targmatch.h
  2203. $(AM_V_GEN)$(SED) -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
  2204. $(AM_V_at)mv -f targmatch.new targmatch.h
  2205. # When compiling archures.c and targets.c, supply the default target
  2206. # info from configure.
  2207. targets.lo: targets.c Makefile
  2208. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
  2209. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  2210. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='targets.c' object='$@' libtool=yes @AMDEPBACKSLASH@
  2211. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2212. @am__fastdepCC_FALSE@ $(AM_V_CC)$(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
  2213. archures.lo: archures.c Makefile
  2214. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
  2215. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  2216. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='archures.c' object='$@' libtool=yes @AMDEPBACKSLASH@
  2217. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2218. @am__fastdepCC_FALSE@ $(AM_V_CC)$(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
  2219. dwarf2.lo: dwarf2.c Makefile
  2220. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
  2221. @am__fastdepCC_TRUE@ $(AM_V_at)mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  2222. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dwarf2.c' object='$@' libtool=yes @AMDEPBACKSLASH@
  2223. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2224. @am__fastdepCC_FALSE@ $(AM_V_CC)$(LTCOMPILE) -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
  2225. elf32-target.h : elfxx-target.h
  2226. $(AM_V_GEN)$(SED) -e s/NN/32/g < $< > $@
  2227. elf64-target.h : elfxx-target.h
  2228. $(AM_V_GEN)$(SED) -e s/NN/64/g < $< > $@
  2229. elf32-aarch64.c : elfnn-aarch64.c
  2230. $(AM_V_at)echo "#line 1 \"elfnn-aarch64.c\"" > $@
  2231. $(AM_V_GEN)$(SED) -e s/NN/32/g < $< >> $@
  2232. elf64-aarch64.c : elfnn-aarch64.c
  2233. $(AM_V_at)echo "#line 1 \"elfnn-aarch64.c\"" > $@
  2234. $(AM_V_GEN)$(SED) -e s/NN/64/g < $< >> $@
  2235. elf32-ia64.c : elfnn-ia64.c
  2236. $(AM_V_at)echo "#line 1 \"elfnn-ia64.c\"" > $@
  2237. $(AM_V_GEN)$(SED) -e s/NN/32/g < $< >> $@
  2238. elf64-ia64.c : elfnn-ia64.c
  2239. $(AM_V_at)echo "#line 1 \"elfnn-ia64.c\"" > $@
  2240. $(AM_V_GEN)$(SED) -e s/NN/64/g < $< >> $@
  2241. elf32-loongarch.c : elfnn-loongarch.c
  2242. $(AM_V_at)echo "#line 1 \"elfnn-loongarch.c\"" > $@
  2243. $(AM_V_GEN)$(SED) -e s/NN/32/g < $< >> $@
  2244. elf64-loongarch.c : elfnn-loongarch.c
  2245. $(AM_V_at)echo "#line 1 \"elfnn-loongarch.c\"" > $@
  2246. $(AM_V_GEN)$(SED) -e s/NN/64/g < $< >> $@
  2247. elf32-riscv.c : elfnn-riscv.c
  2248. $(AM_V_at)echo "#line 1 \"elfnn-riscv.c\"" > $@
  2249. $(AM_V_GEN)$(SED) -e s/NN/32/g < $< >> $@
  2250. elf64-riscv.c : elfnn-riscv.c
  2251. $(AM_V_at)echo "#line 1 \"elfnn-riscv.c\"" > $@
  2252. $(AM_V_GEN)$(SED) -e s/NN/64/g < $< >> $@
  2253. peigen.c : peXXigen.c
  2254. $(AM_V_at)echo "#line 1 \"peXXigen.c\"" > $@
  2255. $(AM_V_GEN)$(SED) -e s/XX/pe/g < $< >> $@
  2256. pepigen.c : peXXigen.c
  2257. $(AM_V_at)echo "#line 1 \"peXXigen.c\"" > $@
  2258. $(AM_V_GEN)$(SED) -e s/XX/pep/g < $< >> $@
  2259. pex64igen.c: peXXigen.c
  2260. $(AM_V_at)echo "#line 1 \"peXXigen.c\"" > $@
  2261. $(AM_V_GEN)$(SED) -e s/XX/pex64/g < $< >> $@
  2262. pe-aarch64igen.c: peXXigen.c
  2263. $(AM_V_at)echo "#line 1 \"peXXigen.c\"" > $@
  2264. $(AM_V_GEN)$(SED) -e s/XX/peAArch64/g < $< >> $@
  2265. host-aout.lo: Makefile
  2266. # The following program can be used to generate a simple config file
  2267. # which can be folded into an h-XXX file for a new host, with some editing.
  2268. aout-params.h: gen-aout
  2269. ./gen-aout host > aout-params.h
  2270. gen-aout: $(srcdir)/gen-aout.c Makefile
  2271. $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
  2272. $(BFD_H): stmp-bfd-h ; @true
  2273. stmp-bfd-h: bfd-in3.h
  2274. rm -f bfd-tmp.h
  2275. cp bfd-in3.h bfd-tmp.h
  2276. $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
  2277. rm -f bfd-tmp.h
  2278. touch stmp-bfd-h
  2279. headers: stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
  2280. $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
  2281. stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES) $(MKDOC)
  2282. $(AM_V_GEN)H_FILES="$(BFD_H_FILES)" CHEW_FLAGS= ; $(REGEN_HEADER) > bfd-in2.h-new
  2283. $(AM_V_at)$(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
  2284. $(AM_V_at)touch stmp-bin2-h
  2285. $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
  2286. stmp-lbfd-h: $(LIBBFD_H_FILES) $(MKDOC)
  2287. $(AM_V_GEN)H_FILES="$(LIBBFD_H_FILES)" CHEW_FLAGS=-i ; $(REGEN_HEADER) > libbfd.h-new
  2288. $(AM_V_at)$(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
  2289. $(AM_V_at)touch stmp-lbfd-h
  2290. $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
  2291. stmp-lcoff-h: $(LIBCOFF_H_FILES) $(MKDOC)
  2292. $(AM_V_GEN)H_FILES="$(LIBCOFF_H_FILES)" CHEW_FLAGS=-i ; $(REGEN_HEADER) > libcoff.h-new
  2293. $(AM_V_at)$(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
  2294. $(AM_V_at)touch stmp-lcoff-h
  2295. bfdver.h: $(srcdir)/version.h $(srcdir)/development.sh $(srcdir)/Makefile.in
  2296. $(AM_V_GEN)\
  2297. bfd_version=`echo "$(VERSION)" | $(SED) -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
  2298. bfd_version_string="\"$(VERSION)\"" ;\
  2299. bfd_soversion="$(VERSION)" ;\
  2300. bfd_version_package="\"$(PKGVERSION)\"" ;\
  2301. report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
  2302. . $(srcdir)/development.sh ;\
  2303. if test "$$development" = true ; then \
  2304. bfd_version_date=`$(SED) -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
  2305. bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
  2306. bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
  2307. fi ;\
  2308. $(SED) -e "s,@bfd_version@,$$bfd_version," \
  2309. -e "s,@bfd_version_string@,$$bfd_version_string," \
  2310. -e "s,@bfd_version_package@,$$bfd_version_package," \
  2311. -e "s,@report_bugs_to@,$$report_bugs_to," \
  2312. < $(srcdir)/version.h > $@; \
  2313. echo "$${bfd_soversion}" > libtool-soversion
  2314. # Disable -Werror, if it has been enabled, since coffswap.h won't
  2315. # compile with gcc 4.5 and above.
  2316. coff-tic4x.lo: coff-tic4x.c
  2317. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
  2318. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  2319. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  2320. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2321. @am__fastdepCC_FALSE@ $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
  2322. coff-tic54x.lo: coff-tic54x.c
  2323. @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
  2324. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  2325. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  2326. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2327. @am__fastdepCC_FALSE@ $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
  2328. $(MKDOC): doc/chew.stamp ; @true
  2329. doc/chew.stamp: $(srcdir)/doc/chew.c doc/$(am__dirstamp)
  2330. $(AM_V_CCLD)$(CC_FOR_BUILD) -o doc/chw$$$$$(EXEEXT_FOR_BUILD) $(CFLAGS_FOR_BUILD) \
  2331. $(LDFLAGS_FOR_BUILD) $(H_CFLAGS) \
  2332. -I. -I$(srcdir) -Idoc -I$(srcdir)/../include -I$(srcdir)/../intl -I../intl \
  2333. $(srcdir)/doc/chew.c && \
  2334. $(SHELL) $(srcdir)/../move-if-change \
  2335. doc/chw$$$$$(EXEEXT_FOR_BUILD) $(MKDOC) && \
  2336. touch $@
  2337. .PRECIOUS: doc/%.stamp
  2338. doc/%.texi: doc/%.stamp ; @true
  2339. doc/%.stamp: $(srcdir)/%.h $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
  2340. $(AM_V_GEN)$(REGEN_TEXI)
  2341. doc/%.stamp: $(srcdir)/%.c $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
  2342. $(AM_V_GEN)$(REGEN_TEXI)
  2343. # Avoid the %.stamp generating a builddir/bfd.texi that overrides the
  2344. # srcdir/ as well as regenerating doc/bfd.info for each make run.
  2345. doc/bfd.stamp: $(srcdir)/doc/bfd.texi ; $(AM_V_at)touch $@
  2346. # We use bfdt.texi, rather than bfd.texi, to avoid conflicting with
  2347. # bfd.texi on an 8.3 filesystem.
  2348. doc/bfdt.stamp: $(srcdir)/bfd.c $(srcdir)/doc/doc.str $(MKDOC) doc/$(am__dirstamp)
  2349. $(AM_V_GEN)$(REGEN_TEXI)
  2350. doc/bfdver.texi: $(srcdir)/Makefile.in
  2351. $(AM_V_GEN)\
  2352. $(MKDIR_P) $(@D); \
  2353. echo "@set VERSION $(VERSION)" > $@; \
  2354. if test -n "$(PKGVERSION)"; then \
  2355. echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@; \
  2356. fi; \
  2357. echo "@set UPDATED `date '+%B %Y'`" >> $@; \
  2358. if test -n "$(REPORT_BUGS_TEXI)"; then \
  2359. echo "@set BUGURL $(REPORT_BUGS_TEXI)" >> $@; \
  2360. fi
  2361. html-local: doc/bfd/index.html
  2362. doc/bfd/index.html: doc/bfd.texi $(bfd_TEXINFOS) doc/$(am__dirstamp)
  2363. $(AM_V_at)$(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) \
  2364. --split=node -o doc/bfd $(srcdir)/doc/bfd.texi
  2365. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  2366. # Otherwise a system limit (for SysV at least) may be exceeded.
  2367. .NOEXPORT: