Makefile.in 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. # Makefile.in generated by automake 1.11.1 from Makefile.am.
  2. # @configure_input@
  3. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
  4. # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
  5. # Inc.
  6. # This Makefile.in is free software; the Free Software Foundation
  7. # gives unlimited permission to copy and/or distribute it,
  8. # with or without modifications, as long as this notice is preserved.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  11. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12. # PARTICULAR PURPOSE.
  13. @SET_MAKE@
  14. VPATH = @srcdir@
  15. pkgdatadir = $(datadir)/@PACKAGE@
  16. pkgincludedir = $(includedir)/@PACKAGE@
  17. pkglibdir = $(libdir)/@PACKAGE@
  18. pkglibexecdir = $(libexecdir)/@PACKAGE@
  19. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  20. install_sh_DATA = $(install_sh) -c -m 644
  21. install_sh_PROGRAM = $(install_sh) -c
  22. install_sh_SCRIPT = $(install_sh) -c
  23. INSTALL_HEADER = $(INSTALL_DATA)
  24. transform = $(program_transform_name)
  25. NORMAL_INSTALL = :
  26. PRE_INSTALL = :
  27. POST_INSTALL = :
  28. NORMAL_UNINSTALL = :
  29. PRE_UNINSTALL = :
  30. POST_UNINSTALL = :
  31. build_triplet = @build@
  32. host_triplet = @host@
  33. target_triplet = @target@
  34. bin_PROGRAMS = cgminer$(EXEEXT)
  35. @HAVE_WINDOWS_FALSE@am__append_1 = @LIBCURL_CFLAGS@
  36. @HAS_SCRYPT_TRUE@am__append_2 = scrypt.c scrypt.h
  37. @NEED_FPGAUTILS_TRUE@am__append_3 = fpgautils.c fpgautils.h
  38. @WANT_USBUTILS_TRUE@am__append_4 = usbutils.c usbutils.h
  39. @WANT_LIBBITFURY_TRUE@am__append_5 = libbitfury.c libbitfury.h mcp2210.c mcp2210.h
  40. # Device drivers
  41. @HAS_AVALON_TRUE@am__append_6 = driver-avalon.c driver-avalon.h
  42. @HAS_KNC_TRUE@am__append_7 = driver-knc-spi-fpga.c
  43. @HAS_BFLSC_TRUE@am__append_8 = driver-bflsc.c driver-bflsc.h
  44. @HAS_BITFORCE_TRUE@am__append_9 = driver-bitforce.c
  45. @HAS_HASHFAST_TRUE@am__append_10 = driver-hashfast.c driver-hashfast.h hf_protocol.h hf_protocol_be.h
  46. @HAS_BITFURY_TRUE@am__append_11 = driver-bitfury.c driver-bitfury.h
  47. @HAS_BITMINE_A1_TRUE@am__append_12 = driver-SPI-bitmine-A1.c \
  48. @HAS_BITMINE_A1_TRUE@ spi-context.c spi-context.h A1-common.h \
  49. @HAS_BITMINE_A1_TRUE@ A1-board-selector.h \
  50. @HAS_BITMINE_A1_TRUE@ A1-board-selector-CCD.c \
  51. @HAS_BITMINE_A1_TRUE@ A1-board-selector-CCR.c \
  52. @HAS_BITMINE_A1_TRUE@ A1-trimpot-mcp4x.h A1-trimpot-mcp4x.c \
  53. @HAS_BITMINE_A1_TRUE@ i2c-context.c i2c-context.h
  54. @HAS_DRILLBIT_TRUE@am__append_13 = driver-drillbit.c driver-drillbit.h
  55. @HAS_ICARUS_TRUE@am__append_14 = driver-icarus.c
  56. @HAS_KLONDIKE_TRUE@am__append_15 = driver-klondike.c
  57. @HAS_COINTERRA_TRUE@am__append_16 = driver-cointerra.c driver-cointerra.h
  58. @HAS_SPONDOOLIES_TRUE@am__append_17 = driver-spondoolies.c driver-spondoolies.h \
  59. @HAS_SPONDOOLIES_TRUE@ mg_proto_parser.c mg_proto_parser.h
  60. @HAS_BAB_TRUE@am__append_18 = driver-bab.c
  61. @HAS_AVALON2_TRUE@am__append_19 = driver-avalon2.c driver-avalon2.h crc16.c crc.h
  62. @HAS_MINION_TRUE@am__append_20 = driver-minion.c
  63. @HAS_ANT_S1_TRUE@am__append_21 = driver-bitmain.c driver-bitmain.h
  64. @HAS_ANT_S2_TRUE@am__append_22 = driver-bitmain.c driver-bitmain.h
  65. @HAS_MODMINER_TRUE@am__append_23 = driver-modminer.c
  66. @HAS_GRIDSEED_TRUE@am__append_24 = driver-gridseed.c driver-gridseed.h
  67. @HAS_ZEUS_TRUE@am__append_25 = driver-zeus.c driver-zeus.h
  68. @HAS_LKETC_TRUE@am__append_26 = driver-lketc.c driver-lketc.h
  69. subdir = .
  70. DIST_COMMON = README $(am__configure_deps) \
  71. $(am__dist_bitstreams_DATA_DIST) $(srcdir)/Makefile.am \
  72. $(srcdir)/Makefile.in $(srcdir)/config.h.in \
  73. $(top_srcdir)/configure AUTHORS COPYING ChangeLog NEWS compile \
  74. config.guess config.sub depcomp install-sh ltmain.sh missing
  75. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  76. am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \
  77. $(top_srcdir)/m4/extensions.m4 \
  78. $(top_srcdir)/m4/gnulib-common.m4 \
  79. $(top_srcdir)/m4/gnulib-comp.m4 \
  80. $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/libtool.m4 \
  81. $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/ltoptions.m4 \
  82. $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
  83. $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/memchr.m4 \
  84. $(top_srcdir)/m4/memmem.m4 $(top_srcdir)/m4/mmap-anon.m4 \
  85. $(top_srcdir)/m4/multiarch.m4 $(top_srcdir)/m4/onceonly.m4 \
  86. $(top_srcdir)/m4/sigaction.m4 $(top_srcdir)/m4/signal_h.m4 \
  87. $(top_srcdir)/m4/signalblocking.m4 \
  88. $(top_srcdir)/m4/stddef_h.m4 $(top_srcdir)/m4/stdint.m4 \
  89. $(top_srcdir)/m4/string_h.m4 $(top_srcdir)/m4/warn-on-use.m4 \
  90. $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/configure.ac
  91. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  92. $(ACLOCAL_M4)
  93. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  94. configure.lineno config.status.lineno
  95. mkinstalldirs = $(install_sh) -d
  96. CONFIG_HEADER = config.h
  97. CONFIG_CLEAN_FILES =
  98. CONFIG_CLEAN_VPATH_FILES =
  99. am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bitstreamsdir)"
  100. PROGRAMS = $(bin_PROGRAMS)
  101. am__cgminer_SOURCES_DIST = cgminer.c elist.h miner.h compat.h \
  102. bench_block.h util.c util.h uthash.h logging.h sha2.c sha2.h \
  103. api.c logging.c klist.h klist.c noncedup.c scrypt.c scrypt.h \
  104. fpgautils.c fpgautils.h usbutils.c usbutils.h libbitfury.c \
  105. libbitfury.h mcp2210.c mcp2210.h driver-avalon.c \
  106. driver-avalon.h driver-knc-spi-fpga.c driver-bflsc.c \
  107. driver-bflsc.h driver-bitforce.c driver-hashfast.c \
  108. driver-hashfast.h hf_protocol.h hf_protocol_be.h \
  109. driver-bitfury.c driver-bitfury.h driver-SPI-bitmine-A1.c \
  110. spi-context.c spi-context.h A1-common.h A1-board-selector.h \
  111. A1-board-selector-CCD.c A1-board-selector-CCR.c \
  112. A1-trimpot-mcp4x.h A1-trimpot-mcp4x.c i2c-context.c \
  113. i2c-context.h driver-drillbit.c driver-drillbit.h \
  114. driver-icarus.c driver-klondike.c driver-cointerra.c \
  115. driver-cointerra.h driver-spondoolies.c driver-spondoolies.h \
  116. mg_proto_parser.c mg_proto_parser.h driver-bab.c \
  117. driver-avalon2.c driver-avalon2.h crc16.c crc.h \
  118. driver-minion.c driver-bitmain.c driver-bitmain.h \
  119. driver-modminer.c driver-gridseed.c driver-gridseed.h \
  120. driver-zeus.c driver-zeus.h driver-lketc.c driver-lketc.h
  121. @HAS_SCRYPT_TRUE@am__objects_1 = cgminer-scrypt.$(OBJEXT)
  122. @NEED_FPGAUTILS_TRUE@am__objects_2 = cgminer-fpgautils.$(OBJEXT)
  123. @WANT_USBUTILS_TRUE@am__objects_3 = cgminer-usbutils.$(OBJEXT)
  124. @WANT_LIBBITFURY_TRUE@am__objects_4 = cgminer-libbitfury.$(OBJEXT) \
  125. @WANT_LIBBITFURY_TRUE@ cgminer-mcp2210.$(OBJEXT)
  126. @HAS_AVALON_TRUE@am__objects_5 = cgminer-driver-avalon.$(OBJEXT)
  127. @HAS_KNC_TRUE@am__objects_6 = cgminer-driver-knc-spi-fpga.$(OBJEXT)
  128. @HAS_BFLSC_TRUE@am__objects_7 = cgminer-driver-bflsc.$(OBJEXT)
  129. @HAS_BITFORCE_TRUE@am__objects_8 = cgminer-driver-bitforce.$(OBJEXT)
  130. @HAS_HASHFAST_TRUE@am__objects_9 = cgminer-driver-hashfast.$(OBJEXT)
  131. @HAS_BITFURY_TRUE@am__objects_10 = cgminer-driver-bitfury.$(OBJEXT)
  132. @HAS_BITMINE_A1_TRUE@am__objects_11 = \
  133. @HAS_BITMINE_A1_TRUE@ cgminer-driver-SPI-bitmine-A1.$(OBJEXT) \
  134. @HAS_BITMINE_A1_TRUE@ cgminer-spi-context.$(OBJEXT) \
  135. @HAS_BITMINE_A1_TRUE@ cgminer-A1-board-selector-CCD.$(OBJEXT) \
  136. @HAS_BITMINE_A1_TRUE@ cgminer-A1-board-selector-CCR.$(OBJEXT) \
  137. @HAS_BITMINE_A1_TRUE@ cgminer-A1-trimpot-mcp4x.$(OBJEXT) \
  138. @HAS_BITMINE_A1_TRUE@ cgminer-i2c-context.$(OBJEXT)
  139. @HAS_DRILLBIT_TRUE@am__objects_12 = cgminer-driver-drillbit.$(OBJEXT)
  140. @HAS_ICARUS_TRUE@am__objects_13 = cgminer-driver-icarus.$(OBJEXT)
  141. @HAS_KLONDIKE_TRUE@am__objects_14 = cgminer-driver-klondike.$(OBJEXT)
  142. @HAS_COINTERRA_TRUE@am__objects_15 = \
  143. @HAS_COINTERRA_TRUE@ cgminer-driver-cointerra.$(OBJEXT)
  144. @HAS_SPONDOOLIES_TRUE@am__objects_16 = \
  145. @HAS_SPONDOOLIES_TRUE@ cgminer-driver-spondoolies.$(OBJEXT) \
  146. @HAS_SPONDOOLIES_TRUE@ cgminer-mg_proto_parser.$(OBJEXT)
  147. @HAS_BAB_TRUE@am__objects_17 = cgminer-driver-bab.$(OBJEXT)
  148. @HAS_AVALON2_TRUE@am__objects_18 = cgminer-driver-avalon2.$(OBJEXT) \
  149. @HAS_AVALON2_TRUE@ cgminer-crc16.$(OBJEXT)
  150. @HAS_MINION_TRUE@am__objects_19 = cgminer-driver-minion.$(OBJEXT)
  151. @HAS_ANT_S1_TRUE@am__objects_20 = cgminer-driver-bitmain.$(OBJEXT)
  152. @HAS_ANT_S2_TRUE@am__objects_21 = cgminer-driver-bitmain.$(OBJEXT)
  153. @HAS_MODMINER_TRUE@am__objects_22 = cgminer-driver-modminer.$(OBJEXT)
  154. @HAS_GRIDSEED_TRUE@am__objects_23 = cgminer-driver-gridseed.$(OBJEXT)
  155. @HAS_ZEUS_TRUE@am__objects_24 = cgminer-driver-zeus.$(OBJEXT)
  156. @HAS_LKETC_TRUE@am__objects_25 = cgminer-driver-lketc.$(OBJEXT)
  157. am_cgminer_OBJECTS = cgminer-cgminer.$(OBJEXT) cgminer-util.$(OBJEXT) \
  158. cgminer-sha2.$(OBJEXT) cgminer-api.$(OBJEXT) \
  159. cgminer-logging.$(OBJEXT) cgminer-klist.$(OBJEXT) \
  160. cgminer-noncedup.$(OBJEXT) $(am__objects_1) $(am__objects_2) \
  161. $(am__objects_3) $(am__objects_4) $(am__objects_5) \
  162. $(am__objects_6) $(am__objects_7) $(am__objects_8) \
  163. $(am__objects_9) $(am__objects_10) $(am__objects_11) \
  164. $(am__objects_12) $(am__objects_13) $(am__objects_14) \
  165. $(am__objects_15) $(am__objects_16) $(am__objects_17) \
  166. $(am__objects_18) $(am__objects_19) $(am__objects_20) \
  167. $(am__objects_21) $(am__objects_22) $(am__objects_23) \
  168. $(am__objects_24) $(am__objects_25)
  169. cgminer_OBJECTS = $(am_cgminer_OBJECTS)
  170. am__DEPENDENCIES_1 =
  171. cgminer_DEPENDENCIES = $(am__DEPENDENCIES_1) lib/libgnu.a \
  172. ccan/libccan.a
  173. AM_V_lt = $(am__v_lt_$(V))
  174. am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
  175. am__v_lt_0 = --silent
  176. cgminer_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  177. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  178. $(cgminer_LDFLAGS) $(LDFLAGS) -o $@
  179. DEFAULT_INCLUDES = -I.@am__isrc@
  180. depcomp = $(SHELL) $(top_srcdir)/depcomp
  181. am__depfiles_maybe = depfiles
  182. am__mv = mv -f
  183. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  184. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  185. LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  186. $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
  187. $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
  188. $(AM_CFLAGS) $(CFLAGS)
  189. AM_V_CC = $(am__v_CC_$(V))
  190. am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
  191. am__v_CC_0 = @echo " CC " $@;
  192. AM_V_at = $(am__v_at_$(V))
  193. am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  194. am__v_at_0 = @
  195. CCLD = $(CC)
  196. LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
  197. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
  198. $(AM_LDFLAGS) $(LDFLAGS) -o $@
  199. AM_V_CCLD = $(am__v_CCLD_$(V))
  200. am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
  201. am__v_CCLD_0 = @echo " CCLD " $@;
  202. AM_V_GEN = $(am__v_GEN_$(V))
  203. am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
  204. am__v_GEN_0 = @echo " GEN " $@;
  205. SOURCES = $(cgminer_SOURCES)
  206. DIST_SOURCES = $(am__cgminer_SOURCES_DIST)
  207. RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
  208. html-recursive info-recursive install-data-recursive \
  209. install-dvi-recursive install-exec-recursive \
  210. install-html-recursive install-info-recursive \
  211. install-pdf-recursive install-ps-recursive install-recursive \
  212. installcheck-recursive installdirs-recursive pdf-recursive \
  213. ps-recursive uninstall-recursive
  214. am__dist_bitstreams_DATA_DIST = $(top_srcdir)/bitstreams/README
  215. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  216. am__vpath_adj = case $$p in \
  217. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  218. *) f=$$p;; \
  219. esac;
  220. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  221. am__install_max = 40
  222. am__nobase_strip_setup = \
  223. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  224. am__nobase_strip = \
  225. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  226. am__nobase_list = $(am__nobase_strip_setup); \
  227. for p in $$list; do echo "$$p $$p"; done | \
  228. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  229. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  230. if (++n[$$2] == $(am__install_max)) \
  231. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  232. END { for (dir in files) print dir, files[dir] }'
  233. am__base_list = \
  234. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  235. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  236. DATA = $(dist_bitstreams_DATA)
  237. RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
  238. distclean-recursive maintainer-clean-recursive
  239. AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
  240. $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
  241. distdir dist dist-all distcheck
  242. ETAGS = etags
  243. CTAGS = ctags
  244. DIST_SUBDIRS = $(SUBDIRS)
  245. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  246. distdir = $(PACKAGE)-$(VERSION)
  247. top_distdir = $(distdir)
  248. am__remove_distdir = \
  249. { test ! -d "$(distdir)" \
  250. || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  251. && rm -fr "$(distdir)"; }; }
  252. am__relativize = \
  253. dir0=`pwd`; \
  254. sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  255. sed_rest='s,^[^/]*/*,,'; \
  256. sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  257. sed_butlast='s,/*[^/]*$$,,'; \
  258. while test -n "$$dir1"; do \
  259. first=`echo "$$dir1" | sed -e "$$sed_first"`; \
  260. if test "$$first" != "."; then \
  261. if test "$$first" = ".."; then \
  262. dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
  263. dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
  264. else \
  265. first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
  266. if test "$$first2" = "$$first"; then \
  267. dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
  268. else \
  269. dir2="../$$dir2"; \
  270. fi; \
  271. dir0="$$dir0"/"$$first"; \
  272. fi; \
  273. fi; \
  274. dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  275. done; \
  276. reldir="$$dir2"
  277. DIST_ARCHIVES = $(distdir).tar.gz
  278. GZIP_ENV = --best
  279. distuninstallcheck_listfiles = find . -type f -print
  280. distcleancheck_listfiles = find . -type f -print
  281. ACLOCAL = @ACLOCAL@
  282. ALLOCA = @ALLOCA@
  283. AMTAR = @AMTAR@
  284. AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
  285. APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@
  286. AR = @AR@
  287. AUTOCONF = @AUTOCONF@
  288. AUTOHEADER = @AUTOHEADER@
  289. AUTOMAKE = @AUTOMAKE@
  290. AWK = @AWK@
  291. BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@
  292. BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@
  293. BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@
  294. BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@
  295. BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@
  296. CC = @CC@
  297. CCDEPMODE = @CCDEPMODE@
  298. CFLAGS = @CFLAGS@
  299. CPP = @CPP@
  300. CPPFLAGS = @CPPFLAGS@
  301. CYGPATH_W = @CYGPATH_W@
  302. DEFS = @DEFS@
  303. DEPDIR = @DEPDIR@
  304. DLLTOOL = @DLLTOOL@
  305. DLOPEN_FLAGS = @DLOPEN_FLAGS@
  306. DSYMUTIL = @DSYMUTIL@
  307. DUMPBIN = @DUMPBIN@
  308. ECHO_C = @ECHO_C@
  309. ECHO_N = @ECHO_N@
  310. ECHO_T = @ECHO_T@
  311. EGREP = @EGREP@
  312. EXEEXT = @EXEEXT@
  313. FGREP = @FGREP@
  314. GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@
  315. GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@
  316. GNULIB_MBSCHR = @GNULIB_MBSCHR@
  317. GNULIB_MBSCSPN = @GNULIB_MBSCSPN@
  318. GNULIB_MBSLEN = @GNULIB_MBSLEN@
  319. GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@
  320. GNULIB_MBSNLEN = @GNULIB_MBSNLEN@
  321. GNULIB_MBSPBRK = @GNULIB_MBSPBRK@
  322. GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@
  323. GNULIB_MBSRCHR = @GNULIB_MBSRCHR@
  324. GNULIB_MBSSEP = @GNULIB_MBSSEP@
  325. GNULIB_MBSSPN = @GNULIB_MBSSPN@
  326. GNULIB_MBSSTR = @GNULIB_MBSSTR@
  327. GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@
  328. GNULIB_MEMCHR = @GNULIB_MEMCHR@
  329. GNULIB_MEMMEM = @GNULIB_MEMMEM@
  330. GNULIB_MEMPCPY = @GNULIB_MEMPCPY@
  331. GNULIB_MEMRCHR = @GNULIB_MEMRCHR@
  332. GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@
  333. GNULIB_SIGACTION = @GNULIB_SIGACTION@
  334. GNULIB_SIGNAL_H_SIGPIPE = @GNULIB_SIGNAL_H_SIGPIPE@
  335. GNULIB_SIGPROCMASK = @GNULIB_SIGPROCMASK@
  336. GNULIB_STPCPY = @GNULIB_STPCPY@
  337. GNULIB_STPNCPY = @GNULIB_STPNCPY@
  338. GNULIB_STRCASESTR = @GNULIB_STRCASESTR@
  339. GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@
  340. GNULIB_STRDUP = @GNULIB_STRDUP@
  341. GNULIB_STRERROR = @GNULIB_STRERROR@
  342. GNULIB_STRERROR_R = @GNULIB_STRERROR_R@
  343. GNULIB_STRNCAT = @GNULIB_STRNCAT@
  344. GNULIB_STRNDUP = @GNULIB_STRNDUP@
  345. GNULIB_STRNLEN = @GNULIB_STRNLEN@
  346. GNULIB_STRPBRK = @GNULIB_STRPBRK@
  347. GNULIB_STRSEP = @GNULIB_STRSEP@
  348. GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@
  349. GNULIB_STRSTR = @GNULIB_STRSTR@
  350. GNULIB_STRTOK_R = @GNULIB_STRTOK_R@
  351. GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@
  352. GREP = @GREP@
  353. HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@
  354. HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@
  355. HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@
  356. HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@
  357. HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@
  358. HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@
  359. HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@
  360. HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@
  361. HAVE_INTTYPES_H = @HAVE_INTTYPES_H@
  362. HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@
  363. HAVE_MBSLEN = @HAVE_MBSLEN@
  364. HAVE_MEMCHR = @HAVE_MEMCHR@
  365. HAVE_MEMPCPY = @HAVE_MEMPCPY@
  366. HAVE_POSIX_SIGNALBLOCKING = @HAVE_POSIX_SIGNALBLOCKING@
  367. HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@
  368. HAVE_SIGACTION = @HAVE_SIGACTION@
  369. HAVE_SIGHANDLER_T = @HAVE_SIGHANDLER_T@
  370. HAVE_SIGINFO_T = @HAVE_SIGINFO_T@
  371. HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@
  372. HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@
  373. HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@
  374. HAVE_SIGSET_T = @HAVE_SIGSET_T@
  375. HAVE_STDINT_H = @HAVE_STDINT_H@
  376. HAVE_STPCPY = @HAVE_STPCPY@
  377. HAVE_STPNCPY = @HAVE_STPNCPY@
  378. HAVE_STRCASESTR = @HAVE_STRCASESTR@
  379. HAVE_STRCHRNUL = @HAVE_STRCHRNUL@
  380. HAVE_STRPBRK = @HAVE_STRPBRK@
  381. HAVE_STRSEP = @HAVE_STRSEP@
  382. HAVE_STRUCT_SIGACTION_SA_SIGACTION = @HAVE_STRUCT_SIGACTION_SA_SIGACTION@
  383. HAVE_STRVERSCMP = @HAVE_STRVERSCMP@
  384. HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@
  385. HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@
  386. HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@
  387. HAVE_TYPE_VOLATILE_SIG_ATOMIC_T = @HAVE_TYPE_VOLATILE_SIG_ATOMIC_T@
  388. HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@
  389. HAVE_WCHAR_H = @HAVE_WCHAR_H@
  390. HAVE_WCHAR_T = @HAVE_WCHAR_T@
  391. INCLUDE_NEXT = @INCLUDE_NEXT@
  392. INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@
  393. INSTALL = @INSTALL@
  394. INSTALL_DATA = @INSTALL_DATA@
  395. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  396. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  397. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  398. JANSSON_LIBS = @JANSSON_LIBS@
  399. LD = @LD@
  400. LDFLAGS = @LDFLAGS@
  401. LIBCURL_CFLAGS = @LIBCURL_CFLAGS@
  402. LIBCURL_LIBS = @LIBCURL_LIBS@
  403. LIBGNU_LIBDEPS = @LIBGNU_LIBDEPS@
  404. LIBGNU_LTLIBDEPS = @LIBGNU_LTLIBDEPS@
  405. LIBOBJS = @LIBOBJS@
  406. LIBS = @LIBS@
  407. LIBTOOL = @LIBTOOL@
  408. LIBUDEV_LIBS = @LIBUDEV_LIBS@
  409. LIBUSB_CFLAGS = @LIBUSB_CFLAGS@
  410. LIBUSB_LIBS = @LIBUSB_LIBS@
  411. LIPO = @LIPO@
  412. LN_S = @LN_S@
  413. LTLIBOBJS = @LTLIBOBJS@
  414. MAINT = @MAINT@
  415. MAKEINFO = @MAKEINFO@
  416. MANIFEST_TOOL = @MANIFEST_TOOL@
  417. MATH_LIBS = @MATH_LIBS@
  418. MKDIR_P = @MKDIR_P@
  419. MM_LIBS = @MM_LIBS@
  420. NCURSES_LIBS = @NCURSES_LIBS@
  421. NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H = @NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H@
  422. NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@
  423. NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@
  424. NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@
  425. NEXT_SIGNAL_H = @NEXT_SIGNAL_H@
  426. NEXT_STDDEF_H = @NEXT_STDDEF_H@
  427. NEXT_STDINT_H = @NEXT_STDINT_H@
  428. NEXT_STRING_H = @NEXT_STRING_H@
  429. NM = @NM@
  430. NMEDIT = @NMEDIT@
  431. OBJDUMP = @OBJDUMP@
  432. OBJEXT = @OBJEXT@
  433. OTOOL = @OTOOL@
  434. OTOOL64 = @OTOOL64@
  435. PACKAGE = @PACKAGE@
  436. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  437. PACKAGE_NAME = @PACKAGE_NAME@
  438. PACKAGE_STRING = @PACKAGE_STRING@
  439. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  440. PACKAGE_URL = @PACKAGE_URL@
  441. PACKAGE_VERSION = @PACKAGE_VERSION@
  442. PATH_SEPARATOR = @PATH_SEPARATOR@
  443. PDCURSES_LIBS = @PDCURSES_LIBS@
  444. PKG_CONFIG = @PKG_CONFIG@
  445. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  446. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  447. PRAGMA_COLUMNS = @PRAGMA_COLUMNS@
  448. PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@
  449. PTHREAD_FLAGS = @PTHREAD_FLAGS@
  450. PTHREAD_LIBS = @PTHREAD_LIBS@
  451. PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@
  452. RANLIB = @RANLIB@
  453. REPLACE_MEMCHR = @REPLACE_MEMCHR@
  454. REPLACE_MEMMEM = @REPLACE_MEMMEM@
  455. REPLACE_NULL = @REPLACE_NULL@
  456. REPLACE_STPNCPY = @REPLACE_STPNCPY@
  457. REPLACE_STRCASESTR = @REPLACE_STRCASESTR@
  458. REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@
  459. REPLACE_STRDUP = @REPLACE_STRDUP@
  460. REPLACE_STRERROR = @REPLACE_STRERROR@
  461. REPLACE_STRERROR_R = @REPLACE_STRERROR_R@
  462. REPLACE_STRNCAT = @REPLACE_STRNCAT@
  463. REPLACE_STRNDUP = @REPLACE_STRNDUP@
  464. REPLACE_STRNLEN = @REPLACE_STRNLEN@
  465. REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@
  466. REPLACE_STRSTR = @REPLACE_STRSTR@
  467. REPLACE_STRTOK_R = @REPLACE_STRTOK_R@
  468. RT_LIBS = @RT_LIBS@
  469. SED = @SED@
  470. SET_MAKE = @SET_MAKE@
  471. SHELL = @SHELL@
  472. SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@
  473. SIZE_T_SUFFIX = @SIZE_T_SUFFIX@
  474. STDDEF_H = @STDDEF_H@
  475. STDINT_H = @STDINT_H@
  476. STRIP = @STRIP@
  477. UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@
  478. VERSION = @VERSION@
  479. VMAJ = @VMAJ@
  480. WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@
  481. WINT_T_SUFFIX = @WINT_T_SUFFIX@
  482. WS2_LIBS = @WS2_LIBS@
  483. abs_builddir = @abs_builddir@
  484. abs_srcdir = @abs_srcdir@
  485. abs_top_builddir = @abs_top_builddir@
  486. abs_top_srcdir = @abs_top_srcdir@
  487. ac_ct_AR = @ac_ct_AR@
  488. ac_ct_CC = @ac_ct_CC@
  489. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  490. am__include = @am__include@
  491. am__leading_dot = @am__leading_dot@
  492. am__quote = @am__quote@
  493. am__tar = @am__tar@
  494. am__untar = @am__untar@
  495. bindir = @bindir@
  496. build = @build@
  497. build_alias = @build_alias@
  498. build_cpu = @build_cpu@
  499. build_os = @build_os@
  500. build_vendor = @build_vendor@
  501. builddir = @builddir@
  502. datadir = @datadir@
  503. datarootdir = @datarootdir@
  504. docdir = @docdir@
  505. dvidir = @dvidir@
  506. exec_prefix = @exec_prefix@
  507. gl_LIBOBJS = @gl_LIBOBJS@
  508. gl_LTLIBOBJS = @gl_LTLIBOBJS@
  509. gltests_LIBOBJS = @gltests_LIBOBJS@
  510. gltests_LTLIBOBJS = @gltests_LTLIBOBJS@
  511. gltests_WITNESS = @gltests_WITNESS@
  512. host = @host@
  513. host_alias = @host_alias@
  514. host_cpu = @host_cpu@
  515. host_os = @host_os@
  516. host_vendor = @host_vendor@
  517. htmldir = @htmldir@
  518. includedir = @includedir@
  519. infodir = @infodir@
  520. install_sh = @install_sh@
  521. libdir = @libdir@
  522. libexecdir = @libexecdir@
  523. localedir = @localedir@
  524. localstatedir = @localstatedir@
  525. mandir = @mandir@
  526. mkdir_p = @mkdir_p@
  527. oldincludedir = @oldincludedir@
  528. pdfdir = @pdfdir@
  529. prefix = @prefix@
  530. program_transform_name = @program_transform_name@
  531. psdir = @psdir@
  532. release_info = @release_info@
  533. sbindir = @sbindir@
  534. sharedstatedir = @sharedstatedir@
  535. srcdir = @srcdir@
  536. subdirs = @subdirs@
  537. sysconfdir = @sysconfdir@
  538. target = @target@
  539. target_alias = @target_alias@
  540. target_cpu = @target_cpu@
  541. target_os = @target_os@
  542. target_vendor = @target_vendor@
  543. top_build_prefix = @top_build_prefix@
  544. top_builddir = @top_builddir@
  545. top_srcdir = @top_srcdir@
  546. version_info = @version_info@
  547. ACLOCAL_AMFLAGS = -I m4
  548. JANSSON_CPPFLAGS = -I$(top_builddir)/compat/jansson-2.5/src -I$(top_srcdir)/compat/jansson-2.5/src
  549. @WANT_USBUTILS_FALSE@USBUTILS_CPPFLAGS =
  550. @WANT_USBUTILS_TRUE@USBUTILS_CPPFLAGS = -I$(top_builddir)/compat/libusb-1.0/libusb -I$(top_srcdir)/compat/libusb-1.0/libusb
  551. EXTRA_DIST = example.conf linux-usb-cgminer \
  552. api-example.php miner.php \
  553. API.class API.java api-example.c windows-build.txt \
  554. bitstreams/README API-README FPGA-README \
  555. bitforce-firmware-flash.c hexdump.c ASIC-README \
  556. 01-cgminer.rules
  557. SUBDIRS = lib compat ccan
  558. cgminer_CPPFLAGS = $(PTHREAD_FLAGS) -fno-strict-aliasing \
  559. $(JANSSON_CPPFLAGS) $(USBUTILS_CPPFLAGS) -I$(top_builddir)/lib \
  560. -I$(top_srcdir)/lib $(am__append_1)
  561. cgminer_LDFLAGS = $(PTHREAD_FLAGS)
  562. cgminer_LDADD = $(DLOPEN_FLAGS) @LIBCURL_LIBS@ @JANSSON_LIBS@ @PTHREAD_LIBS@ \
  563. @NCURSES_LIBS@ @PDCURSES_LIBS@ @WS2_LIBS@ \
  564. @LIBUSB_LIBS@ @LIBUDEV_LIBS@ @MM_LIBS@ @RT_LIBS@ \
  565. @MATH_LIBS@ lib/libgnu.a ccan/libccan.a
  566. # common sources
  567. cgminer_SOURCES := cgminer.c elist.h miner.h compat.h bench_block.h \
  568. util.c util.h uthash.h logging.h sha2.c sha2.h api.c logging.c \
  569. klist.h klist.c noncedup.c $(am__append_2) $(am__append_3) \
  570. $(am__append_4) $(am__append_5) $(am__append_6) \
  571. $(am__append_7) $(am__append_8) $(am__append_9) \
  572. $(am__append_10) $(am__append_11) $(am__append_12) \
  573. $(am__append_13) $(am__append_14) $(am__append_15) \
  574. $(am__append_16) $(am__append_17) $(am__append_18) \
  575. $(am__append_19) $(am__append_20) $(am__append_21) \
  576. $(am__append_22) $(am__append_23) $(am__append_24) \
  577. $(am__append_25) $(am__append_26)
  578. @HAS_MODMINER_TRUE@bitstreamsdir = $(bindir)/bitstreams
  579. @HAS_MODMINER_TRUE@dist_bitstreams_DATA = $(top_srcdir)/bitstreams/README
  580. all: config.h
  581. $(MAKE) $(AM_MAKEFLAGS) all-recursive
  582. .SUFFIXES:
  583. .SUFFIXES: .c .lo .o .obj
  584. am--refresh:
  585. @:
  586. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  587. @for dep in $?; do \
  588. case '$(am__configure_deps)' in \
  589. *$$dep*) \
  590. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  591. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  592. && exit 0; \
  593. exit 1;; \
  594. esac; \
  595. done; \
  596. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  597. $(am__cd) $(top_srcdir) && \
  598. $(AUTOMAKE) --foreign Makefile
  599. .PRECIOUS: Makefile
  600. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  601. @case '$?' in \
  602. *config.status*) \
  603. echo ' $(SHELL) ./config.status'; \
  604. $(SHELL) ./config.status;; \
  605. *) \
  606. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  607. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  608. esac;
  609. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  610. $(SHELL) ./config.status --recheck
  611. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  612. $(am__cd) $(srcdir) && $(AUTOCONF)
  613. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  614. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  615. $(am__aclocal_m4_deps):
  616. config.h: stamp-h1
  617. @if test ! -f $@; then \
  618. rm -f stamp-h1; \
  619. $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
  620. else :; fi
  621. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  622. @rm -f stamp-h1
  623. cd $(top_builddir) && $(SHELL) ./config.status config.h
  624. $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  625. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  626. rm -f stamp-h1
  627. touch $@
  628. distclean-hdr:
  629. -rm -f config.h stamp-h1
  630. install-binPROGRAMS: $(bin_PROGRAMS)
  631. @$(NORMAL_INSTALL)
  632. test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
  633. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  634. for p in $$list; do echo "$$p $$p"; done | \
  635. sed 's/$(EXEEXT)$$//' | \
  636. while read p p1; do if test -f $$p || test -f $$p1; \
  637. then echo "$$p"; echo "$$p"; else :; fi; \
  638. done | \
  639. sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
  640. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  641. sed 'N;N;N;s,\n, ,g' | \
  642. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  643. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  644. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  645. else { print "f", $$3 "/" $$4, $$1; } } \
  646. END { for (d in files) print "f", d, files[d] }' | \
  647. while read type dir files; do \
  648. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  649. test -z "$$files" || { \
  650. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  651. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  652. } \
  653. ; done
  654. uninstall-binPROGRAMS:
  655. @$(NORMAL_UNINSTALL)
  656. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  657. files=`for p in $$list; do echo "$$p"; done | \
  658. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  659. -e 's/$$/$(EXEEXT)/' `; \
  660. test -n "$$list" || exit 0; \
  661. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  662. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  663. clean-binPROGRAMS:
  664. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  665. echo " rm -f" $$list; \
  666. rm -f $$list || exit $$?; \
  667. test -n "$(EXEEXT)" || exit 0; \
  668. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  669. echo " rm -f" $$list; \
  670. rm -f $$list
  671. cgminer$(EXEEXT): $(cgminer_OBJECTS) $(cgminer_DEPENDENCIES)
  672. @rm -f cgminer$(EXEEXT)
  673. $(AM_V_CCLD)$(cgminer_LINK) $(cgminer_OBJECTS) $(cgminer_LDADD) $(LIBS)
  674. mostlyclean-compile:
  675. -rm -f *.$(OBJEXT)
  676. distclean-compile:
  677. -rm -f *.tab.c
  678. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-A1-board-selector-CCD.Po@am__quote@
  679. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-A1-board-selector-CCR.Po@am__quote@
  680. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-A1-trimpot-mcp4x.Po@am__quote@
  681. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-api.Po@am__quote@
  682. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-cgminer.Po@am__quote@
  683. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-crc16.Po@am__quote@
  684. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Po@am__quote@
  685. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-avalon.Po@am__quote@
  686. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-avalon2.Po@am__quote@
  687. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-bab.Po@am__quote@
  688. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-bflsc.Po@am__quote@
  689. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-bitforce.Po@am__quote@
  690. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-bitfury.Po@am__quote@
  691. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-bitmain.Po@am__quote@
  692. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-cointerra.Po@am__quote@
  693. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-drillbit.Po@am__quote@
  694. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-gridseed.Po@am__quote@
  695. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-hashfast.Po@am__quote@
  696. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-icarus.Po@am__quote@
  697. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-klondike.Po@am__quote@
  698. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-knc-spi-fpga.Po@am__quote@
  699. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-lketc.Po@am__quote@
  700. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-minion.Po@am__quote@
  701. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-modminer.Po@am__quote@
  702. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-spondoolies.Po@am__quote@
  703. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-driver-zeus.Po@am__quote@
  704. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-fpgautils.Po@am__quote@
  705. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-i2c-context.Po@am__quote@
  706. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-klist.Po@am__quote@
  707. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-libbitfury.Po@am__quote@
  708. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-logging.Po@am__quote@
  709. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-mcp2210.Po@am__quote@
  710. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-mg_proto_parser.Po@am__quote@
  711. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-noncedup.Po@am__quote@
  712. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-scrypt.Po@am__quote@
  713. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-sha2.Po@am__quote@
  714. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-spi-context.Po@am__quote@
  715. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-usbutils.Po@am__quote@
  716. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cgminer-util.Po@am__quote@
  717. .c.o:
  718. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  719. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  720. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  721. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  722. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  723. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  724. @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
  725. .c.obj:
  726. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  727. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  728. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  729. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  730. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  731. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  732. @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  733. .c.lo:
  734. @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  735. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  736. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  737. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  738. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  739. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  740. @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
  741. cgminer-cgminer.o: cgminer.c
  742. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-cgminer.o -MD -MP -MF $(DEPDIR)/cgminer-cgminer.Tpo -c -o cgminer-cgminer.o `test -f 'cgminer.c' || echo '$(srcdir)/'`cgminer.c
  743. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-cgminer.Tpo $(DEPDIR)/cgminer-cgminer.Po
  744. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  745. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgminer.c' object='cgminer-cgminer.o' libtool=no @AMDEPBACKSLASH@
  746. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  747. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-cgminer.o `test -f 'cgminer.c' || echo '$(srcdir)/'`cgminer.c
  748. cgminer-cgminer.obj: cgminer.c
  749. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-cgminer.obj -MD -MP -MF $(DEPDIR)/cgminer-cgminer.Tpo -c -o cgminer-cgminer.obj `if test -f 'cgminer.c'; then $(CYGPATH_W) 'cgminer.c'; else $(CYGPATH_W) '$(srcdir)/cgminer.c'; fi`
  750. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-cgminer.Tpo $(DEPDIR)/cgminer-cgminer.Po
  751. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  752. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='cgminer.c' object='cgminer-cgminer.obj' libtool=no @AMDEPBACKSLASH@
  753. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  754. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-cgminer.obj `if test -f 'cgminer.c'; then $(CYGPATH_W) 'cgminer.c'; else $(CYGPATH_W) '$(srcdir)/cgminer.c'; fi`
  755. cgminer-util.o: util.c
  756. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-util.o -MD -MP -MF $(DEPDIR)/cgminer-util.Tpo -c -o cgminer-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c
  757. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-util.Tpo $(DEPDIR)/cgminer-util.Po
  758. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  759. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='util.c' object='cgminer-util.o' libtool=no @AMDEPBACKSLASH@
  760. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  761. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-util.o `test -f 'util.c' || echo '$(srcdir)/'`util.c
  762. cgminer-util.obj: util.c
  763. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-util.obj -MD -MP -MF $(DEPDIR)/cgminer-util.Tpo -c -o cgminer-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi`
  764. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-util.Tpo $(DEPDIR)/cgminer-util.Po
  765. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  766. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='util.c' object='cgminer-util.obj' libtool=no @AMDEPBACKSLASH@
  767. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  768. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-util.obj `if test -f 'util.c'; then $(CYGPATH_W) 'util.c'; else $(CYGPATH_W) '$(srcdir)/util.c'; fi`
  769. cgminer-sha2.o: sha2.c
  770. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-sha2.o -MD -MP -MF $(DEPDIR)/cgminer-sha2.Tpo -c -o cgminer-sha2.o `test -f 'sha2.c' || echo '$(srcdir)/'`sha2.c
  771. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-sha2.Tpo $(DEPDIR)/cgminer-sha2.Po
  772. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  773. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sha2.c' object='cgminer-sha2.o' libtool=no @AMDEPBACKSLASH@
  774. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  775. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-sha2.o `test -f 'sha2.c' || echo '$(srcdir)/'`sha2.c
  776. cgminer-sha2.obj: sha2.c
  777. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-sha2.obj -MD -MP -MF $(DEPDIR)/cgminer-sha2.Tpo -c -o cgminer-sha2.obj `if test -f 'sha2.c'; then $(CYGPATH_W) 'sha2.c'; else $(CYGPATH_W) '$(srcdir)/sha2.c'; fi`
  778. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-sha2.Tpo $(DEPDIR)/cgminer-sha2.Po
  779. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  780. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sha2.c' object='cgminer-sha2.obj' libtool=no @AMDEPBACKSLASH@
  781. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  782. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-sha2.obj `if test -f 'sha2.c'; then $(CYGPATH_W) 'sha2.c'; else $(CYGPATH_W) '$(srcdir)/sha2.c'; fi`
  783. cgminer-api.o: api.c
  784. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-api.o -MD -MP -MF $(DEPDIR)/cgminer-api.Tpo -c -o cgminer-api.o `test -f 'api.c' || echo '$(srcdir)/'`api.c
  785. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-api.Tpo $(DEPDIR)/cgminer-api.Po
  786. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  787. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='api.c' object='cgminer-api.o' libtool=no @AMDEPBACKSLASH@
  788. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  789. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-api.o `test -f 'api.c' || echo '$(srcdir)/'`api.c
  790. cgminer-api.obj: api.c
  791. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-api.obj -MD -MP -MF $(DEPDIR)/cgminer-api.Tpo -c -o cgminer-api.obj `if test -f 'api.c'; then $(CYGPATH_W) 'api.c'; else $(CYGPATH_W) '$(srcdir)/api.c'; fi`
  792. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-api.Tpo $(DEPDIR)/cgminer-api.Po
  793. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  794. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='api.c' object='cgminer-api.obj' libtool=no @AMDEPBACKSLASH@
  795. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  796. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-api.obj `if test -f 'api.c'; then $(CYGPATH_W) 'api.c'; else $(CYGPATH_W) '$(srcdir)/api.c'; fi`
  797. cgminer-logging.o: logging.c
  798. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-logging.o -MD -MP -MF $(DEPDIR)/cgminer-logging.Tpo -c -o cgminer-logging.o `test -f 'logging.c' || echo '$(srcdir)/'`logging.c
  799. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-logging.Tpo $(DEPDIR)/cgminer-logging.Po
  800. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  801. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='logging.c' object='cgminer-logging.o' libtool=no @AMDEPBACKSLASH@
  802. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  803. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-logging.o `test -f 'logging.c' || echo '$(srcdir)/'`logging.c
  804. cgminer-logging.obj: logging.c
  805. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-logging.obj -MD -MP -MF $(DEPDIR)/cgminer-logging.Tpo -c -o cgminer-logging.obj `if test -f 'logging.c'; then $(CYGPATH_W) 'logging.c'; else $(CYGPATH_W) '$(srcdir)/logging.c'; fi`
  806. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-logging.Tpo $(DEPDIR)/cgminer-logging.Po
  807. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  808. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='logging.c' object='cgminer-logging.obj' libtool=no @AMDEPBACKSLASH@
  809. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  810. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-logging.obj `if test -f 'logging.c'; then $(CYGPATH_W) 'logging.c'; else $(CYGPATH_W) '$(srcdir)/logging.c'; fi`
  811. cgminer-klist.o: klist.c
  812. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-klist.o -MD -MP -MF $(DEPDIR)/cgminer-klist.Tpo -c -o cgminer-klist.o `test -f 'klist.c' || echo '$(srcdir)/'`klist.c
  813. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-klist.Tpo $(DEPDIR)/cgminer-klist.Po
  814. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  815. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='klist.c' object='cgminer-klist.o' libtool=no @AMDEPBACKSLASH@
  816. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  817. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-klist.o `test -f 'klist.c' || echo '$(srcdir)/'`klist.c
  818. cgminer-klist.obj: klist.c
  819. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-klist.obj -MD -MP -MF $(DEPDIR)/cgminer-klist.Tpo -c -o cgminer-klist.obj `if test -f 'klist.c'; then $(CYGPATH_W) 'klist.c'; else $(CYGPATH_W) '$(srcdir)/klist.c'; fi`
  820. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-klist.Tpo $(DEPDIR)/cgminer-klist.Po
  821. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  822. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='klist.c' object='cgminer-klist.obj' libtool=no @AMDEPBACKSLASH@
  823. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  824. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-klist.obj `if test -f 'klist.c'; then $(CYGPATH_W) 'klist.c'; else $(CYGPATH_W) '$(srcdir)/klist.c'; fi`
  825. cgminer-noncedup.o: noncedup.c
  826. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-noncedup.o -MD -MP -MF $(DEPDIR)/cgminer-noncedup.Tpo -c -o cgminer-noncedup.o `test -f 'noncedup.c' || echo '$(srcdir)/'`noncedup.c
  827. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-noncedup.Tpo $(DEPDIR)/cgminer-noncedup.Po
  828. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  829. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='noncedup.c' object='cgminer-noncedup.o' libtool=no @AMDEPBACKSLASH@
  830. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  831. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-noncedup.o `test -f 'noncedup.c' || echo '$(srcdir)/'`noncedup.c
  832. cgminer-noncedup.obj: noncedup.c
  833. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-noncedup.obj -MD -MP -MF $(DEPDIR)/cgminer-noncedup.Tpo -c -o cgminer-noncedup.obj `if test -f 'noncedup.c'; then $(CYGPATH_W) 'noncedup.c'; else $(CYGPATH_W) '$(srcdir)/noncedup.c'; fi`
  834. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-noncedup.Tpo $(DEPDIR)/cgminer-noncedup.Po
  835. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  836. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='noncedup.c' object='cgminer-noncedup.obj' libtool=no @AMDEPBACKSLASH@
  837. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  838. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-noncedup.obj `if test -f 'noncedup.c'; then $(CYGPATH_W) 'noncedup.c'; else $(CYGPATH_W) '$(srcdir)/noncedup.c'; fi`
  839. cgminer-scrypt.o: scrypt.c
  840. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-scrypt.o -MD -MP -MF $(DEPDIR)/cgminer-scrypt.Tpo -c -o cgminer-scrypt.o `test -f 'scrypt.c' || echo '$(srcdir)/'`scrypt.c
  841. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-scrypt.Tpo $(DEPDIR)/cgminer-scrypt.Po
  842. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  843. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scrypt.c' object='cgminer-scrypt.o' libtool=no @AMDEPBACKSLASH@
  844. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  845. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-scrypt.o `test -f 'scrypt.c' || echo '$(srcdir)/'`scrypt.c
  846. cgminer-scrypt.obj: scrypt.c
  847. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-scrypt.obj -MD -MP -MF $(DEPDIR)/cgminer-scrypt.Tpo -c -o cgminer-scrypt.obj `if test -f 'scrypt.c'; then $(CYGPATH_W) 'scrypt.c'; else $(CYGPATH_W) '$(srcdir)/scrypt.c'; fi`
  848. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-scrypt.Tpo $(DEPDIR)/cgminer-scrypt.Po
  849. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  850. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scrypt.c' object='cgminer-scrypt.obj' libtool=no @AMDEPBACKSLASH@
  851. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  852. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-scrypt.obj `if test -f 'scrypt.c'; then $(CYGPATH_W) 'scrypt.c'; else $(CYGPATH_W) '$(srcdir)/scrypt.c'; fi`
  853. cgminer-fpgautils.o: fpgautils.c
  854. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-fpgautils.o -MD -MP -MF $(DEPDIR)/cgminer-fpgautils.Tpo -c -o cgminer-fpgautils.o `test -f 'fpgautils.c' || echo '$(srcdir)/'`fpgautils.c
  855. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-fpgautils.Tpo $(DEPDIR)/cgminer-fpgautils.Po
  856. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  857. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fpgautils.c' object='cgminer-fpgautils.o' libtool=no @AMDEPBACKSLASH@
  858. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  859. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-fpgautils.o `test -f 'fpgautils.c' || echo '$(srcdir)/'`fpgautils.c
  860. cgminer-fpgautils.obj: fpgautils.c
  861. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-fpgautils.obj -MD -MP -MF $(DEPDIR)/cgminer-fpgautils.Tpo -c -o cgminer-fpgautils.obj `if test -f 'fpgautils.c'; then $(CYGPATH_W) 'fpgautils.c'; else $(CYGPATH_W) '$(srcdir)/fpgautils.c'; fi`
  862. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-fpgautils.Tpo $(DEPDIR)/cgminer-fpgautils.Po
  863. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  864. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fpgautils.c' object='cgminer-fpgautils.obj' libtool=no @AMDEPBACKSLASH@
  865. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  866. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-fpgautils.obj `if test -f 'fpgautils.c'; then $(CYGPATH_W) 'fpgautils.c'; else $(CYGPATH_W) '$(srcdir)/fpgautils.c'; fi`
  867. cgminer-usbutils.o: usbutils.c
  868. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-usbutils.o -MD -MP -MF $(DEPDIR)/cgminer-usbutils.Tpo -c -o cgminer-usbutils.o `test -f 'usbutils.c' || echo '$(srcdir)/'`usbutils.c
  869. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-usbutils.Tpo $(DEPDIR)/cgminer-usbutils.Po
  870. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  871. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='usbutils.c' object='cgminer-usbutils.o' libtool=no @AMDEPBACKSLASH@
  872. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  873. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-usbutils.o `test -f 'usbutils.c' || echo '$(srcdir)/'`usbutils.c
  874. cgminer-usbutils.obj: usbutils.c
  875. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-usbutils.obj -MD -MP -MF $(DEPDIR)/cgminer-usbutils.Tpo -c -o cgminer-usbutils.obj `if test -f 'usbutils.c'; then $(CYGPATH_W) 'usbutils.c'; else $(CYGPATH_W) '$(srcdir)/usbutils.c'; fi`
  876. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-usbutils.Tpo $(DEPDIR)/cgminer-usbutils.Po
  877. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  878. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='usbutils.c' object='cgminer-usbutils.obj' libtool=no @AMDEPBACKSLASH@
  879. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  880. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-usbutils.obj `if test -f 'usbutils.c'; then $(CYGPATH_W) 'usbutils.c'; else $(CYGPATH_W) '$(srcdir)/usbutils.c'; fi`
  881. cgminer-libbitfury.o: libbitfury.c
  882. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-libbitfury.o -MD -MP -MF $(DEPDIR)/cgminer-libbitfury.Tpo -c -o cgminer-libbitfury.o `test -f 'libbitfury.c' || echo '$(srcdir)/'`libbitfury.c
  883. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-libbitfury.Tpo $(DEPDIR)/cgminer-libbitfury.Po
  884. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  885. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libbitfury.c' object='cgminer-libbitfury.o' libtool=no @AMDEPBACKSLASH@
  886. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  887. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-libbitfury.o `test -f 'libbitfury.c' || echo '$(srcdir)/'`libbitfury.c
  888. cgminer-libbitfury.obj: libbitfury.c
  889. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-libbitfury.obj -MD -MP -MF $(DEPDIR)/cgminer-libbitfury.Tpo -c -o cgminer-libbitfury.obj `if test -f 'libbitfury.c'; then $(CYGPATH_W) 'libbitfury.c'; else $(CYGPATH_W) '$(srcdir)/libbitfury.c'; fi`
  890. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-libbitfury.Tpo $(DEPDIR)/cgminer-libbitfury.Po
  891. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  892. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='libbitfury.c' object='cgminer-libbitfury.obj' libtool=no @AMDEPBACKSLASH@
  893. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  894. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-libbitfury.obj `if test -f 'libbitfury.c'; then $(CYGPATH_W) 'libbitfury.c'; else $(CYGPATH_W) '$(srcdir)/libbitfury.c'; fi`
  895. cgminer-mcp2210.o: mcp2210.c
  896. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-mcp2210.o -MD -MP -MF $(DEPDIR)/cgminer-mcp2210.Tpo -c -o cgminer-mcp2210.o `test -f 'mcp2210.c' || echo '$(srcdir)/'`mcp2210.c
  897. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-mcp2210.Tpo $(DEPDIR)/cgminer-mcp2210.Po
  898. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  899. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mcp2210.c' object='cgminer-mcp2210.o' libtool=no @AMDEPBACKSLASH@
  900. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  901. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-mcp2210.o `test -f 'mcp2210.c' || echo '$(srcdir)/'`mcp2210.c
  902. cgminer-mcp2210.obj: mcp2210.c
  903. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-mcp2210.obj -MD -MP -MF $(DEPDIR)/cgminer-mcp2210.Tpo -c -o cgminer-mcp2210.obj `if test -f 'mcp2210.c'; then $(CYGPATH_W) 'mcp2210.c'; else $(CYGPATH_W) '$(srcdir)/mcp2210.c'; fi`
  904. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-mcp2210.Tpo $(DEPDIR)/cgminer-mcp2210.Po
  905. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  906. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mcp2210.c' object='cgminer-mcp2210.obj' libtool=no @AMDEPBACKSLASH@
  907. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  908. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-mcp2210.obj `if test -f 'mcp2210.c'; then $(CYGPATH_W) 'mcp2210.c'; else $(CYGPATH_W) '$(srcdir)/mcp2210.c'; fi`
  909. cgminer-driver-avalon.o: driver-avalon.c
  910. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-avalon.o -MD -MP -MF $(DEPDIR)/cgminer-driver-avalon.Tpo -c -o cgminer-driver-avalon.o `test -f 'driver-avalon.c' || echo '$(srcdir)/'`driver-avalon.c
  911. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-avalon.Tpo $(DEPDIR)/cgminer-driver-avalon.Po
  912. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  913. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-avalon.c' object='cgminer-driver-avalon.o' libtool=no @AMDEPBACKSLASH@
  914. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  915. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-avalon.o `test -f 'driver-avalon.c' || echo '$(srcdir)/'`driver-avalon.c
  916. cgminer-driver-avalon.obj: driver-avalon.c
  917. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-avalon.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-avalon.Tpo -c -o cgminer-driver-avalon.obj `if test -f 'driver-avalon.c'; then $(CYGPATH_W) 'driver-avalon.c'; else $(CYGPATH_W) '$(srcdir)/driver-avalon.c'; fi`
  918. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-avalon.Tpo $(DEPDIR)/cgminer-driver-avalon.Po
  919. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  920. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-avalon.c' object='cgminer-driver-avalon.obj' libtool=no @AMDEPBACKSLASH@
  921. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  922. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-avalon.obj `if test -f 'driver-avalon.c'; then $(CYGPATH_W) 'driver-avalon.c'; else $(CYGPATH_W) '$(srcdir)/driver-avalon.c'; fi`
  923. cgminer-driver-knc-spi-fpga.o: driver-knc-spi-fpga.c
  924. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-knc-spi-fpga.o -MD -MP -MF $(DEPDIR)/cgminer-driver-knc-spi-fpga.Tpo -c -o cgminer-driver-knc-spi-fpga.o `test -f 'driver-knc-spi-fpga.c' || echo '$(srcdir)/'`driver-knc-spi-fpga.c
  925. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-knc-spi-fpga.Tpo $(DEPDIR)/cgminer-driver-knc-spi-fpga.Po
  926. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  927. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-knc-spi-fpga.c' object='cgminer-driver-knc-spi-fpga.o' libtool=no @AMDEPBACKSLASH@
  928. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  929. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-knc-spi-fpga.o `test -f 'driver-knc-spi-fpga.c' || echo '$(srcdir)/'`driver-knc-spi-fpga.c
  930. cgminer-driver-knc-spi-fpga.obj: driver-knc-spi-fpga.c
  931. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-knc-spi-fpga.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-knc-spi-fpga.Tpo -c -o cgminer-driver-knc-spi-fpga.obj `if test -f 'driver-knc-spi-fpga.c'; then $(CYGPATH_W) 'driver-knc-spi-fpga.c'; else $(CYGPATH_W) '$(srcdir)/driver-knc-spi-fpga.c'; fi`
  932. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-knc-spi-fpga.Tpo $(DEPDIR)/cgminer-driver-knc-spi-fpga.Po
  933. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  934. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-knc-spi-fpga.c' object='cgminer-driver-knc-spi-fpga.obj' libtool=no @AMDEPBACKSLASH@
  935. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  936. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-knc-spi-fpga.obj `if test -f 'driver-knc-spi-fpga.c'; then $(CYGPATH_W) 'driver-knc-spi-fpga.c'; else $(CYGPATH_W) '$(srcdir)/driver-knc-spi-fpga.c'; fi`
  937. cgminer-driver-bflsc.o: driver-bflsc.c
  938. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bflsc.o -MD -MP -MF $(DEPDIR)/cgminer-driver-bflsc.Tpo -c -o cgminer-driver-bflsc.o `test -f 'driver-bflsc.c' || echo '$(srcdir)/'`driver-bflsc.c
  939. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bflsc.Tpo $(DEPDIR)/cgminer-driver-bflsc.Po
  940. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  941. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bflsc.c' object='cgminer-driver-bflsc.o' libtool=no @AMDEPBACKSLASH@
  942. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  943. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bflsc.o `test -f 'driver-bflsc.c' || echo '$(srcdir)/'`driver-bflsc.c
  944. cgminer-driver-bflsc.obj: driver-bflsc.c
  945. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bflsc.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-bflsc.Tpo -c -o cgminer-driver-bflsc.obj `if test -f 'driver-bflsc.c'; then $(CYGPATH_W) 'driver-bflsc.c'; else $(CYGPATH_W) '$(srcdir)/driver-bflsc.c'; fi`
  946. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bflsc.Tpo $(DEPDIR)/cgminer-driver-bflsc.Po
  947. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  948. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bflsc.c' object='cgminer-driver-bflsc.obj' libtool=no @AMDEPBACKSLASH@
  949. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  950. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bflsc.obj `if test -f 'driver-bflsc.c'; then $(CYGPATH_W) 'driver-bflsc.c'; else $(CYGPATH_W) '$(srcdir)/driver-bflsc.c'; fi`
  951. cgminer-driver-bitforce.o: driver-bitforce.c
  952. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitforce.o -MD -MP -MF $(DEPDIR)/cgminer-driver-bitforce.Tpo -c -o cgminer-driver-bitforce.o `test -f 'driver-bitforce.c' || echo '$(srcdir)/'`driver-bitforce.c
  953. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitforce.Tpo $(DEPDIR)/cgminer-driver-bitforce.Po
  954. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  955. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitforce.c' object='cgminer-driver-bitforce.o' libtool=no @AMDEPBACKSLASH@
  956. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  957. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitforce.o `test -f 'driver-bitforce.c' || echo '$(srcdir)/'`driver-bitforce.c
  958. cgminer-driver-bitforce.obj: driver-bitforce.c
  959. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitforce.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-bitforce.Tpo -c -o cgminer-driver-bitforce.obj `if test -f 'driver-bitforce.c'; then $(CYGPATH_W) 'driver-bitforce.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitforce.c'; fi`
  960. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitforce.Tpo $(DEPDIR)/cgminer-driver-bitforce.Po
  961. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  962. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitforce.c' object='cgminer-driver-bitforce.obj' libtool=no @AMDEPBACKSLASH@
  963. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  964. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitforce.obj `if test -f 'driver-bitforce.c'; then $(CYGPATH_W) 'driver-bitforce.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitforce.c'; fi`
  965. cgminer-driver-hashfast.o: driver-hashfast.c
  966. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-hashfast.o -MD -MP -MF $(DEPDIR)/cgminer-driver-hashfast.Tpo -c -o cgminer-driver-hashfast.o `test -f 'driver-hashfast.c' || echo '$(srcdir)/'`driver-hashfast.c
  967. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-hashfast.Tpo $(DEPDIR)/cgminer-driver-hashfast.Po
  968. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  969. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-hashfast.c' object='cgminer-driver-hashfast.o' libtool=no @AMDEPBACKSLASH@
  970. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  971. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-hashfast.o `test -f 'driver-hashfast.c' || echo '$(srcdir)/'`driver-hashfast.c
  972. cgminer-driver-hashfast.obj: driver-hashfast.c
  973. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-hashfast.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-hashfast.Tpo -c -o cgminer-driver-hashfast.obj `if test -f 'driver-hashfast.c'; then $(CYGPATH_W) 'driver-hashfast.c'; else $(CYGPATH_W) '$(srcdir)/driver-hashfast.c'; fi`
  974. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-hashfast.Tpo $(DEPDIR)/cgminer-driver-hashfast.Po
  975. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  976. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-hashfast.c' object='cgminer-driver-hashfast.obj' libtool=no @AMDEPBACKSLASH@
  977. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  978. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-hashfast.obj `if test -f 'driver-hashfast.c'; then $(CYGPATH_W) 'driver-hashfast.c'; else $(CYGPATH_W) '$(srcdir)/driver-hashfast.c'; fi`
  979. cgminer-driver-bitfury.o: driver-bitfury.c
  980. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitfury.o -MD -MP -MF $(DEPDIR)/cgminer-driver-bitfury.Tpo -c -o cgminer-driver-bitfury.o `test -f 'driver-bitfury.c' || echo '$(srcdir)/'`driver-bitfury.c
  981. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitfury.Tpo $(DEPDIR)/cgminer-driver-bitfury.Po
  982. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  983. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitfury.c' object='cgminer-driver-bitfury.o' libtool=no @AMDEPBACKSLASH@
  984. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  985. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitfury.o `test -f 'driver-bitfury.c' || echo '$(srcdir)/'`driver-bitfury.c
  986. cgminer-driver-bitfury.obj: driver-bitfury.c
  987. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitfury.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-bitfury.Tpo -c -o cgminer-driver-bitfury.obj `if test -f 'driver-bitfury.c'; then $(CYGPATH_W) 'driver-bitfury.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitfury.c'; fi`
  988. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitfury.Tpo $(DEPDIR)/cgminer-driver-bitfury.Po
  989. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  990. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitfury.c' object='cgminer-driver-bitfury.obj' libtool=no @AMDEPBACKSLASH@
  991. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  992. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitfury.obj `if test -f 'driver-bitfury.c'; then $(CYGPATH_W) 'driver-bitfury.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitfury.c'; fi`
  993. cgminer-driver-SPI-bitmine-A1.o: driver-SPI-bitmine-A1.c
  994. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-SPI-bitmine-A1.o -MD -MP -MF $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Tpo -c -o cgminer-driver-SPI-bitmine-A1.o `test -f 'driver-SPI-bitmine-A1.c' || echo '$(srcdir)/'`driver-SPI-bitmine-A1.c
  995. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Tpo $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Po
  996. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  997. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-SPI-bitmine-A1.c' object='cgminer-driver-SPI-bitmine-A1.o' libtool=no @AMDEPBACKSLASH@
  998. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  999. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-SPI-bitmine-A1.o `test -f 'driver-SPI-bitmine-A1.c' || echo '$(srcdir)/'`driver-SPI-bitmine-A1.c
  1000. cgminer-driver-SPI-bitmine-A1.obj: driver-SPI-bitmine-A1.c
  1001. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-SPI-bitmine-A1.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Tpo -c -o cgminer-driver-SPI-bitmine-A1.obj `if test -f 'driver-SPI-bitmine-A1.c'; then $(CYGPATH_W) 'driver-SPI-bitmine-A1.c'; else $(CYGPATH_W) '$(srcdir)/driver-SPI-bitmine-A1.c'; fi`
  1002. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Tpo $(DEPDIR)/cgminer-driver-SPI-bitmine-A1.Po
  1003. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1004. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-SPI-bitmine-A1.c' object='cgminer-driver-SPI-bitmine-A1.obj' libtool=no @AMDEPBACKSLASH@
  1005. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1006. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-SPI-bitmine-A1.obj `if test -f 'driver-SPI-bitmine-A1.c'; then $(CYGPATH_W) 'driver-SPI-bitmine-A1.c'; else $(CYGPATH_W) '$(srcdir)/driver-SPI-bitmine-A1.c'; fi`
  1007. cgminer-spi-context.o: spi-context.c
  1008. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-spi-context.o -MD -MP -MF $(DEPDIR)/cgminer-spi-context.Tpo -c -o cgminer-spi-context.o `test -f 'spi-context.c' || echo '$(srcdir)/'`spi-context.c
  1009. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-spi-context.Tpo $(DEPDIR)/cgminer-spi-context.Po
  1010. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1011. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='spi-context.c' object='cgminer-spi-context.o' libtool=no @AMDEPBACKSLASH@
  1012. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1013. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-spi-context.o `test -f 'spi-context.c' || echo '$(srcdir)/'`spi-context.c
  1014. cgminer-spi-context.obj: spi-context.c
  1015. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-spi-context.obj -MD -MP -MF $(DEPDIR)/cgminer-spi-context.Tpo -c -o cgminer-spi-context.obj `if test -f 'spi-context.c'; then $(CYGPATH_W) 'spi-context.c'; else $(CYGPATH_W) '$(srcdir)/spi-context.c'; fi`
  1016. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-spi-context.Tpo $(DEPDIR)/cgminer-spi-context.Po
  1017. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1018. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='spi-context.c' object='cgminer-spi-context.obj' libtool=no @AMDEPBACKSLASH@
  1019. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1020. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-spi-context.obj `if test -f 'spi-context.c'; then $(CYGPATH_W) 'spi-context.c'; else $(CYGPATH_W) '$(srcdir)/spi-context.c'; fi`
  1021. cgminer-A1-board-selector-CCD.o: A1-board-selector-CCD.c
  1022. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-board-selector-CCD.o -MD -MP -MF $(DEPDIR)/cgminer-A1-board-selector-CCD.Tpo -c -o cgminer-A1-board-selector-CCD.o `test -f 'A1-board-selector-CCD.c' || echo '$(srcdir)/'`A1-board-selector-CCD.c
  1023. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-board-selector-CCD.Tpo $(DEPDIR)/cgminer-A1-board-selector-CCD.Po
  1024. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1025. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-board-selector-CCD.c' object='cgminer-A1-board-selector-CCD.o' libtool=no @AMDEPBACKSLASH@
  1026. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1027. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-board-selector-CCD.o `test -f 'A1-board-selector-CCD.c' || echo '$(srcdir)/'`A1-board-selector-CCD.c
  1028. cgminer-A1-board-selector-CCD.obj: A1-board-selector-CCD.c
  1029. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-board-selector-CCD.obj -MD -MP -MF $(DEPDIR)/cgminer-A1-board-selector-CCD.Tpo -c -o cgminer-A1-board-selector-CCD.obj `if test -f 'A1-board-selector-CCD.c'; then $(CYGPATH_W) 'A1-board-selector-CCD.c'; else $(CYGPATH_W) '$(srcdir)/A1-board-selector-CCD.c'; fi`
  1030. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-board-selector-CCD.Tpo $(DEPDIR)/cgminer-A1-board-selector-CCD.Po
  1031. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1032. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-board-selector-CCD.c' object='cgminer-A1-board-selector-CCD.obj' libtool=no @AMDEPBACKSLASH@
  1033. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1034. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-board-selector-CCD.obj `if test -f 'A1-board-selector-CCD.c'; then $(CYGPATH_W) 'A1-board-selector-CCD.c'; else $(CYGPATH_W) '$(srcdir)/A1-board-selector-CCD.c'; fi`
  1035. cgminer-A1-board-selector-CCR.o: A1-board-selector-CCR.c
  1036. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-board-selector-CCR.o -MD -MP -MF $(DEPDIR)/cgminer-A1-board-selector-CCR.Tpo -c -o cgminer-A1-board-selector-CCR.o `test -f 'A1-board-selector-CCR.c' || echo '$(srcdir)/'`A1-board-selector-CCR.c
  1037. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-board-selector-CCR.Tpo $(DEPDIR)/cgminer-A1-board-selector-CCR.Po
  1038. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1039. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-board-selector-CCR.c' object='cgminer-A1-board-selector-CCR.o' libtool=no @AMDEPBACKSLASH@
  1040. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1041. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-board-selector-CCR.o `test -f 'A1-board-selector-CCR.c' || echo '$(srcdir)/'`A1-board-selector-CCR.c
  1042. cgminer-A1-board-selector-CCR.obj: A1-board-selector-CCR.c
  1043. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-board-selector-CCR.obj -MD -MP -MF $(DEPDIR)/cgminer-A1-board-selector-CCR.Tpo -c -o cgminer-A1-board-selector-CCR.obj `if test -f 'A1-board-selector-CCR.c'; then $(CYGPATH_W) 'A1-board-selector-CCR.c'; else $(CYGPATH_W) '$(srcdir)/A1-board-selector-CCR.c'; fi`
  1044. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-board-selector-CCR.Tpo $(DEPDIR)/cgminer-A1-board-selector-CCR.Po
  1045. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1046. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-board-selector-CCR.c' object='cgminer-A1-board-selector-CCR.obj' libtool=no @AMDEPBACKSLASH@
  1047. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1048. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-board-selector-CCR.obj `if test -f 'A1-board-selector-CCR.c'; then $(CYGPATH_W) 'A1-board-selector-CCR.c'; else $(CYGPATH_W) '$(srcdir)/A1-board-selector-CCR.c'; fi`
  1049. cgminer-A1-trimpot-mcp4x.o: A1-trimpot-mcp4x.c
  1050. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-trimpot-mcp4x.o -MD -MP -MF $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Tpo -c -o cgminer-A1-trimpot-mcp4x.o `test -f 'A1-trimpot-mcp4x.c' || echo '$(srcdir)/'`A1-trimpot-mcp4x.c
  1051. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Tpo $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Po
  1052. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1053. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-trimpot-mcp4x.c' object='cgminer-A1-trimpot-mcp4x.o' libtool=no @AMDEPBACKSLASH@
  1054. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1055. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-trimpot-mcp4x.o `test -f 'A1-trimpot-mcp4x.c' || echo '$(srcdir)/'`A1-trimpot-mcp4x.c
  1056. cgminer-A1-trimpot-mcp4x.obj: A1-trimpot-mcp4x.c
  1057. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-A1-trimpot-mcp4x.obj -MD -MP -MF $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Tpo -c -o cgminer-A1-trimpot-mcp4x.obj `if test -f 'A1-trimpot-mcp4x.c'; then $(CYGPATH_W) 'A1-trimpot-mcp4x.c'; else $(CYGPATH_W) '$(srcdir)/A1-trimpot-mcp4x.c'; fi`
  1058. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Tpo $(DEPDIR)/cgminer-A1-trimpot-mcp4x.Po
  1059. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1060. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='A1-trimpot-mcp4x.c' object='cgminer-A1-trimpot-mcp4x.obj' libtool=no @AMDEPBACKSLASH@
  1061. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1062. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-A1-trimpot-mcp4x.obj `if test -f 'A1-trimpot-mcp4x.c'; then $(CYGPATH_W) 'A1-trimpot-mcp4x.c'; else $(CYGPATH_W) '$(srcdir)/A1-trimpot-mcp4x.c'; fi`
  1063. cgminer-i2c-context.o: i2c-context.c
  1064. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-i2c-context.o -MD -MP -MF $(DEPDIR)/cgminer-i2c-context.Tpo -c -o cgminer-i2c-context.o `test -f 'i2c-context.c' || echo '$(srcdir)/'`i2c-context.c
  1065. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-i2c-context.Tpo $(DEPDIR)/cgminer-i2c-context.Po
  1066. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1067. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='i2c-context.c' object='cgminer-i2c-context.o' libtool=no @AMDEPBACKSLASH@
  1068. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1069. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-i2c-context.o `test -f 'i2c-context.c' || echo '$(srcdir)/'`i2c-context.c
  1070. cgminer-i2c-context.obj: i2c-context.c
  1071. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-i2c-context.obj -MD -MP -MF $(DEPDIR)/cgminer-i2c-context.Tpo -c -o cgminer-i2c-context.obj `if test -f 'i2c-context.c'; then $(CYGPATH_W) 'i2c-context.c'; else $(CYGPATH_W) '$(srcdir)/i2c-context.c'; fi`
  1072. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-i2c-context.Tpo $(DEPDIR)/cgminer-i2c-context.Po
  1073. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1074. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='i2c-context.c' object='cgminer-i2c-context.obj' libtool=no @AMDEPBACKSLASH@
  1075. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1076. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-i2c-context.obj `if test -f 'i2c-context.c'; then $(CYGPATH_W) 'i2c-context.c'; else $(CYGPATH_W) '$(srcdir)/i2c-context.c'; fi`
  1077. cgminer-driver-drillbit.o: driver-drillbit.c
  1078. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-drillbit.o -MD -MP -MF $(DEPDIR)/cgminer-driver-drillbit.Tpo -c -o cgminer-driver-drillbit.o `test -f 'driver-drillbit.c' || echo '$(srcdir)/'`driver-drillbit.c
  1079. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-drillbit.Tpo $(DEPDIR)/cgminer-driver-drillbit.Po
  1080. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1081. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-drillbit.c' object='cgminer-driver-drillbit.o' libtool=no @AMDEPBACKSLASH@
  1082. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1083. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-drillbit.o `test -f 'driver-drillbit.c' || echo '$(srcdir)/'`driver-drillbit.c
  1084. cgminer-driver-drillbit.obj: driver-drillbit.c
  1085. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-drillbit.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-drillbit.Tpo -c -o cgminer-driver-drillbit.obj `if test -f 'driver-drillbit.c'; then $(CYGPATH_W) 'driver-drillbit.c'; else $(CYGPATH_W) '$(srcdir)/driver-drillbit.c'; fi`
  1086. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-drillbit.Tpo $(DEPDIR)/cgminer-driver-drillbit.Po
  1087. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1088. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-drillbit.c' object='cgminer-driver-drillbit.obj' libtool=no @AMDEPBACKSLASH@
  1089. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1090. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-drillbit.obj `if test -f 'driver-drillbit.c'; then $(CYGPATH_W) 'driver-drillbit.c'; else $(CYGPATH_W) '$(srcdir)/driver-drillbit.c'; fi`
  1091. cgminer-driver-icarus.o: driver-icarus.c
  1092. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-icarus.o -MD -MP -MF $(DEPDIR)/cgminer-driver-icarus.Tpo -c -o cgminer-driver-icarus.o `test -f 'driver-icarus.c' || echo '$(srcdir)/'`driver-icarus.c
  1093. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-icarus.Tpo $(DEPDIR)/cgminer-driver-icarus.Po
  1094. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1095. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-icarus.c' object='cgminer-driver-icarus.o' libtool=no @AMDEPBACKSLASH@
  1096. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1097. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-icarus.o `test -f 'driver-icarus.c' || echo '$(srcdir)/'`driver-icarus.c
  1098. cgminer-driver-icarus.obj: driver-icarus.c
  1099. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-icarus.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-icarus.Tpo -c -o cgminer-driver-icarus.obj `if test -f 'driver-icarus.c'; then $(CYGPATH_W) 'driver-icarus.c'; else $(CYGPATH_W) '$(srcdir)/driver-icarus.c'; fi`
  1100. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-icarus.Tpo $(DEPDIR)/cgminer-driver-icarus.Po
  1101. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1102. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-icarus.c' object='cgminer-driver-icarus.obj' libtool=no @AMDEPBACKSLASH@
  1103. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1104. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-icarus.obj `if test -f 'driver-icarus.c'; then $(CYGPATH_W) 'driver-icarus.c'; else $(CYGPATH_W) '$(srcdir)/driver-icarus.c'; fi`
  1105. cgminer-driver-klondike.o: driver-klondike.c
  1106. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-klondike.o -MD -MP -MF $(DEPDIR)/cgminer-driver-klondike.Tpo -c -o cgminer-driver-klondike.o `test -f 'driver-klondike.c' || echo '$(srcdir)/'`driver-klondike.c
  1107. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-klondike.Tpo $(DEPDIR)/cgminer-driver-klondike.Po
  1108. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1109. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-klondike.c' object='cgminer-driver-klondike.o' libtool=no @AMDEPBACKSLASH@
  1110. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1111. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-klondike.o `test -f 'driver-klondike.c' || echo '$(srcdir)/'`driver-klondike.c
  1112. cgminer-driver-klondike.obj: driver-klondike.c
  1113. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-klondike.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-klondike.Tpo -c -o cgminer-driver-klondike.obj `if test -f 'driver-klondike.c'; then $(CYGPATH_W) 'driver-klondike.c'; else $(CYGPATH_W) '$(srcdir)/driver-klondike.c'; fi`
  1114. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-klondike.Tpo $(DEPDIR)/cgminer-driver-klondike.Po
  1115. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1116. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-klondike.c' object='cgminer-driver-klondike.obj' libtool=no @AMDEPBACKSLASH@
  1117. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1118. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-klondike.obj `if test -f 'driver-klondike.c'; then $(CYGPATH_W) 'driver-klondike.c'; else $(CYGPATH_W) '$(srcdir)/driver-klondike.c'; fi`
  1119. cgminer-driver-cointerra.o: driver-cointerra.c
  1120. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-cointerra.o -MD -MP -MF $(DEPDIR)/cgminer-driver-cointerra.Tpo -c -o cgminer-driver-cointerra.o `test -f 'driver-cointerra.c' || echo '$(srcdir)/'`driver-cointerra.c
  1121. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-cointerra.Tpo $(DEPDIR)/cgminer-driver-cointerra.Po
  1122. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1123. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-cointerra.c' object='cgminer-driver-cointerra.o' libtool=no @AMDEPBACKSLASH@
  1124. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1125. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-cointerra.o `test -f 'driver-cointerra.c' || echo '$(srcdir)/'`driver-cointerra.c
  1126. cgminer-driver-cointerra.obj: driver-cointerra.c
  1127. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-cointerra.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-cointerra.Tpo -c -o cgminer-driver-cointerra.obj `if test -f 'driver-cointerra.c'; then $(CYGPATH_W) 'driver-cointerra.c'; else $(CYGPATH_W) '$(srcdir)/driver-cointerra.c'; fi`
  1128. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-cointerra.Tpo $(DEPDIR)/cgminer-driver-cointerra.Po
  1129. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1130. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-cointerra.c' object='cgminer-driver-cointerra.obj' libtool=no @AMDEPBACKSLASH@
  1131. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1132. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-cointerra.obj `if test -f 'driver-cointerra.c'; then $(CYGPATH_W) 'driver-cointerra.c'; else $(CYGPATH_W) '$(srcdir)/driver-cointerra.c'; fi`
  1133. cgminer-driver-spondoolies.o: driver-spondoolies.c
  1134. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-spondoolies.o -MD -MP -MF $(DEPDIR)/cgminer-driver-spondoolies.Tpo -c -o cgminer-driver-spondoolies.o `test -f 'driver-spondoolies.c' || echo '$(srcdir)/'`driver-spondoolies.c
  1135. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-spondoolies.Tpo $(DEPDIR)/cgminer-driver-spondoolies.Po
  1136. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1137. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-spondoolies.c' object='cgminer-driver-spondoolies.o' libtool=no @AMDEPBACKSLASH@
  1138. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1139. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-spondoolies.o `test -f 'driver-spondoolies.c' || echo '$(srcdir)/'`driver-spondoolies.c
  1140. cgminer-driver-spondoolies.obj: driver-spondoolies.c
  1141. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-spondoolies.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-spondoolies.Tpo -c -o cgminer-driver-spondoolies.obj `if test -f 'driver-spondoolies.c'; then $(CYGPATH_W) 'driver-spondoolies.c'; else $(CYGPATH_W) '$(srcdir)/driver-spondoolies.c'; fi`
  1142. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-spondoolies.Tpo $(DEPDIR)/cgminer-driver-spondoolies.Po
  1143. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1144. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-spondoolies.c' object='cgminer-driver-spondoolies.obj' libtool=no @AMDEPBACKSLASH@
  1145. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1146. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-spondoolies.obj `if test -f 'driver-spondoolies.c'; then $(CYGPATH_W) 'driver-spondoolies.c'; else $(CYGPATH_W) '$(srcdir)/driver-spondoolies.c'; fi`
  1147. cgminer-mg_proto_parser.o: mg_proto_parser.c
  1148. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-mg_proto_parser.o -MD -MP -MF $(DEPDIR)/cgminer-mg_proto_parser.Tpo -c -o cgminer-mg_proto_parser.o `test -f 'mg_proto_parser.c' || echo '$(srcdir)/'`mg_proto_parser.c
  1149. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-mg_proto_parser.Tpo $(DEPDIR)/cgminer-mg_proto_parser.Po
  1150. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1151. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mg_proto_parser.c' object='cgminer-mg_proto_parser.o' libtool=no @AMDEPBACKSLASH@
  1152. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1153. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-mg_proto_parser.o `test -f 'mg_proto_parser.c' || echo '$(srcdir)/'`mg_proto_parser.c
  1154. cgminer-mg_proto_parser.obj: mg_proto_parser.c
  1155. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-mg_proto_parser.obj -MD -MP -MF $(DEPDIR)/cgminer-mg_proto_parser.Tpo -c -o cgminer-mg_proto_parser.obj `if test -f 'mg_proto_parser.c'; then $(CYGPATH_W) 'mg_proto_parser.c'; else $(CYGPATH_W) '$(srcdir)/mg_proto_parser.c'; fi`
  1156. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-mg_proto_parser.Tpo $(DEPDIR)/cgminer-mg_proto_parser.Po
  1157. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1158. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mg_proto_parser.c' object='cgminer-mg_proto_parser.obj' libtool=no @AMDEPBACKSLASH@
  1159. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1160. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-mg_proto_parser.obj `if test -f 'mg_proto_parser.c'; then $(CYGPATH_W) 'mg_proto_parser.c'; else $(CYGPATH_W) '$(srcdir)/mg_proto_parser.c'; fi`
  1161. cgminer-driver-bab.o: driver-bab.c
  1162. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bab.o -MD -MP -MF $(DEPDIR)/cgminer-driver-bab.Tpo -c -o cgminer-driver-bab.o `test -f 'driver-bab.c' || echo '$(srcdir)/'`driver-bab.c
  1163. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bab.Tpo $(DEPDIR)/cgminer-driver-bab.Po
  1164. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1165. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bab.c' object='cgminer-driver-bab.o' libtool=no @AMDEPBACKSLASH@
  1166. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1167. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bab.o `test -f 'driver-bab.c' || echo '$(srcdir)/'`driver-bab.c
  1168. cgminer-driver-bab.obj: driver-bab.c
  1169. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bab.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-bab.Tpo -c -o cgminer-driver-bab.obj `if test -f 'driver-bab.c'; then $(CYGPATH_W) 'driver-bab.c'; else $(CYGPATH_W) '$(srcdir)/driver-bab.c'; fi`
  1170. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bab.Tpo $(DEPDIR)/cgminer-driver-bab.Po
  1171. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1172. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bab.c' object='cgminer-driver-bab.obj' libtool=no @AMDEPBACKSLASH@
  1173. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1174. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bab.obj `if test -f 'driver-bab.c'; then $(CYGPATH_W) 'driver-bab.c'; else $(CYGPATH_W) '$(srcdir)/driver-bab.c'; fi`
  1175. cgminer-driver-avalon2.o: driver-avalon2.c
  1176. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-avalon2.o -MD -MP -MF $(DEPDIR)/cgminer-driver-avalon2.Tpo -c -o cgminer-driver-avalon2.o `test -f 'driver-avalon2.c' || echo '$(srcdir)/'`driver-avalon2.c
  1177. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-avalon2.Tpo $(DEPDIR)/cgminer-driver-avalon2.Po
  1178. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1179. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-avalon2.c' object='cgminer-driver-avalon2.o' libtool=no @AMDEPBACKSLASH@
  1180. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1181. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-avalon2.o `test -f 'driver-avalon2.c' || echo '$(srcdir)/'`driver-avalon2.c
  1182. cgminer-driver-avalon2.obj: driver-avalon2.c
  1183. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-avalon2.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-avalon2.Tpo -c -o cgminer-driver-avalon2.obj `if test -f 'driver-avalon2.c'; then $(CYGPATH_W) 'driver-avalon2.c'; else $(CYGPATH_W) '$(srcdir)/driver-avalon2.c'; fi`
  1184. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-avalon2.Tpo $(DEPDIR)/cgminer-driver-avalon2.Po
  1185. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1186. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-avalon2.c' object='cgminer-driver-avalon2.obj' libtool=no @AMDEPBACKSLASH@
  1187. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1188. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-avalon2.obj `if test -f 'driver-avalon2.c'; then $(CYGPATH_W) 'driver-avalon2.c'; else $(CYGPATH_W) '$(srcdir)/driver-avalon2.c'; fi`
  1189. cgminer-crc16.o: crc16.c
  1190. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-crc16.o -MD -MP -MF $(DEPDIR)/cgminer-crc16.Tpo -c -o cgminer-crc16.o `test -f 'crc16.c' || echo '$(srcdir)/'`crc16.c
  1191. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-crc16.Tpo $(DEPDIR)/cgminer-crc16.Po
  1192. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1193. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='crc16.c' object='cgminer-crc16.o' libtool=no @AMDEPBACKSLASH@
  1194. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1195. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-crc16.o `test -f 'crc16.c' || echo '$(srcdir)/'`crc16.c
  1196. cgminer-crc16.obj: crc16.c
  1197. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-crc16.obj -MD -MP -MF $(DEPDIR)/cgminer-crc16.Tpo -c -o cgminer-crc16.obj `if test -f 'crc16.c'; then $(CYGPATH_W) 'crc16.c'; else $(CYGPATH_W) '$(srcdir)/crc16.c'; fi`
  1198. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-crc16.Tpo $(DEPDIR)/cgminer-crc16.Po
  1199. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1200. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='crc16.c' object='cgminer-crc16.obj' libtool=no @AMDEPBACKSLASH@
  1201. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1202. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-crc16.obj `if test -f 'crc16.c'; then $(CYGPATH_W) 'crc16.c'; else $(CYGPATH_W) '$(srcdir)/crc16.c'; fi`
  1203. cgminer-driver-minion.o: driver-minion.c
  1204. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-minion.o -MD -MP -MF $(DEPDIR)/cgminer-driver-minion.Tpo -c -o cgminer-driver-minion.o `test -f 'driver-minion.c' || echo '$(srcdir)/'`driver-minion.c
  1205. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-minion.Tpo $(DEPDIR)/cgminer-driver-minion.Po
  1206. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1207. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-minion.c' object='cgminer-driver-minion.o' libtool=no @AMDEPBACKSLASH@
  1208. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1209. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-minion.o `test -f 'driver-minion.c' || echo '$(srcdir)/'`driver-minion.c
  1210. cgminer-driver-minion.obj: driver-minion.c
  1211. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-minion.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-minion.Tpo -c -o cgminer-driver-minion.obj `if test -f 'driver-minion.c'; then $(CYGPATH_W) 'driver-minion.c'; else $(CYGPATH_W) '$(srcdir)/driver-minion.c'; fi`
  1212. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-minion.Tpo $(DEPDIR)/cgminer-driver-minion.Po
  1213. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1214. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-minion.c' object='cgminer-driver-minion.obj' libtool=no @AMDEPBACKSLASH@
  1215. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1216. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-minion.obj `if test -f 'driver-minion.c'; then $(CYGPATH_W) 'driver-minion.c'; else $(CYGPATH_W) '$(srcdir)/driver-minion.c'; fi`
  1217. cgminer-driver-bitmain.o: driver-bitmain.c
  1218. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitmain.o -MD -MP -MF $(DEPDIR)/cgminer-driver-bitmain.Tpo -c -o cgminer-driver-bitmain.o `test -f 'driver-bitmain.c' || echo '$(srcdir)/'`driver-bitmain.c
  1219. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitmain.Tpo $(DEPDIR)/cgminer-driver-bitmain.Po
  1220. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1221. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitmain.c' object='cgminer-driver-bitmain.o' libtool=no @AMDEPBACKSLASH@
  1222. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1223. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitmain.o `test -f 'driver-bitmain.c' || echo '$(srcdir)/'`driver-bitmain.c
  1224. cgminer-driver-bitmain.obj: driver-bitmain.c
  1225. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-bitmain.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-bitmain.Tpo -c -o cgminer-driver-bitmain.obj `if test -f 'driver-bitmain.c'; then $(CYGPATH_W) 'driver-bitmain.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitmain.c'; fi`
  1226. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-bitmain.Tpo $(DEPDIR)/cgminer-driver-bitmain.Po
  1227. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1228. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-bitmain.c' object='cgminer-driver-bitmain.obj' libtool=no @AMDEPBACKSLASH@
  1229. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1230. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-bitmain.obj `if test -f 'driver-bitmain.c'; then $(CYGPATH_W) 'driver-bitmain.c'; else $(CYGPATH_W) '$(srcdir)/driver-bitmain.c'; fi`
  1231. cgminer-driver-modminer.o: driver-modminer.c
  1232. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-modminer.o -MD -MP -MF $(DEPDIR)/cgminer-driver-modminer.Tpo -c -o cgminer-driver-modminer.o `test -f 'driver-modminer.c' || echo '$(srcdir)/'`driver-modminer.c
  1233. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-modminer.Tpo $(DEPDIR)/cgminer-driver-modminer.Po
  1234. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1235. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-modminer.c' object='cgminer-driver-modminer.o' libtool=no @AMDEPBACKSLASH@
  1236. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1237. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-modminer.o `test -f 'driver-modminer.c' || echo '$(srcdir)/'`driver-modminer.c
  1238. cgminer-driver-modminer.obj: driver-modminer.c
  1239. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-modminer.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-modminer.Tpo -c -o cgminer-driver-modminer.obj `if test -f 'driver-modminer.c'; then $(CYGPATH_W) 'driver-modminer.c'; else $(CYGPATH_W) '$(srcdir)/driver-modminer.c'; fi`
  1240. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-modminer.Tpo $(DEPDIR)/cgminer-driver-modminer.Po
  1241. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1242. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-modminer.c' object='cgminer-driver-modminer.obj' libtool=no @AMDEPBACKSLASH@
  1243. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1244. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-modminer.obj `if test -f 'driver-modminer.c'; then $(CYGPATH_W) 'driver-modminer.c'; else $(CYGPATH_W) '$(srcdir)/driver-modminer.c'; fi`
  1245. cgminer-driver-gridseed.o: driver-gridseed.c
  1246. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-gridseed.o -MD -MP -MF $(DEPDIR)/cgminer-driver-gridseed.Tpo -c -o cgminer-driver-gridseed.o `test -f 'driver-gridseed.c' || echo '$(srcdir)/'`driver-gridseed.c
  1247. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-gridseed.Tpo $(DEPDIR)/cgminer-driver-gridseed.Po
  1248. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1249. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-gridseed.c' object='cgminer-driver-gridseed.o' libtool=no @AMDEPBACKSLASH@
  1250. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1251. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-gridseed.o `test -f 'driver-gridseed.c' || echo '$(srcdir)/'`driver-gridseed.c
  1252. cgminer-driver-gridseed.obj: driver-gridseed.c
  1253. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-gridseed.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-gridseed.Tpo -c -o cgminer-driver-gridseed.obj `if test -f 'driver-gridseed.c'; then $(CYGPATH_W) 'driver-gridseed.c'; else $(CYGPATH_W) '$(srcdir)/driver-gridseed.c'; fi`
  1254. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-gridseed.Tpo $(DEPDIR)/cgminer-driver-gridseed.Po
  1255. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1256. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-gridseed.c' object='cgminer-driver-gridseed.obj' libtool=no @AMDEPBACKSLASH@
  1257. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1258. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-gridseed.obj `if test -f 'driver-gridseed.c'; then $(CYGPATH_W) 'driver-gridseed.c'; else $(CYGPATH_W) '$(srcdir)/driver-gridseed.c'; fi`
  1259. cgminer-driver-zeus.o: driver-zeus.c
  1260. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-zeus.o -MD -MP -MF $(DEPDIR)/cgminer-driver-zeus.Tpo -c -o cgminer-driver-zeus.o `test -f 'driver-zeus.c' || echo '$(srcdir)/'`driver-zeus.c
  1261. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-zeus.Tpo $(DEPDIR)/cgminer-driver-zeus.Po
  1262. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1263. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-zeus.c' object='cgminer-driver-zeus.o' libtool=no @AMDEPBACKSLASH@
  1264. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1265. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-zeus.o `test -f 'driver-zeus.c' || echo '$(srcdir)/'`driver-zeus.c
  1266. cgminer-driver-zeus.obj: driver-zeus.c
  1267. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-zeus.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-zeus.Tpo -c -o cgminer-driver-zeus.obj `if test -f 'driver-zeus.c'; then $(CYGPATH_W) 'driver-zeus.c'; else $(CYGPATH_W) '$(srcdir)/driver-zeus.c'; fi`
  1268. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-zeus.Tpo $(DEPDIR)/cgminer-driver-zeus.Po
  1269. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1270. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-zeus.c' object='cgminer-driver-zeus.obj' libtool=no @AMDEPBACKSLASH@
  1271. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1272. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-zeus.obj `if test -f 'driver-zeus.c'; then $(CYGPATH_W) 'driver-zeus.c'; else $(CYGPATH_W) '$(srcdir)/driver-zeus.c'; fi`
  1273. cgminer-driver-lketc.o: driver-lketc.c
  1274. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-lketc.o -MD -MP -MF $(DEPDIR)/cgminer-driver-lketc.Tpo -c -o cgminer-driver-lketc.o `test -f 'driver-lketc.c' || echo '$(srcdir)/'`driver-lketc.c
  1275. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-lketc.Tpo $(DEPDIR)/cgminer-driver-lketc.Po
  1276. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1277. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-lketc.c' object='cgminer-driver-lketc.o' libtool=no @AMDEPBACKSLASH@
  1278. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1279. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-lketc.o `test -f 'driver-lketc.c' || echo '$(srcdir)/'`driver-lketc.c
  1280. cgminer-driver-lketc.obj: driver-lketc.c
  1281. @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cgminer-driver-lketc.obj -MD -MP -MF $(DEPDIR)/cgminer-driver-lketc.Tpo -c -o cgminer-driver-lketc.obj `if test -f 'driver-lketc.c'; then $(CYGPATH_W) 'driver-lketc.c'; else $(CYGPATH_W) '$(srcdir)/driver-lketc.c'; fi`
  1282. @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/cgminer-driver-lketc.Tpo $(DEPDIR)/cgminer-driver-lketc.Po
  1283. @am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
  1284. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='driver-lketc.c' object='cgminer-driver-lketc.obj' libtool=no @AMDEPBACKSLASH@
  1285. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1286. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(cgminer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cgminer-driver-lketc.obj `if test -f 'driver-lketc.c'; then $(CYGPATH_W) 'driver-lketc.c'; else $(CYGPATH_W) '$(srcdir)/driver-lketc.c'; fi`
  1287. mostlyclean-libtool:
  1288. -rm -f *.lo
  1289. clean-libtool:
  1290. -rm -rf .libs _libs
  1291. distclean-libtool:
  1292. -rm -f libtool config.lt
  1293. install-dist_bitstreamsDATA: $(dist_bitstreams_DATA)
  1294. @$(NORMAL_INSTALL)
  1295. test -z "$(bitstreamsdir)" || $(MKDIR_P) "$(DESTDIR)$(bitstreamsdir)"
  1296. @list='$(dist_bitstreams_DATA)'; test -n "$(bitstreamsdir)" || list=; \
  1297. for p in $$list; do \
  1298. if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
  1299. echo "$$d$$p"; \
  1300. done | $(am__base_list) | \
  1301. while read files; do \
  1302. echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(bitstreamsdir)'"; \
  1303. $(INSTALL_DATA) $$files "$(DESTDIR)$(bitstreamsdir)" || exit $$?; \
  1304. done
  1305. uninstall-dist_bitstreamsDATA:
  1306. @$(NORMAL_UNINSTALL)
  1307. @list='$(dist_bitstreams_DATA)'; test -n "$(bitstreamsdir)" || list=; \
  1308. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  1309. test -n "$$files" || exit 0; \
  1310. echo " ( cd '$(DESTDIR)$(bitstreamsdir)' && rm -f" $$files ")"; \
  1311. cd "$(DESTDIR)$(bitstreamsdir)" && rm -f $$files
  1312. # This directory's subdirectories are mostly independent; you can cd
  1313. # into them and run `make' without going through this Makefile.
  1314. # To change the values of `make' variables: instead of editing Makefiles,
  1315. # (1) if the variable is set in `config.status', edit `config.status'
  1316. # (which will cause the Makefiles to be regenerated when you run `make');
  1317. # (2) otherwise, pass the desired values on the `make' command line.
  1318. $(RECURSIVE_TARGETS):
  1319. @fail= failcom='exit 1'; \
  1320. for f in x $$MAKEFLAGS; do \
  1321. case $$f in \
  1322. *=* | --[!k]*);; \
  1323. *k*) failcom='fail=yes';; \
  1324. esac; \
  1325. done; \
  1326. dot_seen=no; \
  1327. target=`echo $@ | sed s/-recursive//`; \
  1328. list='$(SUBDIRS)'; for subdir in $$list; do \
  1329. echo "Making $$target in $$subdir"; \
  1330. if test "$$subdir" = "."; then \
  1331. dot_seen=yes; \
  1332. local_target="$$target-am"; \
  1333. else \
  1334. local_target="$$target"; \
  1335. fi; \
  1336. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  1337. || eval $$failcom; \
  1338. done; \
  1339. if test "$$dot_seen" = "no"; then \
  1340. $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
  1341. fi; test -z "$$fail"
  1342. $(RECURSIVE_CLEAN_TARGETS):
  1343. @fail= failcom='exit 1'; \
  1344. for f in x $$MAKEFLAGS; do \
  1345. case $$f in \
  1346. *=* | --[!k]*);; \
  1347. *k*) failcom='fail=yes';; \
  1348. esac; \
  1349. done; \
  1350. dot_seen=no; \
  1351. case "$@" in \
  1352. distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
  1353. *) list='$(SUBDIRS)' ;; \
  1354. esac; \
  1355. rev=''; for subdir in $$list; do \
  1356. if test "$$subdir" = "."; then :; else \
  1357. rev="$$subdir $$rev"; \
  1358. fi; \
  1359. done; \
  1360. rev="$$rev ."; \
  1361. target=`echo $@ | sed s/-recursive//`; \
  1362. for subdir in $$rev; do \
  1363. echo "Making $$target in $$subdir"; \
  1364. if test "$$subdir" = "."; then \
  1365. local_target="$$target-am"; \
  1366. else \
  1367. local_target="$$target"; \
  1368. fi; \
  1369. ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
  1370. || eval $$failcom; \
  1371. done && test -z "$$fail"
  1372. tags-recursive:
  1373. list='$(SUBDIRS)'; for subdir in $$list; do \
  1374. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
  1375. done
  1376. ctags-recursive:
  1377. list='$(SUBDIRS)'; for subdir in $$list; do \
  1378. test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
  1379. done
  1380. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  1381. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  1382. unique=`for i in $$list; do \
  1383. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  1384. done | \
  1385. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  1386. END { if (nonempty) { for (i in files) print i; }; }'`; \
  1387. mkid -fID $$unique
  1388. tags: TAGS
  1389. TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  1390. $(TAGS_FILES) $(LISP)
  1391. set x; \
  1392. here=`pwd`; \
  1393. if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  1394. include_option=--etags-include; \
  1395. empty_fix=.; \
  1396. else \
  1397. include_option=--include; \
  1398. empty_fix=; \
  1399. fi; \
  1400. list='$(SUBDIRS)'; for subdir in $$list; do \
  1401. if test "$$subdir" = .; then :; else \
  1402. test ! -f $$subdir/TAGS || \
  1403. set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
  1404. fi; \
  1405. done; \
  1406. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  1407. unique=`for i in $$list; do \
  1408. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  1409. done | \
  1410. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  1411. END { if (nonempty) { for (i in files) print i; }; }'`; \
  1412. shift; \
  1413. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  1414. test -n "$$unique" || unique=$$empty_fix; \
  1415. if test $$# -gt 0; then \
  1416. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1417. "$$@" $$unique; \
  1418. else \
  1419. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  1420. $$unique; \
  1421. fi; \
  1422. fi
  1423. ctags: CTAGS
  1424. CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  1425. $(TAGS_FILES) $(LISP)
  1426. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  1427. unique=`for i in $$list; do \
  1428. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  1429. done | \
  1430. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  1431. END { if (nonempty) { for (i in files) print i; }; }'`; \
  1432. test -z "$(CTAGS_ARGS)$$unique" \
  1433. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  1434. $$unique
  1435. GTAGS:
  1436. here=`$(am__cd) $(top_builddir) && pwd` \
  1437. && $(am__cd) $(top_srcdir) \
  1438. && gtags -i $(GTAGS_ARGS) "$$here"
  1439. distclean-tags:
  1440. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  1441. distdir: $(DISTFILES)
  1442. $(am__remove_distdir)
  1443. test -d "$(distdir)" || mkdir "$(distdir)"
  1444. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1445. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  1446. list='$(DISTFILES)'; \
  1447. dist_files=`for file in $$list; do echo $$file; done | \
  1448. sed -e "s|^$$srcdirstrip/||;t" \
  1449. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  1450. case $$dist_files in \
  1451. */*) $(MKDIR_P) `echo "$$dist_files" | \
  1452. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  1453. sort -u` ;; \
  1454. esac; \
  1455. for file in $$dist_files; do \
  1456. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  1457. if test -d $$d/$$file; then \
  1458. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  1459. if test -d "$(distdir)/$$file"; then \
  1460. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1461. fi; \
  1462. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  1463. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  1464. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  1465. fi; \
  1466. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  1467. else \
  1468. test -f "$(distdir)/$$file" \
  1469. || cp -p $$d/$$file "$(distdir)/$$file" \
  1470. || exit 1; \
  1471. fi; \
  1472. done
  1473. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  1474. if test "$$subdir" = .; then :; else \
  1475. test -d "$(distdir)/$$subdir" \
  1476. || $(MKDIR_P) "$(distdir)/$$subdir" \
  1477. || exit 1; \
  1478. fi; \
  1479. done
  1480. @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
  1481. if test "$$subdir" = .; then :; else \
  1482. dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
  1483. $(am__relativize); \
  1484. new_distdir=$$reldir; \
  1485. dir1=$$subdir; dir2="$(top_distdir)"; \
  1486. $(am__relativize); \
  1487. new_top_distdir=$$reldir; \
  1488. echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
  1489. echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
  1490. ($(am__cd) $$subdir && \
  1491. $(MAKE) $(AM_MAKEFLAGS) \
  1492. top_distdir="$$new_top_distdir" \
  1493. distdir="$$new_distdir" \
  1494. am__remove_distdir=: \
  1495. am__skip_length_check=: \
  1496. am__skip_mode_fix=: \
  1497. distdir) \
  1498. || exit 1; \
  1499. fi; \
  1500. done
  1501. -test -n "$(am__skip_mode_fix)" \
  1502. || find "$(distdir)" -type d ! -perm -755 \
  1503. -exec chmod u+rwx,go+rx {} \; -o \
  1504. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  1505. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  1506. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  1507. || chmod -R a+r "$(distdir)"
  1508. dist-gzip: distdir
  1509. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  1510. $(am__remove_distdir)
  1511. dist-bzip2: distdir
  1512. tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
  1513. $(am__remove_distdir)
  1514. dist-lzma: distdir
  1515. tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
  1516. $(am__remove_distdir)
  1517. dist-xz: distdir
  1518. tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
  1519. $(am__remove_distdir)
  1520. dist-tarZ: distdir
  1521. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  1522. $(am__remove_distdir)
  1523. dist-shar: distdir
  1524. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  1525. $(am__remove_distdir)
  1526. dist-zip: distdir
  1527. -rm -f $(distdir).zip
  1528. zip -rq $(distdir).zip $(distdir)
  1529. $(am__remove_distdir)
  1530. dist dist-all: distdir
  1531. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  1532. $(am__remove_distdir)
  1533. # This target untars the dist file and tries a VPATH configuration. Then
  1534. # it guarantees that the distribution is self-contained by making another
  1535. # tarfile.
  1536. distcheck: dist
  1537. case '$(DIST_ARCHIVES)' in \
  1538. *.tar.gz*) \
  1539. GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
  1540. *.tar.bz2*) \
  1541. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  1542. *.tar.lzma*) \
  1543. lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
  1544. *.tar.xz*) \
  1545. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  1546. *.tar.Z*) \
  1547. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  1548. *.shar.gz*) \
  1549. GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
  1550. *.zip*) \
  1551. unzip $(distdir).zip ;;\
  1552. esac
  1553. chmod -R a-w $(distdir); chmod a+w $(distdir)
  1554. mkdir $(distdir)/_build
  1555. mkdir $(distdir)/_inst
  1556. chmod a-w $(distdir)
  1557. test -d $(distdir)/_build || exit 0; \
  1558. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  1559. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  1560. && am__cwd=`pwd` \
  1561. && $(am__cd) $(distdir)/_build \
  1562. && ../configure --srcdir=.. --prefix="$$dc_install_base" \
  1563. $(DISTCHECK_CONFIGURE_FLAGS) \
  1564. && $(MAKE) $(AM_MAKEFLAGS) \
  1565. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  1566. && $(MAKE) $(AM_MAKEFLAGS) check \
  1567. && $(MAKE) $(AM_MAKEFLAGS) install \
  1568. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  1569. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  1570. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  1571. distuninstallcheck \
  1572. && chmod -R a-w "$$dc_install_base" \
  1573. && ({ \
  1574. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  1575. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  1576. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  1577. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  1578. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  1579. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  1580. && rm -rf "$$dc_destdir" \
  1581. && $(MAKE) $(AM_MAKEFLAGS) dist \
  1582. && rm -rf $(DIST_ARCHIVES) \
  1583. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  1584. && cd "$$am__cwd" \
  1585. || exit 1
  1586. $(am__remove_distdir)
  1587. @(echo "$(distdir) archives ready for distribution: "; \
  1588. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  1589. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  1590. distuninstallcheck:
  1591. @$(am__cd) '$(distuninstallcheck_dir)' \
  1592. && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
  1593. || { echo "ERROR: files left after uninstall:" ; \
  1594. if test -n "$(DESTDIR)"; then \
  1595. echo " (check DESTDIR support)"; \
  1596. fi ; \
  1597. $(distuninstallcheck_listfiles) ; \
  1598. exit 1; } >&2
  1599. distcleancheck: distclean
  1600. @if test '$(srcdir)' = . ; then \
  1601. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  1602. exit 1 ; \
  1603. fi
  1604. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  1605. || { echo "ERROR: files left in build directory after distclean:" ; \
  1606. $(distcleancheck_listfiles) ; \
  1607. exit 1; } >&2
  1608. check-am: all-am
  1609. check: check-recursive
  1610. all-am: Makefile $(PROGRAMS) $(DATA) config.h
  1611. installdirs: installdirs-recursive
  1612. installdirs-am:
  1613. for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bitstreamsdir)"; do \
  1614. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  1615. done
  1616. install: install-recursive
  1617. install-exec: install-exec-recursive
  1618. install-data: install-data-recursive
  1619. uninstall: uninstall-recursive
  1620. install-am: all-am
  1621. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  1622. installcheck: installcheck-recursive
  1623. install-strip:
  1624. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  1625. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  1626. `test -z '$(STRIP)' || \
  1627. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  1628. mostlyclean-generic:
  1629. clean-generic:
  1630. distclean-generic:
  1631. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  1632. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  1633. maintainer-clean-generic:
  1634. @echo "This command is intended for maintainers to use"
  1635. @echo "it deletes files that may require special tools to rebuild."
  1636. clean: clean-recursive
  1637. clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
  1638. distclean: distclean-recursive
  1639. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1640. -rm -rf ./$(DEPDIR)
  1641. -rm -f Makefile
  1642. distclean-am: clean-am distclean-compile distclean-generic \
  1643. distclean-hdr distclean-libtool distclean-tags
  1644. dvi: dvi-recursive
  1645. dvi-am:
  1646. html: html-recursive
  1647. html-am:
  1648. info: info-recursive
  1649. info-am:
  1650. install-data-am: install-dist_bitstreamsDATA
  1651. install-dvi: install-dvi-recursive
  1652. install-dvi-am:
  1653. install-exec-am: install-binPROGRAMS
  1654. install-html: install-html-recursive
  1655. install-html-am:
  1656. install-info: install-info-recursive
  1657. install-info-am:
  1658. install-man:
  1659. install-pdf: install-pdf-recursive
  1660. install-pdf-am:
  1661. install-ps: install-ps-recursive
  1662. install-ps-am:
  1663. installcheck-am:
  1664. maintainer-clean: maintainer-clean-recursive
  1665. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  1666. -rm -rf $(top_srcdir)/autom4te.cache
  1667. -rm -rf ./$(DEPDIR)
  1668. -rm -f Makefile
  1669. maintainer-clean-am: distclean-am maintainer-clean-generic
  1670. mostlyclean: mostlyclean-recursive
  1671. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  1672. mostlyclean-libtool
  1673. pdf: pdf-recursive
  1674. pdf-am:
  1675. ps: ps-recursive
  1676. ps-am:
  1677. uninstall-am: uninstall-binPROGRAMS uninstall-dist_bitstreamsDATA
  1678. .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
  1679. ctags-recursive install-am install-strip tags-recursive
  1680. .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
  1681. all all-am am--refresh check check-am clean clean-binPROGRAMS \
  1682. clean-generic clean-libtool ctags ctags-recursive dist \
  1683. dist-all dist-bzip2 dist-gzip dist-lzma dist-shar dist-tarZ \
  1684. dist-xz dist-zip distcheck distclean distclean-compile \
  1685. distclean-generic distclean-hdr distclean-libtool \
  1686. distclean-tags distcleancheck distdir distuninstallcheck dvi \
  1687. dvi-am html html-am info info-am install install-am \
  1688. install-binPROGRAMS install-data install-data-am \
  1689. install-dist_bitstreamsDATA install-dvi install-dvi-am \
  1690. install-exec install-exec-am install-html install-html-am \
  1691. install-info install-info-am install-man install-pdf \
  1692. install-pdf-am install-ps install-ps-am install-strip \
  1693. installcheck installcheck-am installdirs installdirs-am \
  1694. maintainer-clean maintainer-clean-generic mostlyclean \
  1695. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  1696. pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \
  1697. uninstall-binPROGRAMS uninstall-dist_bitstreamsDATA
  1698. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  1699. # Otherwise a system limit (for SysV at least) may be exceeded.
  1700. .NOEXPORT: