Makefile.in 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078
  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. bin_PROGRAMS = bin/clish$(EXEEXT) bin/konfd$(EXEEXT) bin/konf$(EXEEXT)
  34. DIST_COMMON = README $(am__configure_deps) $(nobase_include_HEADERS) \
  35. $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
  36. $(srcdir)/config.h.in $(top_srcdir)/bin/module.am \
  37. $(top_srcdir)/clish/command/module.am \
  38. $(top_srcdir)/clish/module.am \
  39. $(top_srcdir)/clish/nspace/module.am \
  40. $(top_srcdir)/clish/param/module.am \
  41. $(top_srcdir)/clish/pargv/module.am \
  42. $(top_srcdir)/clish/ptype/module.am \
  43. $(top_srcdir)/clish/shell/module.am \
  44. $(top_srcdir)/clish/variable/module.am \
  45. $(top_srcdir)/clish/view/module.am $(top_srcdir)/configure \
  46. $(top_srcdir)/konf/buf/module.am $(top_srcdir)/konf/module.am \
  47. $(top_srcdir)/konf/net/module.am \
  48. $(top_srcdir)/konf/query/module.am \
  49. $(top_srcdir)/konf/tree/module.am \
  50. $(top_srcdir)/lub/argv/module.am \
  51. $(top_srcdir)/lub/bintree/module.am \
  52. $(top_srcdir)/lub/blockpool/module.am \
  53. $(top_srcdir)/lub/ctype/module.am \
  54. $(top_srcdir)/lub/dblockpool/module.am \
  55. $(top_srcdir)/lub/dump/module.am \
  56. $(top_srcdir)/lub/heap/module.am \
  57. $(top_srcdir)/lub/heap/posix/module.am \
  58. $(top_srcdir)/lub/heap/vxworks/module.am \
  59. $(top_srcdir)/lub/list/module.am $(top_srcdir)/lub/module.am \
  60. $(top_srcdir)/lub/partition/module.am \
  61. $(top_srcdir)/lub/partition/posix/module.am \
  62. $(top_srcdir)/lub/partition/vxworks/module.am \
  63. $(top_srcdir)/lub/string/module.am \
  64. $(top_srcdir)/lub/system/module.am \
  65. $(top_srcdir)/lub/test/module.am \
  66. $(top_srcdir)/lubheap/module.am \
  67. $(top_srcdir)/lubheap/posix/module.am \
  68. $(top_srcdir)/lubheap/vxworks/module.am \
  69. $(top_srcdir)/test/module.am \
  70. $(top_srcdir)/tinyrl/history/module.am \
  71. $(top_srcdir)/tinyrl/module.am \
  72. $(top_srcdir)/tinyrl/vt100/module.am \
  73. $(top_srcdir)/tinyxml/module.am \
  74. $(top_srcdir)/xml-examples/clish/module.am \
  75. $(top_srcdir)/xml-examples/klish/module.am \
  76. $(top_srcdir)/xml-examples/module.am aux_scripts/compile \
  77. aux_scripts/config.guess aux_scripts/config.sub \
  78. aux_scripts/depcomp aux_scripts/install-sh \
  79. aux_scripts/ltmain.sh aux_scripts/missing
  80. @LUBHEAP_TRUE@am__append_1 = lub/heap/cache.c lub/heap/cache.h \
  81. @LUBHEAP_TRUE@ lub/heap/cache_bucket.c lub/heap/context.c \
  82. @LUBHEAP_TRUE@ lub/heap/context.h lub/heap/heap__get_max_free.c \
  83. @LUBHEAP_TRUE@ lub/heap/heap__get_stacktrace.c \
  84. @LUBHEAP_TRUE@ lub/heap/heap__get_stats.c \
  85. @LUBHEAP_TRUE@ lub/heap/heap_add_segment.c \
  86. @LUBHEAP_TRUE@ lub/heap/heap_align_block.c \
  87. @LUBHEAP_TRUE@ lub/heap/heap_block__get_tail.c \
  88. @LUBHEAP_TRUE@ lub/heap/heap_block_from_ptr.c \
  89. @LUBHEAP_TRUE@ lub/heap/heap_block_getfirst.c \
  90. @LUBHEAP_TRUE@ lub/heap/heap_block_getkey.c \
  91. @LUBHEAP_TRUE@ lub/heap/heap_block_getnext.c \
  92. @LUBHEAP_TRUE@ lub/heap/heap_block_getprevious.c \
  93. @LUBHEAP_TRUE@ lub/heap/heap_block_check.c \
  94. @LUBHEAP_TRUE@ lub/heap/heap_check.c \
  95. @LUBHEAP_TRUE@ lub/heap/heap_context_delete.c \
  96. @LUBHEAP_TRUE@ lub/heap/heap_context_find_or_create.c \
  97. @LUBHEAP_TRUE@ lub/heap/heap_create.c lub/heap/heap_destroy.c \
  98. @LUBHEAP_TRUE@ lub/heap/heap_extend_both_ways.c \
  99. @LUBHEAP_TRUE@ lub/heap/heap_extend_downwards.c \
  100. @LUBHEAP_TRUE@ lub/heap/heap_extend_upwards.c \
  101. @LUBHEAP_TRUE@ lub/heap/heap_foreach_free_block.c \
  102. @LUBHEAP_TRUE@ lub/heap/heap_foreach_segment.c \
  103. @LUBHEAP_TRUE@ lub/heap/heap_graft_to_bottom.c \
  104. @LUBHEAP_TRUE@ lub/heap/heap_graft_to_top.c \
  105. @LUBHEAP_TRUE@ lub/heap/heap_init_free_block.c \
  106. @LUBHEAP_TRUE@ lub/heap/heap_merge_with_next.c \
  107. @LUBHEAP_TRUE@ lub/heap/heap_merge_with_previous.c \
  108. @LUBHEAP_TRUE@ lub/heap/heap_new_alloc_block.c \
  109. @LUBHEAP_TRUE@ lub/heap/heap_new_free_block.c \
  110. @LUBHEAP_TRUE@ lub/heap/heap_post_realloc.c \
  111. @LUBHEAP_TRUE@ lub/heap/heap_pre_realloc.c \
  112. @LUBHEAP_TRUE@ lub/heap/heap_raw_realloc.c \
  113. @LUBHEAP_TRUE@ lub/heap/heap_realloc.c \
  114. @LUBHEAP_TRUE@ lub/heap/heap_scan_stack.c lub/heap/heap_show.c \
  115. @LUBHEAP_TRUE@ lub/heap/heap_slice_from_bottom.c \
  116. @LUBHEAP_TRUE@ lub/heap/heap_slice_from_top.c \
  117. @LUBHEAP_TRUE@ lub/heap/heap_static_alloc.c \
  118. @LUBHEAP_TRUE@ lub/heap/heap_stop_here.c \
  119. @LUBHEAP_TRUE@ lub/heap/heap_tainted_memory.c lub/heap/node.c \
  120. @LUBHEAP_TRUE@ lub/heap/node.h lub/heap/private.h \
  121. @LUBHEAP_TRUE@ lub/heap/posix/heap_clean_stacks.c \
  122. @LUBHEAP_TRUE@ lub/heap/posix/heap_leak_mutex.c \
  123. @LUBHEAP_TRUE@ lub/heap/posix/heap_scan_bss.c \
  124. @LUBHEAP_TRUE@ lub/heap/posix/heap_scan_data.c \
  125. @LUBHEAP_TRUE@ lub/heap/posix/heap_symShow.c \
  126. @LUBHEAP_TRUE@ lub/heap/posix/sysheap_stubs.c \
  127. @LUBHEAP_TRUE@ lub/partition/partition_check_memory.c \
  128. @LUBHEAP_TRUE@ lub/partition/partition_destroy_local_heap.c \
  129. @LUBHEAP_TRUE@ lub/partition/partition_disable_leak_detection.c \
  130. @LUBHEAP_TRUE@ lub/partition/partition_enable_leak_detection.c \
  131. @LUBHEAP_TRUE@ lub/partition/partition_extend_memory.c \
  132. @LUBHEAP_TRUE@ lub/partition/partition_findcreate_local_heap.c \
  133. @LUBHEAP_TRUE@ lub/partition/partition_fini.c \
  134. @LUBHEAP_TRUE@ lub/partition/partition_init.c \
  135. @LUBHEAP_TRUE@ lub/partition/partition_realloc.c \
  136. @LUBHEAP_TRUE@ lub/partition/partition_segment_alloc.c \
  137. @LUBHEAP_TRUE@ lub/partition/partition_show.c \
  138. @LUBHEAP_TRUE@ lub/partition/partition_sysalloc.c \
  139. @LUBHEAP_TRUE@ lub/partition/private.h \
  140. @LUBHEAP_TRUE@ lub/partition/posix/posix_partition.c \
  141. @LUBHEAP_TRUE@ lub/partition/posix/private.h
  142. @LUBHEAP_TRUE@am__append_2 = liblubheap.la
  143. noinst_PROGRAMS = test/bintree$(EXEEXT) test/string$(EXEEXT) \
  144. $(am__EXEEXT_1)
  145. @LUBHEAP_TRUE@am__append_3 = \
  146. @LUBHEAP_TRUE@ test/heap \
  147. @LUBHEAP_TRUE@ test/mallocTest \
  148. @LUBHEAP_TRUE@ test/lubMallocTest
  149. subdir = .
  150. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  151. am__aclocal_m4_deps = $(top_srcdir)/configure.ac
  152. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  153. $(ACLOCAL_M4)
  154. am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  155. configure.lineno config.status.lineno
  156. mkinstalldirs = $(install_sh) -d
  157. CONFIG_HEADER = config.h
  158. CONFIG_CLEAN_FILES =
  159. CONFIG_CLEAN_VPATH_FILES =
  160. am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
  161. am__vpath_adj = case $$p in \
  162. $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
  163. *) f=$$p;; \
  164. esac;
  165. am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
  166. am__install_max = 40
  167. am__nobase_strip_setup = \
  168. srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
  169. am__nobase_strip = \
  170. for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
  171. am__nobase_list = $(am__nobase_strip_setup); \
  172. for p in $$list; do echo "$$p $$p"; done | \
  173. sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  174. $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
  175. if (++n[$$2] == $(am__install_max)) \
  176. { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
  177. END { for (dir in files) print dir, files[dir] }'
  178. am__base_list = \
  179. sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  180. sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
  181. am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libdir)" \
  182. "$(DESTDIR)$(bindir)" "$(DESTDIR)$(includedir)"
  183. LIBRARIES = $(lib_LIBRARIES)
  184. LTLIBRARIES = $(lib_LTLIBRARIES)
  185. libclish_la_DEPENDENCIES = liblub.la libtinyrl.la libtinyxml.la \
  186. libkonf.la
  187. am__dirstamp = $(am__leading_dot)dirstamp
  188. am_libclish_la_OBJECTS = clish/libclish_la-clish_access_callback.lo \
  189. clish/libclish_la-clish_script_callback.lo \
  190. clish/libclish_la-clish_config_callback.lo \
  191. clish/command/libclish_la-command.lo \
  192. clish/command/libclish_la-command_dump.lo \
  193. clish/param/libclish_la-param.lo \
  194. clish/param/libclish_la-param_dump.lo \
  195. clish/pargv/libclish_la-pargv.lo \
  196. clish/pargv/libclish_la-pargv_dump.lo \
  197. clish/ptype/libclish_la-ptype.lo \
  198. clish/ptype/libclish_la-ptype_dump.lo \
  199. clish/shell/libclish_la-shell__get_view.lo \
  200. clish/shell/libclish_la-shell__get_viewid.lo \
  201. clish/shell/libclish_la-shell__get_client_cookie.lo \
  202. clish/shell/libclish_la-shell__get_tinyrl.lo \
  203. clish/shell/libclish_la-shell_command_generator.lo \
  204. clish/shell/libclish_la-shell_delete.lo \
  205. clish/shell/libclish_la-shell_dump.lo \
  206. clish/shell/libclish_la-shell_execute.lo \
  207. clish/shell/libclish_la-shell_find_create_ptype.lo \
  208. clish/shell/libclish_la-shell_find_create_view.lo \
  209. clish/shell/libclish_la-shell_find_view.lo \
  210. clish/shell/libclish_la-shell_help.lo \
  211. clish/shell/libclish_la-shell_insert_ptype.lo \
  212. clish/shell/libclish_la-shell_insert_view.lo \
  213. clish/shell/libclish_la-shell_new.lo \
  214. clish/shell/libclish_la-shell_parse.lo \
  215. clish/shell/libclish_la-shell_pop_file.lo \
  216. clish/shell/libclish_la-shell_push_file.lo \
  217. clish/shell/libclish_la-shell_resolve_command.lo \
  218. clish/shell/libclish_la-shell_resolve_prefix.lo \
  219. clish/shell/libclish_la-shell_set_context.lo \
  220. clish/shell/libclish_la-shell_spawn.lo \
  221. clish/shell/libclish_la-shell_startup.lo \
  222. clish/shell/libclish_la-shell_pwd.lo \
  223. clish/shell/libclish_la-shell_tinyrl.lo \
  224. clish/shell/shell_tinyxml_read.lo \
  225. clish/shell/libclish_la-shell_expand.lo \
  226. clish/variable/libclish_la-variable_expand.lo \
  227. clish/view/libclish_la-view.lo \
  228. clish/view/libclish_la-view_dump.lo \
  229. clish/nspace/libclish_la-nspace.lo \
  230. clish/nspace/libclish_la-nspace_dump.lo
  231. libclish_la_OBJECTS = $(am_libclish_la_OBJECTS)
  232. libkonf_la_DEPENDENCIES = liblub.la
  233. am_libkonf_la_OBJECTS = konf/tree/tree.lo konf/tree/tree_dump.lo \
  234. konf/query/query.lo konf/query/query_dump.lo konf/buf/buf.lo \
  235. konf/net/net.lo
  236. libkonf_la_OBJECTS = $(am_libkonf_la_OBJECTS)
  237. liblub_la_DEPENDENCIES =
  238. am__liblub_la_SOURCES_DIST = lub/argv/argv__get_arg.c \
  239. lub/argv/argv__get_argv.c lub/argv/argv__get_count.c \
  240. lub/argv/argv__get_offset.c lub/argv/argv__get_quoted.c \
  241. lub/argv/argv_new.c lub/argv/argv_nextword.c \
  242. lub/argv/private.h lub/bintree/bintree_dump.c \
  243. lub/bintree/bintree_find.c lub/bintree/bintree_findfirst.c \
  244. lub/bintree/bintree_findlast.c lub/bintree/bintree_findnext.c \
  245. lub/bintree/bintree_findprevious.c lub/bintree/bintree_init.c \
  246. lub/bintree/bintree_insert.c \
  247. lub/bintree/bintree_iterator_init.c \
  248. lub/bintree/bintree_iterator_next.c \
  249. lub/bintree/bintree_iterator_previous.c \
  250. lub/bintree/bintree_node_init.c lub/bintree/bintree_remove.c \
  251. lub/bintree/bintree_splay.c lub/bintree/private.h \
  252. lub/list/list.c lub/blockpool/blockpool_alloc.c \
  253. lub/blockpool/blockpool__get_stats.c \
  254. lub/blockpool/blockpool_free.c lub/blockpool/blockpool_init.c \
  255. lub/blockpool/private.h lub/ctype/ctype_isspace.c \
  256. lub/ctype/ctype_isdigit.c lub/ctype/ctype_toupper.c \
  257. lub/ctype/ctype_tolower.c lub/dblockpool/dblockpool_alloc.c \
  258. lub/dblockpool/dblockpool_fini.c \
  259. lub/dblockpool/dblockpool_free.c \
  260. lub/dblockpool/dblockpool_init.c lub/dblockpool/private.h \
  261. lub/dump/dump.c lub/dump/private.h lub/heap/cache.c \
  262. lub/heap/cache.h lub/heap/cache_bucket.c lub/heap/context.c \
  263. lub/heap/context.h lub/heap/heap__get_max_free.c \
  264. lub/heap/heap__get_stacktrace.c lub/heap/heap__get_stats.c \
  265. lub/heap/heap_add_segment.c lub/heap/heap_align_block.c \
  266. lub/heap/heap_block__get_tail.c lub/heap/heap_block_from_ptr.c \
  267. lub/heap/heap_block_getfirst.c lub/heap/heap_block_getkey.c \
  268. lub/heap/heap_block_getnext.c \
  269. lub/heap/heap_block_getprevious.c lub/heap/heap_block_check.c \
  270. lub/heap/heap_check.c lub/heap/heap_context_delete.c \
  271. lub/heap/heap_context_find_or_create.c lub/heap/heap_create.c \
  272. lub/heap/heap_destroy.c lub/heap/heap_extend_both_ways.c \
  273. lub/heap/heap_extend_downwards.c \
  274. lub/heap/heap_extend_upwards.c \
  275. lub/heap/heap_foreach_free_block.c \
  276. lub/heap/heap_foreach_segment.c \
  277. lub/heap/heap_graft_to_bottom.c lub/heap/heap_graft_to_top.c \
  278. lub/heap/heap_init_free_block.c \
  279. lub/heap/heap_merge_with_next.c \
  280. lub/heap/heap_merge_with_previous.c \
  281. lub/heap/heap_new_alloc_block.c lub/heap/heap_new_free_block.c \
  282. lub/heap/heap_post_realloc.c lub/heap/heap_pre_realloc.c \
  283. lub/heap/heap_raw_realloc.c lub/heap/heap_realloc.c \
  284. lub/heap/heap_scan_stack.c lub/heap/heap_show.c \
  285. lub/heap/heap_slice_from_bottom.c \
  286. lub/heap/heap_slice_from_top.c lub/heap/heap_static_alloc.c \
  287. lub/heap/heap_stop_here.c lub/heap/heap_tainted_memory.c \
  288. lub/heap/node.c lub/heap/node.h lub/heap/private.h \
  289. lub/heap/posix/heap_clean_stacks.c \
  290. lub/heap/posix/heap_leak_mutex.c \
  291. lub/heap/posix/heap_scan_bss.c lub/heap/posix/heap_scan_data.c \
  292. lub/heap/posix/heap_symShow.c lub/heap/posix/sysheap_stubs.c \
  293. lub/partition/partition_check_memory.c \
  294. lub/partition/partition_destroy_local_heap.c \
  295. lub/partition/partition_disable_leak_detection.c \
  296. lub/partition/partition_enable_leak_detection.c \
  297. lub/partition/partition_extend_memory.c \
  298. lub/partition/partition_findcreate_local_heap.c \
  299. lub/partition/partition_fini.c lub/partition/partition_init.c \
  300. lub/partition/partition_realloc.c \
  301. lub/partition/partition_segment_alloc.c \
  302. lub/partition/partition_show.c \
  303. lub/partition/partition_sysalloc.c lub/partition/private.h \
  304. lub/partition/posix/posix_partition.c \
  305. lub/partition/posix/private.h lub/string/string_cat.c \
  306. lub/string/string_catn.c lub/string/string_dup.c \
  307. lub/string/string_free.c lub/string/string_nocasecmp.c \
  308. lub/string/string_nocasestr.c lub/string/string_suffix.c \
  309. lub/string/string_escape.c lub/string/private.h \
  310. lub/test/test.c lub/system/test.c lub/system/system_test.c \
  311. lub/system/private.h
  312. @LUBHEAP_TRUE@am__objects_1 = lub/heap/cache.lo \
  313. @LUBHEAP_TRUE@ lub/heap/cache_bucket.lo lub/heap/context.lo \
  314. @LUBHEAP_TRUE@ lub/heap/heap__get_max_free.lo \
  315. @LUBHEAP_TRUE@ lub/heap/heap__get_stacktrace.lo \
  316. @LUBHEAP_TRUE@ lub/heap/heap__get_stats.lo \
  317. @LUBHEAP_TRUE@ lub/heap/heap_add_segment.lo \
  318. @LUBHEAP_TRUE@ lub/heap/heap_align_block.lo \
  319. @LUBHEAP_TRUE@ lub/heap/heap_block__get_tail.lo \
  320. @LUBHEAP_TRUE@ lub/heap/heap_block_from_ptr.lo \
  321. @LUBHEAP_TRUE@ lub/heap/heap_block_getfirst.lo \
  322. @LUBHEAP_TRUE@ lub/heap/heap_block_getkey.lo \
  323. @LUBHEAP_TRUE@ lub/heap/heap_block_getnext.lo \
  324. @LUBHEAP_TRUE@ lub/heap/heap_block_getprevious.lo \
  325. @LUBHEAP_TRUE@ lub/heap/heap_block_check.lo \
  326. @LUBHEAP_TRUE@ lub/heap/heap_check.lo \
  327. @LUBHEAP_TRUE@ lub/heap/heap_context_delete.lo \
  328. @LUBHEAP_TRUE@ lub/heap/heap_context_find_or_create.lo \
  329. @LUBHEAP_TRUE@ lub/heap/heap_create.lo lub/heap/heap_destroy.lo \
  330. @LUBHEAP_TRUE@ lub/heap/heap_extend_both_ways.lo \
  331. @LUBHEAP_TRUE@ lub/heap/heap_extend_downwards.lo \
  332. @LUBHEAP_TRUE@ lub/heap/heap_extend_upwards.lo \
  333. @LUBHEAP_TRUE@ lub/heap/heap_foreach_free_block.lo \
  334. @LUBHEAP_TRUE@ lub/heap/heap_foreach_segment.lo \
  335. @LUBHEAP_TRUE@ lub/heap/heap_graft_to_bottom.lo \
  336. @LUBHEAP_TRUE@ lub/heap/heap_graft_to_top.lo \
  337. @LUBHEAP_TRUE@ lub/heap/heap_init_free_block.lo \
  338. @LUBHEAP_TRUE@ lub/heap/heap_merge_with_next.lo \
  339. @LUBHEAP_TRUE@ lub/heap/heap_merge_with_previous.lo \
  340. @LUBHEAP_TRUE@ lub/heap/heap_new_alloc_block.lo \
  341. @LUBHEAP_TRUE@ lub/heap/heap_new_free_block.lo \
  342. @LUBHEAP_TRUE@ lub/heap/heap_post_realloc.lo \
  343. @LUBHEAP_TRUE@ lub/heap/heap_pre_realloc.lo \
  344. @LUBHEAP_TRUE@ lub/heap/heap_raw_realloc.lo \
  345. @LUBHEAP_TRUE@ lub/heap/heap_realloc.lo \
  346. @LUBHEAP_TRUE@ lub/heap/heap_scan_stack.lo \
  347. @LUBHEAP_TRUE@ lub/heap/heap_show.lo \
  348. @LUBHEAP_TRUE@ lub/heap/heap_slice_from_bottom.lo \
  349. @LUBHEAP_TRUE@ lub/heap/heap_slice_from_top.lo \
  350. @LUBHEAP_TRUE@ lub/heap/heap_static_alloc.lo \
  351. @LUBHEAP_TRUE@ lub/heap/heap_stop_here.lo \
  352. @LUBHEAP_TRUE@ lub/heap/heap_tainted_memory.lo lub/heap/node.lo \
  353. @LUBHEAP_TRUE@ lub/heap/posix/heap_clean_stacks.lo \
  354. @LUBHEAP_TRUE@ lub/heap/posix/heap_leak_mutex.lo \
  355. @LUBHEAP_TRUE@ lub/heap/posix/heap_scan_bss.lo \
  356. @LUBHEAP_TRUE@ lub/heap/posix/heap_scan_data.lo \
  357. @LUBHEAP_TRUE@ lub/heap/posix/heap_symShow.lo \
  358. @LUBHEAP_TRUE@ lub/heap/posix/sysheap_stubs.lo \
  359. @LUBHEAP_TRUE@ lub/partition/partition_check_memory.lo \
  360. @LUBHEAP_TRUE@ lub/partition/partition_destroy_local_heap.lo \
  361. @LUBHEAP_TRUE@ lub/partition/partition_disable_leak_detection.lo \
  362. @LUBHEAP_TRUE@ lub/partition/partition_enable_leak_detection.lo \
  363. @LUBHEAP_TRUE@ lub/partition/partition_extend_memory.lo \
  364. @LUBHEAP_TRUE@ lub/partition/partition_findcreate_local_heap.lo \
  365. @LUBHEAP_TRUE@ lub/partition/partition_fini.lo \
  366. @LUBHEAP_TRUE@ lub/partition/partition_init.lo \
  367. @LUBHEAP_TRUE@ lub/partition/partition_realloc.lo \
  368. @LUBHEAP_TRUE@ lub/partition/partition_segment_alloc.lo \
  369. @LUBHEAP_TRUE@ lub/partition/partition_show.lo \
  370. @LUBHEAP_TRUE@ lub/partition/partition_sysalloc.lo \
  371. @LUBHEAP_TRUE@ lub/partition/posix/posix_partition.lo
  372. am_liblub_la_OBJECTS = lub/argv/argv__get_arg.lo \
  373. lub/argv/argv__get_argv.lo lub/argv/argv__get_count.lo \
  374. lub/argv/argv__get_offset.lo lub/argv/argv__get_quoted.lo \
  375. lub/argv/argv_new.lo lub/argv/argv_nextword.lo \
  376. lub/bintree/bintree_dump.lo lub/bintree/bintree_find.lo \
  377. lub/bintree/bintree_findfirst.lo \
  378. lub/bintree/bintree_findlast.lo \
  379. lub/bintree/bintree_findnext.lo \
  380. lub/bintree/bintree_findprevious.lo \
  381. lub/bintree/bintree_init.lo lub/bintree/bintree_insert.lo \
  382. lub/bintree/bintree_iterator_init.lo \
  383. lub/bintree/bintree_iterator_next.lo \
  384. lub/bintree/bintree_iterator_previous.lo \
  385. lub/bintree/bintree_node_init.lo lub/bintree/bintree_remove.lo \
  386. lub/bintree/bintree_splay.lo lub/list/list.lo \
  387. lub/blockpool/blockpool_alloc.lo \
  388. lub/blockpool/blockpool__get_stats.lo \
  389. lub/blockpool/blockpool_free.lo \
  390. lub/blockpool/blockpool_init.lo lub/ctype/ctype_isspace.lo \
  391. lub/ctype/ctype_isdigit.lo lub/ctype/ctype_toupper.lo \
  392. lub/ctype/ctype_tolower.lo lub/dblockpool/dblockpool_alloc.lo \
  393. lub/dblockpool/dblockpool_fini.lo \
  394. lub/dblockpool/dblockpool_free.lo \
  395. lub/dblockpool/dblockpool_init.lo lub/dump/dump.lo \
  396. $(am__objects_1) lub/string/string_cat.lo \
  397. lub/string/string_catn.lo lub/string/string_dup.lo \
  398. lub/string/string_free.lo lub/string/string_nocasecmp.lo \
  399. lub/string/string_nocasestr.lo lub/string/string_suffix.lo \
  400. lub/string/string_escape.lo lub/test/test.lo \
  401. lub/system/test.lo lub/system/system_test.lo
  402. liblub_la_OBJECTS = $(am_liblub_la_OBJECTS)
  403. liblubheap_la_LIBADD =
  404. am__liblubheap_la_SOURCES_DIST = lubheap/posix/sysheap.c
  405. @LUBHEAP_TRUE@am_liblubheap_la_OBJECTS = lubheap/posix/sysheap.lo
  406. liblubheap_la_OBJECTS = $(am_liblubheap_la_OBJECTS)
  407. @LUBHEAP_TRUE@am_liblubheap_la_rpath = -rpath $(libdir)
  408. libtinyrl_la_DEPENDENCIES = liblub.la
  409. am_libtinyrl_la_OBJECTS = tinyrl/tinyrl.lo tinyrl/history/history.lo \
  410. tinyrl/history/history_entry.lo tinyrl/vt100/vt100.lo
  411. libtinyrl_la_OBJECTS = $(am_libtinyrl_la_OBJECTS)
  412. libtinyxml_la_LIBADD =
  413. am_libtinyxml_la_OBJECTS = tinyxml/libtinyxml_la-tinyxml.lo \
  414. tinyxml/libtinyxml_la-tinyxmlerror.lo \
  415. tinyxml/libtinyxml_la-tinyxmlparser.lo \
  416. tinyxml/libtinyxml_la-tinystr.lo
  417. libtinyxml_la_OBJECTS = $(am_libtinyxml_la_OBJECTS)
  418. libtinyxml_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
  419. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(libtinyxml_la_CXXFLAGS) \
  420. $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  421. @LUBHEAP_TRUE@am__EXEEXT_1 = test/heap$(EXEEXT) \
  422. @LUBHEAP_TRUE@ test/mallocTest$(EXEEXT) \
  423. @LUBHEAP_TRUE@ test/lubMallocTest$(EXEEXT)
  424. PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
  425. am_bin_clish_OBJECTS = bin/clish.$(OBJEXT)
  426. bin_clish_OBJECTS = $(am_bin_clish_OBJECTS)
  427. bin_clish_DEPENDENCIES = libclish.la libkonf.la libtinyrl.la \
  428. libtinyxml.la liblub.la
  429. am_bin_konf_OBJECTS = bin/konf.$(OBJEXT)
  430. bin_konf_OBJECTS = $(am_bin_konf_OBJECTS)
  431. bin_konf_DEPENDENCIES = libkonf.la liblub.la
  432. am_bin_konfd_OBJECTS = bin/konfd.$(OBJEXT)
  433. bin_konfd_OBJECTS = $(am_bin_konfd_OBJECTS)
  434. bin_konfd_DEPENDENCIES = libkonf.la liblub.la
  435. am_test_bintree_OBJECTS = test/bintree.$(OBJEXT)
  436. test_bintree_OBJECTS = $(am_test_bintree_OBJECTS)
  437. test_bintree_DEPENDENCIES = liblub.la
  438. am__test_heap_SOURCES_DIST = test/heap.c
  439. @LUBHEAP_TRUE@am_test_heap_OBJECTS = test/heap.$(OBJEXT)
  440. test_heap_OBJECTS = $(am_test_heap_OBJECTS)
  441. @LUBHEAP_TRUE@test_heap_DEPENDENCIES = liblub.la
  442. am__test_lubMallocTest_SOURCES_DIST = test/mallocTest.c
  443. @LUBHEAP_TRUE@am_test_lubMallocTest_OBJECTS = \
  444. @LUBHEAP_TRUE@ test/test_lubMallocTest-mallocTest.$(OBJEXT)
  445. test_lubMallocTest_OBJECTS = $(am_test_lubMallocTest_OBJECTS)
  446. @LUBHEAP_TRUE@test_lubMallocTest_DEPENDENCIES = liblubheap.la \
  447. @LUBHEAP_TRUE@ liblub.la
  448. test_lubMallocTest_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
  449. $(LIBTOOLFLAGS) --mode=link $(CCLD) \
  450. $(test_lubMallocTest_CFLAGS) $(CFLAGS) \
  451. $(test_lubMallocTest_LDFLAGS) $(LDFLAGS) -o $@
  452. am__test_mallocTest_SOURCES_DIST = test/mallocTest.c
  453. @LUBHEAP_TRUE@am_test_mallocTest_OBJECTS = \
  454. @LUBHEAP_TRUE@ test/test_mallocTest-mallocTest.$(OBJEXT)
  455. test_mallocTest_OBJECTS = $(am_test_mallocTest_OBJECTS)
  456. test_mallocTest_DEPENDENCIES =
  457. test_mallocTest_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
  458. $(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_mallocTest_CFLAGS) \
  459. $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
  460. am_test_string_OBJECTS = test/string.$(OBJEXT)
  461. test_string_OBJECTS = $(am_test_string_OBJECTS)
  462. test_string_DEPENDENCIES = liblub.la
  463. DEFAULT_INCLUDES =
  464. depcomp = $(SHELL) $(top_srcdir)/aux_scripts/depcomp
  465. am__depfiles_maybe = depfiles
  466. am__mv = mv -f
  467. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  468. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  469. LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  470. --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  471. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  472. CCLD = $(CC)
  473. LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  474. --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
  475. $(LDFLAGS) -o $@
  476. CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  477. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  478. LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  479. --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  480. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  481. CXXLD = $(CXX)
  482. CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  483. --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
  484. $(LDFLAGS) -o $@
  485. SOURCES = $(libclish_la_SOURCES) $(libkonf_la_SOURCES) \
  486. $(liblub_la_SOURCES) $(liblubheap_la_SOURCES) \
  487. $(libtinyrl_la_SOURCES) $(libtinyxml_la_SOURCES) \
  488. $(bin_clish_SOURCES) $(bin_konf_SOURCES) $(bin_konfd_SOURCES) \
  489. $(test_bintree_SOURCES) $(test_heap_SOURCES) \
  490. $(test_lubMallocTest_SOURCES) $(test_mallocTest_SOURCES) \
  491. $(test_string_SOURCES)
  492. DIST_SOURCES = $(libclish_la_SOURCES) $(libkonf_la_SOURCES) \
  493. $(am__liblub_la_SOURCES_DIST) \
  494. $(am__liblubheap_la_SOURCES_DIST) $(libtinyrl_la_SOURCES) \
  495. $(libtinyxml_la_SOURCES) $(bin_clish_SOURCES) \
  496. $(bin_konf_SOURCES) $(bin_konfd_SOURCES) \
  497. $(test_bintree_SOURCES) $(am__test_heap_SOURCES_DIST) \
  498. $(am__test_lubMallocTest_SOURCES_DIST) \
  499. $(am__test_mallocTest_SOURCES_DIST) $(test_string_SOURCES)
  500. HEADERS = $(nobase_include_HEADERS)
  501. ETAGS = etags
  502. CTAGS = ctags
  503. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  504. distdir = $(PACKAGE)-$(VERSION)
  505. top_distdir = $(distdir)
  506. am__remove_distdir = \
  507. { test ! -d "$(distdir)" \
  508. || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
  509. && rm -fr "$(distdir)"; }; }
  510. DIST_ARCHIVES = $(distdir).tar.gz
  511. GZIP_ENV = --best
  512. distuninstallcheck_listfiles = find . -type f -print
  513. distcleancheck_listfiles = find . -type f -print
  514. ACLOCAL = @ACLOCAL@
  515. AMTAR = @AMTAR@
  516. AR = @AR@
  517. AS = @AS@
  518. AUTOCONF = @AUTOCONF@
  519. AUTOHEADER = @AUTOHEADER@
  520. AUTOMAKE = @AUTOMAKE@
  521. AWK = @AWK@
  522. BFD_LIBS = @BFD_LIBS@
  523. CC = @CC@
  524. CCDEPMODE = @CCDEPMODE@
  525. CFLAGS = @CFLAGS@
  526. CPP = @CPP@
  527. CPPFLAGS = @CPPFLAGS@
  528. CXX = @CXX@
  529. CXXCPP = @CXXCPP@
  530. CXXDEPMODE = @CXXDEPMODE@
  531. CXXFLAGS = @CXXFLAGS@
  532. CYGPATH_W = @CYGPATH_W@
  533. DEFS = @DEFS@
  534. DEPDIR = @DEPDIR@
  535. DLLTOOL = @DLLTOOL@
  536. DSYMUTIL = @DSYMUTIL@
  537. DUMPBIN = @DUMPBIN@
  538. ECHO_C = @ECHO_C@
  539. ECHO_N = @ECHO_N@
  540. ECHO_T = @ECHO_T@
  541. EGREP = @EGREP@
  542. EXEEXT = @EXEEXT@
  543. FGREP = @FGREP@
  544. GREP = @GREP@
  545. INSTALL = @INSTALL@
  546. INSTALL_DATA = @INSTALL_DATA@
  547. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  548. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  549. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  550. KONF_CFLAGS = @KONF_CFLAGS@
  551. KONF_LIBS = @KONF_LIBS@
  552. LD = @LD@
  553. LDFLAGS = @LDFLAGS@
  554. LIBOBJS = @LIBOBJS@
  555. LIBS = @LIBS@
  556. LIBTOOL = @LIBTOOL@
  557. LIPO = @LIPO@
  558. LN_S = @LN_S@
  559. LTLIBOBJS = @LTLIBOBJS@
  560. LUBHEAP_CFLAGS = @LUBHEAP_CFLAGS@
  561. LUBHEAP_LIBS = @LUBHEAP_LIBS@
  562. LUB_CFLAGS = @LUB_CFLAGS@
  563. LUB_LIBS = @LUB_LIBS@
  564. MAKEINFO = @MAKEINFO@
  565. MANIFEST_TOOL = @MANIFEST_TOOL@
  566. MKDIR_P = @MKDIR_P@
  567. NM = @NM@
  568. NMEDIT = @NMEDIT@
  569. OBJDUMP = @OBJDUMP@
  570. OBJEXT = @OBJEXT@
  571. OTOOL = @OTOOL@
  572. OTOOL64 = @OTOOL64@
  573. PACKAGE = @PACKAGE@
  574. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  575. PACKAGE_NAME = @PACKAGE_NAME@
  576. PACKAGE_STRING = @PACKAGE_STRING@
  577. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  578. PACKAGE_URL = @PACKAGE_URL@
  579. PACKAGE_VERSION = @PACKAGE_VERSION@
  580. PATH_SEPARATOR = @PATH_SEPARATOR@
  581. PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
  582. PTHREAD_LIBS = @PTHREAD_LIBS@
  583. RANLIB = @RANLIB@
  584. RT_CFLAGS = @RT_CFLAGS@
  585. RT_LIBS = @RT_LIBS@
  586. SED = @SED@
  587. SET_MAKE = @SET_MAKE@
  588. SHELL = @SHELL@
  589. STRIP = @STRIP@
  590. TCL_CFLAGS = @TCL_CFLAGS@
  591. TCL_LIBS = @TCL_LIBS@
  592. TCL_VERSION = @TCL_VERSION@
  593. TINYRL_CFLAGS = @TINYRL_CFLAGS@
  594. TINYRL_LIBS = @TINYRL_LIBS@
  595. TINYXML_CXXFLAGS = @TINYXML_CXXFLAGS@
  596. TINYXML_LIBS = @TINYXML_LIBS@
  597. VERSION = @VERSION@
  598. abs_builddir = @abs_builddir@
  599. abs_srcdir = @abs_srcdir@
  600. abs_top_builddir = @abs_top_builddir@
  601. abs_top_srcdir = @abs_top_srcdir@
  602. ac_ct_AR = @ac_ct_AR@
  603. ac_ct_CC = @ac_ct_CC@
  604. ac_ct_CXX = @ac_ct_CXX@
  605. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  606. am__include = @am__include@
  607. am__leading_dot = @am__leading_dot@
  608. am__quote = @am__quote@
  609. am__tar = @am__tar@
  610. am__untar = @am__untar@
  611. bindir = @bindir@
  612. build = @build@
  613. build_alias = @build_alias@
  614. build_cpu = @build_cpu@
  615. build_os = @build_os@
  616. build_vendor = @build_vendor@
  617. builddir = @builddir@
  618. datadir = @datadir@
  619. datarootdir = @datarootdir@
  620. docdir = @docdir@
  621. dvidir = @dvidir@
  622. exec_prefix = @exec_prefix@
  623. host = @host@
  624. host_alias = @host_alias@
  625. host_cpu = @host_cpu@
  626. host_os = @host_os@
  627. host_vendor = @host_vendor@
  628. htmldir = @htmldir@
  629. includedir = @includedir@
  630. infodir = @infodir@
  631. install_sh = @install_sh@
  632. libdir = @libdir@
  633. libexecdir = @libexecdir@
  634. localedir = @localedir@
  635. localstatedir = @localstatedir@
  636. mandir = @mandir@
  637. mkdir_p = @mkdir_p@
  638. oldincludedir = @oldincludedir@
  639. pdfdir = @pdfdir@
  640. prefix = @prefix@
  641. program_transform_name = @program_transform_name@
  642. psdir = @psdir@
  643. sbindir = @sbindir@
  644. sharedstatedir = @sharedstatedir@
  645. srcdir = @srcdir@
  646. sysconfdir = @sysconfdir@
  647. target_alias = @target_alias@
  648. top_build_prefix = @top_build_prefix@
  649. top_builddir = @top_builddir@
  650. top_srcdir = @top_srcdir@
  651. AUTOMAKE_OPTIONS = foreign nostdinc
  652. AM_CPPFLAGS = -I. -I$(top_srcdir)
  653. AM_LD = $(CXX)
  654. @DEBUG_TRUE@DEBUG_CFLAGS = -DDEBUG
  655. AM_CFLAGS = -pedantic -Wall $(DEBUG_CFLAGS)
  656. AM_CXXFLAGS = -Wall $(DEBUG_CFLAGS)
  657. lib_LTLIBRARIES = libclish.la liblub.la $(am__append_2) libtinyrl.la \
  658. libtinyxml.la libkonf.la
  659. lib_LIBRARIES =
  660. nobase_include_HEADERS = clish/types.h clish/command.h clish/param.h \
  661. clish/pargv.h clish/ptype.h clish/shell.h clish/variable.h \
  662. clish/view.h clish/nspace.h clish/internal.h lub/argv.h \
  663. lub/bintree.h lub/list.h lub/blockpool.h lub/ctype.h \
  664. lub/dblockpool.h lub/c_decl.h lub/dump.h lub/heap.h \
  665. lub/partition.h lub/string.h lub/size_fmt.h lub/test.h \
  666. lub/types.h lub/system.h tinyrl/tinyrl.h tinyrl/history.h \
  667. tinyrl/vt100.h tinyxml/tinystr.h tinyxml/tinyxml.h konf/tree.h \
  668. konf/query.h konf/buf.h konf/net.h
  669. EXTRA_DIST = bin/module.am clish/module.am lub/module.am \
  670. lubheap/module.am tinyrl/module.am tinyxml/module.am \
  671. test/module.am xml-examples/module.am konf/module.am \
  672. doxygen.config clish.xsd LICENCE README CHANGES ISSUES \
  673. clish/command/module.am clish/param/module.am \
  674. clish/pargv/module.am clish/ptype/module.am \
  675. clish/shell/module.am clish/variable/module.am \
  676. clish/view/module.am clish/nspace/module.am clish/README \
  677. lub/argv/module.am lub/bintree/module.am lub/list/module.am \
  678. lub/blockpool/module.am lub/ctype/module.am \
  679. lub/dblockpool/module.am lub/dump/module.am lub/heap/module.am \
  680. lub/string/module.am lub/test/module.am lub/system/module.am \
  681. lub/README lub/heap/posix/module.am lub/heap/vxworks/module.am \
  682. lub/heap/vxworks/heap_clean_stacks.c \
  683. lub/heap/vxworks/heap_leak_mutex.c \
  684. lub/heap/vxworks/heap_scan_bss.c \
  685. lub/heap/vxworks/heap_scan_data.c \
  686. lub/heap/vxworks/heap_symShow.c lub/partition/posix/module.am \
  687. lub/partition/vxworks/module.am \
  688. lub/partition/vxworks/vxworks_partition.c \
  689. lub/partition/vxworks/private.h lubheap/posix/module.am \
  690. lubheap/vxworks/module.am lubheap/README \
  691. lubheap/vxworks/memLib.c lubheap/vxworks/memPartLib.c \
  692. lubheap/vxworks/memShow.c lubheap/vxworks/private.h \
  693. tinyrl/history/module.am tinyrl/vt100/module.am tinyrl/README \
  694. tinyxml/changes.txt tinyxml/readme.txt tinyxml/README \
  695. xml-examples/clish/module.am xml-examples/klish/module.am \
  696. xml-examples/clock.xml xml-examples/debug-commands.xml \
  697. xml-examples/debug-view.xml xml-examples/global-commands.xml \
  698. xml-examples/named-view.xml xml-examples/network-commands.xml \
  699. xml-examples/root-view.xml xml-examples/script-view.xml \
  700. xml-examples/script.txt xml-examples/startup.xml \
  701. xml-examples/types.xml xml-examples/README konf/tree/module.am \
  702. konf/query/module.am konf/buf/module.am konf/net/module.am
  703. bin_clish_SOURCES = bin/clish.cpp
  704. bin_clish_LDADD = \
  705. libclish.la \
  706. libkonf.la \
  707. libtinyrl.la \
  708. libtinyxml.la \
  709. liblub.la \
  710. @PTHREAD_LIBS@ \
  711. @BFD_LIBS@
  712. # @LUBHEAP_LIBS@
  713. bin_konfd_SOURCES = bin/konfd.c
  714. bin_konfd_LDADD = \
  715. libkonf.la \
  716. liblub.la
  717. bin_konf_SOURCES = bin/konf.c
  718. bin_konf_LDADD = \
  719. libkonf.la \
  720. liblub.la
  721. libclish_la_SOURCES = clish/clish_access_callback.c \
  722. clish/clish_script_callback.c clish/clish_config_callback.c \
  723. clish/private.h clish/command/command.c \
  724. clish/command/command_dump.c clish/command/private.h \
  725. clish/param/param.c clish/param/param_dump.c \
  726. clish/param/private.h clish/pargv/pargv.c \
  727. clish/pargv/pargv_dump.c clish/pargv/private.h \
  728. clish/ptype/ptype.c clish/ptype/ptype_dump.c \
  729. clish/ptype/private.h clish/shell/shell__get_view.c \
  730. clish/shell/shell__get_viewid.c \
  731. clish/shell/shell__get_client_cookie.c \
  732. clish/shell/shell__get_tinyrl.c \
  733. clish/shell/shell_command_generator.c \
  734. clish/shell/shell_delete.c clish/shell/shell_dump.c \
  735. clish/shell/shell_execute.c \
  736. clish/shell/shell_find_create_ptype.c \
  737. clish/shell/shell_find_create_view.c \
  738. clish/shell/shell_find_view.c clish/shell/shell_help.c \
  739. clish/shell/shell_insert_ptype.c \
  740. clish/shell/shell_insert_view.c clish/shell/shell_new.c \
  741. clish/shell/shell_parse.c clish/shell/shell_pop_file.c \
  742. clish/shell/shell_push_file.c \
  743. clish/shell/shell_resolve_command.c \
  744. clish/shell/shell_resolve_prefix.c \
  745. clish/shell/shell_set_context.c clish/shell/shell_spawn.c \
  746. clish/shell/shell_startup.c clish/shell/shell_pwd.c \
  747. clish/shell/shell_tinyrl.c clish/shell/shell_tinyxml_read.cpp \
  748. clish/shell/shell_expand.c clish/shell/private.h \
  749. clish/variable/variable_expand.c clish/variable/private.h \
  750. clish/view/view.c clish/view/view_dump.c clish/view/private.h \
  751. clish/nspace/nspace.c clish/nspace/nspace_dump.c \
  752. clish/nspace/private.h
  753. libclish_la_CFLAGS = @LUB_CFLAGS@ @LUBHEAP_CFLAGS@ $(DEBUG_CFLAGS)
  754. libclish_la_LIBADD = \
  755. liblub.la \
  756. libtinyrl.la \
  757. libtinyxml.la \
  758. libkonf.la
  759. liblub_la_SOURCES = lub/argv/argv__get_arg.c lub/argv/argv__get_argv.c \
  760. lub/argv/argv__get_count.c lub/argv/argv__get_offset.c \
  761. lub/argv/argv__get_quoted.c lub/argv/argv_new.c \
  762. lub/argv/argv_nextword.c lub/argv/private.h \
  763. lub/bintree/bintree_dump.c lub/bintree/bintree_find.c \
  764. lub/bintree/bintree_findfirst.c lub/bintree/bintree_findlast.c \
  765. lub/bintree/bintree_findnext.c \
  766. lub/bintree/bintree_findprevious.c lub/bintree/bintree_init.c \
  767. lub/bintree/bintree_insert.c \
  768. lub/bintree/bintree_iterator_init.c \
  769. lub/bintree/bintree_iterator_next.c \
  770. lub/bintree/bintree_iterator_previous.c \
  771. lub/bintree/bintree_node_init.c lub/bintree/bintree_remove.c \
  772. lub/bintree/bintree_splay.c lub/bintree/private.h \
  773. lub/list/list.c lub/blockpool/blockpool_alloc.c \
  774. lub/blockpool/blockpool__get_stats.c \
  775. lub/blockpool/blockpool_free.c lub/blockpool/blockpool_init.c \
  776. lub/blockpool/private.h lub/ctype/ctype_isspace.c \
  777. lub/ctype/ctype_isdigit.c lub/ctype/ctype_toupper.c \
  778. lub/ctype/ctype_tolower.c lub/dblockpool/dblockpool_alloc.c \
  779. lub/dblockpool/dblockpool_fini.c \
  780. lub/dblockpool/dblockpool_free.c \
  781. lub/dblockpool/dblockpool_init.c lub/dblockpool/private.h \
  782. lub/dump/dump.c lub/dump/private.h $(am__append_1) \
  783. lub/string/string_cat.c lub/string/string_catn.c \
  784. lub/string/string_dup.c lub/string/string_free.c \
  785. lub/string/string_nocasecmp.c lub/string/string_nocasestr.c \
  786. lub/string/string_suffix.c lub/string/string_escape.c \
  787. lub/string/private.h lub/test/test.c lub/system/test.c \
  788. lub/system/system_test.c lub/system/private.h
  789. liblub_la_LIBADD = -lpthread
  790. @LUBHEAP_TRUE@liblubheap_la_SOURCES = lubheap/posix/sysheap.c
  791. libtinyrl_la_LIBADD = liblub.la
  792. libtinyrl_la_SOURCES = tinyrl/tinyrl.c tinyrl/private.h \
  793. tinyrl/history/history.c tinyrl/history/history_entry.c \
  794. tinyrl/history/private.h tinyrl/vt100/vt100.c \
  795. tinyrl/vt100/private.h
  796. libtinyxml_la_SOURCES = \
  797. tinyxml/tinyxml.cpp \
  798. tinyxml/tinyxmlerror.cpp \
  799. tinyxml/tinyxmlparser.cpp \
  800. tinyxml/tinystr.cpp
  801. libtinyxml_la_CXXFLAGS = @TINYXML_CXXFLAGS@
  802. test_bintree_SOURCES = \
  803. test/bintree.c \
  804. test/bintree.h
  805. test_bintree_LDADD = \
  806. liblub.la \
  807. @BFD_LIBS@
  808. @LUBHEAP_TRUE@test_heap_SOURCES = \
  809. @LUBHEAP_TRUE@ test/heap.c
  810. @LUBHEAP_TRUE@test_heap_LDADD = \
  811. @LUBHEAP_TRUE@ liblub.la \
  812. @LUBHEAP_TRUE@ @BFD_LIBS@
  813. @LUBHEAP_TRUE@test_mallocTest_CFLAGS = @RT_CFLAGS@
  814. @LUBHEAP_TRUE@test_mallocTest_SOURCES = \
  815. @LUBHEAP_TRUE@ test/mallocTest.c
  816. @LUBHEAP_TRUE@test_mallocTest_LDADD = \
  817. @LUBHEAP_TRUE@ @RT_LIBS@
  818. @LUBHEAP_TRUE@test_lubMallocTest_CFLAGS = @RT_CFLAGS@
  819. @LUBHEAP_TRUE@test_lubMallocTest_LDFLAGS =
  820. @LUBHEAP_TRUE@test_lubMallocTest_SOURCES = \
  821. @LUBHEAP_TRUE@ test/mallocTest.c
  822. @LUBHEAP_TRUE@test_lubMallocTest_LDADD = \
  823. @LUBHEAP_TRUE@ @RT_LIBS@ \
  824. @LUBHEAP_TRUE@ liblubheap.la \
  825. @LUBHEAP_TRUE@ liblub.la \
  826. @LUBHEAP_TRUE@ @BFD_LIBS@
  827. test_string_SOURCES = \
  828. test/string.c
  829. test_string_LDADD = \
  830. liblub.la \
  831. @BFD_LIBS@
  832. libkonf_la_SOURCES = konf/tree/tree.c konf/tree/tree_dump.c \
  833. konf/tree/private.h konf/query/query.c konf/query/query_dump.c \
  834. konf/query/private.h konf/buf/buf.c konf/buf/private.h \
  835. konf/net/net.c konf/net/private.h
  836. libkonf_la_LIBADD = liblub.la
  837. all: config.h
  838. $(MAKE) $(AM_MAKEFLAGS) all-am
  839. .SUFFIXES:
  840. .SUFFIXES: .c .cpp .lo .o .obj
  841. am--refresh:
  842. @:
  843. $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(top_srcdir)/bin/module.am $(top_srcdir)/clish/module.am $(top_srcdir)/clish/command/module.am $(top_srcdir)/clish/param/module.am $(top_srcdir)/clish/pargv/module.am $(top_srcdir)/clish/ptype/module.am $(top_srcdir)/clish/shell/module.am $(top_srcdir)/clish/variable/module.am $(top_srcdir)/clish/view/module.am $(top_srcdir)/clish/nspace/module.am $(top_srcdir)/lub/module.am $(top_srcdir)/lub/argv/module.am $(top_srcdir)/lub/bintree/module.am $(top_srcdir)/lub/list/module.am $(top_srcdir)/lub/blockpool/module.am $(top_srcdir)/lub/ctype/module.am $(top_srcdir)/lub/dblockpool/module.am $(top_srcdir)/lub/dump/module.am $(top_srcdir)/lub/heap/module.am $(top_srcdir)/lub/heap/posix/module.am $(top_srcdir)/lub/heap/vxworks/module.am $(top_srcdir)/lub/partition/module.am $(top_srcdir)/lub/partition/posix/module.am $(top_srcdir)/lub/partition/vxworks/module.am $(top_srcdir)/lub/string/module.am $(top_srcdir)/lub/test/module.am $(top_srcdir)/lub/system/module.am $(top_srcdir)/lubheap/module.am $(top_srcdir)/lubheap/posix/module.am $(top_srcdir)/lubheap/vxworks/module.am $(top_srcdir)/tinyrl/module.am $(top_srcdir)/tinyrl/history/module.am $(top_srcdir)/tinyrl/vt100/module.am $(top_srcdir)/tinyxml/module.am $(top_srcdir)/test/module.am $(top_srcdir)/xml-examples/module.am $(top_srcdir)/xml-examples/clish/module.am $(top_srcdir)/xml-examples/klish/module.am $(top_srcdir)/konf/module.am $(top_srcdir)/konf/tree/module.am $(top_srcdir)/konf/query/module.am $(top_srcdir)/konf/buf/module.am $(top_srcdir)/konf/net/module.am $(am__configure_deps)
  844. @for dep in $?; do \
  845. case '$(am__configure_deps)' in \
  846. *$$dep*) \
  847. echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
  848. $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
  849. && exit 0; \
  850. exit 1;; \
  851. esac; \
  852. done; \
  853. echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
  854. $(am__cd) $(top_srcdir) && \
  855. $(AUTOMAKE) --foreign Makefile
  856. .PRECIOUS: Makefile
  857. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  858. @case '$?' in \
  859. *config.status*) \
  860. echo ' $(SHELL) ./config.status'; \
  861. $(SHELL) ./config.status;; \
  862. *) \
  863. echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
  864. cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
  865. esac;
  866. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  867. $(SHELL) ./config.status --recheck
  868. $(top_srcdir)/configure: $(am__configure_deps)
  869. $(am__cd) $(srcdir) && $(AUTOCONF)
  870. $(ACLOCAL_M4): $(am__aclocal_m4_deps)
  871. $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
  872. $(am__aclocal_m4_deps):
  873. config.h: stamp-h1
  874. @if test ! -f $@; then \
  875. rm -f stamp-h1; \
  876. $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
  877. else :; fi
  878. stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
  879. @rm -f stamp-h1
  880. cd $(top_builddir) && $(SHELL) ./config.status config.h
  881. $(srcdir)/config.h.in: $(am__configure_deps)
  882. ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
  883. rm -f stamp-h1
  884. touch $@
  885. distclean-hdr:
  886. -rm -f config.h stamp-h1
  887. install-libLIBRARIES: $(lib_LIBRARIES)
  888. @$(NORMAL_INSTALL)
  889. test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
  890. @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
  891. list2=; for p in $$list; do \
  892. if test -f $$p; then \
  893. list2="$$list2 $$p"; \
  894. else :; fi; \
  895. done; \
  896. test -z "$$list2" || { \
  897. echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(libdir)'"; \
  898. $(INSTALL_DATA) $$list2 "$(DESTDIR)$(libdir)" || exit $$?; }
  899. @$(POST_INSTALL)
  900. @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
  901. for p in $$list; do \
  902. if test -f $$p; then \
  903. $(am__strip_dir) \
  904. echo " ( cd '$(DESTDIR)$(libdir)' && $(RANLIB) $$f )"; \
  905. ( cd "$(DESTDIR)$(libdir)" && $(RANLIB) $$f ) || exit $$?; \
  906. else :; fi; \
  907. done
  908. uninstall-libLIBRARIES:
  909. @$(NORMAL_UNINSTALL)
  910. @list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
  911. files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
  912. test -n "$$files" || exit 0; \
  913. echo " ( cd '$(DESTDIR)$(libdir)' && rm -f "$$files" )"; \
  914. cd "$(DESTDIR)$(libdir)" && rm -f $$files
  915. clean-libLIBRARIES:
  916. -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
  917. install-libLTLIBRARIES: $(lib_LTLIBRARIES)
  918. @$(NORMAL_INSTALL)
  919. test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
  920. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  921. list2=; for p in $$list; do \
  922. if test -f $$p; then \
  923. list2="$$list2 $$p"; \
  924. else :; fi; \
  925. done; \
  926. test -z "$$list2" || { \
  927. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
  928. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
  929. }
  930. uninstall-libLTLIBRARIES:
  931. @$(NORMAL_UNINSTALL)
  932. @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
  933. for p in $$list; do \
  934. $(am__strip_dir) \
  935. echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
  936. $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
  937. done
  938. clean-libLTLIBRARIES:
  939. -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
  940. @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
  941. dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
  942. test "$$dir" != "$$p" || dir=.; \
  943. echo "rm -f \"$${dir}/so_locations\""; \
  944. rm -f "$${dir}/so_locations"; \
  945. done
  946. clish/$(am__dirstamp):
  947. @$(MKDIR_P) clish
  948. @: > clish/$(am__dirstamp)
  949. clish/$(DEPDIR)/$(am__dirstamp):
  950. @$(MKDIR_P) clish/$(DEPDIR)
  951. @: > clish/$(DEPDIR)/$(am__dirstamp)
  952. clish/libclish_la-clish_access_callback.lo: clish/$(am__dirstamp) \
  953. clish/$(DEPDIR)/$(am__dirstamp)
  954. clish/libclish_la-clish_script_callback.lo: clish/$(am__dirstamp) \
  955. clish/$(DEPDIR)/$(am__dirstamp)
  956. clish/libclish_la-clish_config_callback.lo: clish/$(am__dirstamp) \
  957. clish/$(DEPDIR)/$(am__dirstamp)
  958. clish/command/$(am__dirstamp):
  959. @$(MKDIR_P) clish/command
  960. @: > clish/command/$(am__dirstamp)
  961. clish/command/$(DEPDIR)/$(am__dirstamp):
  962. @$(MKDIR_P) clish/command/$(DEPDIR)
  963. @: > clish/command/$(DEPDIR)/$(am__dirstamp)
  964. clish/command/libclish_la-command.lo: clish/command/$(am__dirstamp) \
  965. clish/command/$(DEPDIR)/$(am__dirstamp)
  966. clish/command/libclish_la-command_dump.lo: \
  967. clish/command/$(am__dirstamp) \
  968. clish/command/$(DEPDIR)/$(am__dirstamp)
  969. clish/param/$(am__dirstamp):
  970. @$(MKDIR_P) clish/param
  971. @: > clish/param/$(am__dirstamp)
  972. clish/param/$(DEPDIR)/$(am__dirstamp):
  973. @$(MKDIR_P) clish/param/$(DEPDIR)
  974. @: > clish/param/$(DEPDIR)/$(am__dirstamp)
  975. clish/param/libclish_la-param.lo: clish/param/$(am__dirstamp) \
  976. clish/param/$(DEPDIR)/$(am__dirstamp)
  977. clish/param/libclish_la-param_dump.lo: clish/param/$(am__dirstamp) \
  978. clish/param/$(DEPDIR)/$(am__dirstamp)
  979. clish/pargv/$(am__dirstamp):
  980. @$(MKDIR_P) clish/pargv
  981. @: > clish/pargv/$(am__dirstamp)
  982. clish/pargv/$(DEPDIR)/$(am__dirstamp):
  983. @$(MKDIR_P) clish/pargv/$(DEPDIR)
  984. @: > clish/pargv/$(DEPDIR)/$(am__dirstamp)
  985. clish/pargv/libclish_la-pargv.lo: clish/pargv/$(am__dirstamp) \
  986. clish/pargv/$(DEPDIR)/$(am__dirstamp)
  987. clish/pargv/libclish_la-pargv_dump.lo: clish/pargv/$(am__dirstamp) \
  988. clish/pargv/$(DEPDIR)/$(am__dirstamp)
  989. clish/ptype/$(am__dirstamp):
  990. @$(MKDIR_P) clish/ptype
  991. @: > clish/ptype/$(am__dirstamp)
  992. clish/ptype/$(DEPDIR)/$(am__dirstamp):
  993. @$(MKDIR_P) clish/ptype/$(DEPDIR)
  994. @: > clish/ptype/$(DEPDIR)/$(am__dirstamp)
  995. clish/ptype/libclish_la-ptype.lo: clish/ptype/$(am__dirstamp) \
  996. clish/ptype/$(DEPDIR)/$(am__dirstamp)
  997. clish/ptype/libclish_la-ptype_dump.lo: clish/ptype/$(am__dirstamp) \
  998. clish/ptype/$(DEPDIR)/$(am__dirstamp)
  999. clish/shell/$(am__dirstamp):
  1000. @$(MKDIR_P) clish/shell
  1001. @: > clish/shell/$(am__dirstamp)
  1002. clish/shell/$(DEPDIR)/$(am__dirstamp):
  1003. @$(MKDIR_P) clish/shell/$(DEPDIR)
  1004. @: > clish/shell/$(DEPDIR)/$(am__dirstamp)
  1005. clish/shell/libclish_la-shell__get_view.lo: \
  1006. clish/shell/$(am__dirstamp) \
  1007. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1008. clish/shell/libclish_la-shell__get_viewid.lo: \
  1009. clish/shell/$(am__dirstamp) \
  1010. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1011. clish/shell/libclish_la-shell__get_client_cookie.lo: \
  1012. clish/shell/$(am__dirstamp) \
  1013. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1014. clish/shell/libclish_la-shell__get_tinyrl.lo: \
  1015. clish/shell/$(am__dirstamp) \
  1016. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1017. clish/shell/libclish_la-shell_command_generator.lo: \
  1018. clish/shell/$(am__dirstamp) \
  1019. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1020. clish/shell/libclish_la-shell_delete.lo: clish/shell/$(am__dirstamp) \
  1021. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1022. clish/shell/libclish_la-shell_dump.lo: clish/shell/$(am__dirstamp) \
  1023. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1024. clish/shell/libclish_la-shell_execute.lo: clish/shell/$(am__dirstamp) \
  1025. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1026. clish/shell/libclish_la-shell_find_create_ptype.lo: \
  1027. clish/shell/$(am__dirstamp) \
  1028. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1029. clish/shell/libclish_la-shell_find_create_view.lo: \
  1030. clish/shell/$(am__dirstamp) \
  1031. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1032. clish/shell/libclish_la-shell_find_view.lo: \
  1033. clish/shell/$(am__dirstamp) \
  1034. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1035. clish/shell/libclish_la-shell_help.lo: clish/shell/$(am__dirstamp) \
  1036. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1037. clish/shell/libclish_la-shell_insert_ptype.lo: \
  1038. clish/shell/$(am__dirstamp) \
  1039. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1040. clish/shell/libclish_la-shell_insert_view.lo: \
  1041. clish/shell/$(am__dirstamp) \
  1042. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1043. clish/shell/libclish_la-shell_new.lo: clish/shell/$(am__dirstamp) \
  1044. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1045. clish/shell/libclish_la-shell_parse.lo: clish/shell/$(am__dirstamp) \
  1046. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1047. clish/shell/libclish_la-shell_pop_file.lo: \
  1048. clish/shell/$(am__dirstamp) \
  1049. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1050. clish/shell/libclish_la-shell_push_file.lo: \
  1051. clish/shell/$(am__dirstamp) \
  1052. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1053. clish/shell/libclish_la-shell_resolve_command.lo: \
  1054. clish/shell/$(am__dirstamp) \
  1055. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1056. clish/shell/libclish_la-shell_resolve_prefix.lo: \
  1057. clish/shell/$(am__dirstamp) \
  1058. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1059. clish/shell/libclish_la-shell_set_context.lo: \
  1060. clish/shell/$(am__dirstamp) \
  1061. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1062. clish/shell/libclish_la-shell_spawn.lo: clish/shell/$(am__dirstamp) \
  1063. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1064. clish/shell/libclish_la-shell_startup.lo: clish/shell/$(am__dirstamp) \
  1065. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1066. clish/shell/libclish_la-shell_pwd.lo: clish/shell/$(am__dirstamp) \
  1067. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1068. clish/shell/libclish_la-shell_tinyrl.lo: clish/shell/$(am__dirstamp) \
  1069. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1070. clish/shell/shell_tinyxml_read.lo: clish/shell/$(am__dirstamp) \
  1071. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1072. clish/shell/libclish_la-shell_expand.lo: clish/shell/$(am__dirstamp) \
  1073. clish/shell/$(DEPDIR)/$(am__dirstamp)
  1074. clish/variable/$(am__dirstamp):
  1075. @$(MKDIR_P) clish/variable
  1076. @: > clish/variable/$(am__dirstamp)
  1077. clish/variable/$(DEPDIR)/$(am__dirstamp):
  1078. @$(MKDIR_P) clish/variable/$(DEPDIR)
  1079. @: > clish/variable/$(DEPDIR)/$(am__dirstamp)
  1080. clish/variable/libclish_la-variable_expand.lo: \
  1081. clish/variable/$(am__dirstamp) \
  1082. clish/variable/$(DEPDIR)/$(am__dirstamp)
  1083. clish/view/$(am__dirstamp):
  1084. @$(MKDIR_P) clish/view
  1085. @: > clish/view/$(am__dirstamp)
  1086. clish/view/$(DEPDIR)/$(am__dirstamp):
  1087. @$(MKDIR_P) clish/view/$(DEPDIR)
  1088. @: > clish/view/$(DEPDIR)/$(am__dirstamp)
  1089. clish/view/libclish_la-view.lo: clish/view/$(am__dirstamp) \
  1090. clish/view/$(DEPDIR)/$(am__dirstamp)
  1091. clish/view/libclish_la-view_dump.lo: clish/view/$(am__dirstamp) \
  1092. clish/view/$(DEPDIR)/$(am__dirstamp)
  1093. clish/nspace/$(am__dirstamp):
  1094. @$(MKDIR_P) clish/nspace
  1095. @: > clish/nspace/$(am__dirstamp)
  1096. clish/nspace/$(DEPDIR)/$(am__dirstamp):
  1097. @$(MKDIR_P) clish/nspace/$(DEPDIR)
  1098. @: > clish/nspace/$(DEPDIR)/$(am__dirstamp)
  1099. clish/nspace/libclish_la-nspace.lo: clish/nspace/$(am__dirstamp) \
  1100. clish/nspace/$(DEPDIR)/$(am__dirstamp)
  1101. clish/nspace/libclish_la-nspace_dump.lo: clish/nspace/$(am__dirstamp) \
  1102. clish/nspace/$(DEPDIR)/$(am__dirstamp)
  1103. libclish.la: $(libclish_la_OBJECTS) $(libclish_la_DEPENDENCIES)
  1104. $(CXXLINK) -rpath $(libdir) $(libclish_la_OBJECTS) $(libclish_la_LIBADD) $(LIBS)
  1105. konf/tree/$(am__dirstamp):
  1106. @$(MKDIR_P) konf/tree
  1107. @: > konf/tree/$(am__dirstamp)
  1108. konf/tree/$(DEPDIR)/$(am__dirstamp):
  1109. @$(MKDIR_P) konf/tree/$(DEPDIR)
  1110. @: > konf/tree/$(DEPDIR)/$(am__dirstamp)
  1111. konf/tree/tree.lo: konf/tree/$(am__dirstamp) \
  1112. konf/tree/$(DEPDIR)/$(am__dirstamp)
  1113. konf/tree/tree_dump.lo: konf/tree/$(am__dirstamp) \
  1114. konf/tree/$(DEPDIR)/$(am__dirstamp)
  1115. konf/query/$(am__dirstamp):
  1116. @$(MKDIR_P) konf/query
  1117. @: > konf/query/$(am__dirstamp)
  1118. konf/query/$(DEPDIR)/$(am__dirstamp):
  1119. @$(MKDIR_P) konf/query/$(DEPDIR)
  1120. @: > konf/query/$(DEPDIR)/$(am__dirstamp)
  1121. konf/query/query.lo: konf/query/$(am__dirstamp) \
  1122. konf/query/$(DEPDIR)/$(am__dirstamp)
  1123. konf/query/query_dump.lo: konf/query/$(am__dirstamp) \
  1124. konf/query/$(DEPDIR)/$(am__dirstamp)
  1125. konf/buf/$(am__dirstamp):
  1126. @$(MKDIR_P) konf/buf
  1127. @: > konf/buf/$(am__dirstamp)
  1128. konf/buf/$(DEPDIR)/$(am__dirstamp):
  1129. @$(MKDIR_P) konf/buf/$(DEPDIR)
  1130. @: > konf/buf/$(DEPDIR)/$(am__dirstamp)
  1131. konf/buf/buf.lo: konf/buf/$(am__dirstamp) \
  1132. konf/buf/$(DEPDIR)/$(am__dirstamp)
  1133. konf/net/$(am__dirstamp):
  1134. @$(MKDIR_P) konf/net
  1135. @: > konf/net/$(am__dirstamp)
  1136. konf/net/$(DEPDIR)/$(am__dirstamp):
  1137. @$(MKDIR_P) konf/net/$(DEPDIR)
  1138. @: > konf/net/$(DEPDIR)/$(am__dirstamp)
  1139. konf/net/net.lo: konf/net/$(am__dirstamp) \
  1140. konf/net/$(DEPDIR)/$(am__dirstamp)
  1141. libkonf.la: $(libkonf_la_OBJECTS) $(libkonf_la_DEPENDENCIES)
  1142. $(LINK) -rpath $(libdir) $(libkonf_la_OBJECTS) $(libkonf_la_LIBADD) $(LIBS)
  1143. lub/argv/$(am__dirstamp):
  1144. @$(MKDIR_P) lub/argv
  1145. @: > lub/argv/$(am__dirstamp)
  1146. lub/argv/$(DEPDIR)/$(am__dirstamp):
  1147. @$(MKDIR_P) lub/argv/$(DEPDIR)
  1148. @: > lub/argv/$(DEPDIR)/$(am__dirstamp)
  1149. lub/argv/argv__get_arg.lo: lub/argv/$(am__dirstamp) \
  1150. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1151. lub/argv/argv__get_argv.lo: lub/argv/$(am__dirstamp) \
  1152. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1153. lub/argv/argv__get_count.lo: lub/argv/$(am__dirstamp) \
  1154. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1155. lub/argv/argv__get_offset.lo: lub/argv/$(am__dirstamp) \
  1156. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1157. lub/argv/argv__get_quoted.lo: lub/argv/$(am__dirstamp) \
  1158. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1159. lub/argv/argv_new.lo: lub/argv/$(am__dirstamp) \
  1160. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1161. lub/argv/argv_nextword.lo: lub/argv/$(am__dirstamp) \
  1162. lub/argv/$(DEPDIR)/$(am__dirstamp)
  1163. lub/bintree/$(am__dirstamp):
  1164. @$(MKDIR_P) lub/bintree
  1165. @: > lub/bintree/$(am__dirstamp)
  1166. lub/bintree/$(DEPDIR)/$(am__dirstamp):
  1167. @$(MKDIR_P) lub/bintree/$(DEPDIR)
  1168. @: > lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1169. lub/bintree/bintree_dump.lo: lub/bintree/$(am__dirstamp) \
  1170. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1171. lub/bintree/bintree_find.lo: lub/bintree/$(am__dirstamp) \
  1172. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1173. lub/bintree/bintree_findfirst.lo: lub/bintree/$(am__dirstamp) \
  1174. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1175. lub/bintree/bintree_findlast.lo: lub/bintree/$(am__dirstamp) \
  1176. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1177. lub/bintree/bintree_findnext.lo: lub/bintree/$(am__dirstamp) \
  1178. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1179. lub/bintree/bintree_findprevious.lo: lub/bintree/$(am__dirstamp) \
  1180. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1181. lub/bintree/bintree_init.lo: lub/bintree/$(am__dirstamp) \
  1182. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1183. lub/bintree/bintree_insert.lo: lub/bintree/$(am__dirstamp) \
  1184. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1185. lub/bintree/bintree_iterator_init.lo: lub/bintree/$(am__dirstamp) \
  1186. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1187. lub/bintree/bintree_iterator_next.lo: lub/bintree/$(am__dirstamp) \
  1188. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1189. lub/bintree/bintree_iterator_previous.lo: lub/bintree/$(am__dirstamp) \
  1190. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1191. lub/bintree/bintree_node_init.lo: lub/bintree/$(am__dirstamp) \
  1192. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1193. lub/bintree/bintree_remove.lo: lub/bintree/$(am__dirstamp) \
  1194. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1195. lub/bintree/bintree_splay.lo: lub/bintree/$(am__dirstamp) \
  1196. lub/bintree/$(DEPDIR)/$(am__dirstamp)
  1197. lub/list/$(am__dirstamp):
  1198. @$(MKDIR_P) lub/list
  1199. @: > lub/list/$(am__dirstamp)
  1200. lub/list/$(DEPDIR)/$(am__dirstamp):
  1201. @$(MKDIR_P) lub/list/$(DEPDIR)
  1202. @: > lub/list/$(DEPDIR)/$(am__dirstamp)
  1203. lub/list/list.lo: lub/list/$(am__dirstamp) \
  1204. lub/list/$(DEPDIR)/$(am__dirstamp)
  1205. lub/blockpool/$(am__dirstamp):
  1206. @$(MKDIR_P) lub/blockpool
  1207. @: > lub/blockpool/$(am__dirstamp)
  1208. lub/blockpool/$(DEPDIR)/$(am__dirstamp):
  1209. @$(MKDIR_P) lub/blockpool/$(DEPDIR)
  1210. @: > lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  1211. lub/blockpool/blockpool_alloc.lo: lub/blockpool/$(am__dirstamp) \
  1212. lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  1213. lub/blockpool/blockpool__get_stats.lo: lub/blockpool/$(am__dirstamp) \
  1214. lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  1215. lub/blockpool/blockpool_free.lo: lub/blockpool/$(am__dirstamp) \
  1216. lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  1217. lub/blockpool/blockpool_init.lo: lub/blockpool/$(am__dirstamp) \
  1218. lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  1219. lub/ctype/$(am__dirstamp):
  1220. @$(MKDIR_P) lub/ctype
  1221. @: > lub/ctype/$(am__dirstamp)
  1222. lub/ctype/$(DEPDIR)/$(am__dirstamp):
  1223. @$(MKDIR_P) lub/ctype/$(DEPDIR)
  1224. @: > lub/ctype/$(DEPDIR)/$(am__dirstamp)
  1225. lub/ctype/ctype_isspace.lo: lub/ctype/$(am__dirstamp) \
  1226. lub/ctype/$(DEPDIR)/$(am__dirstamp)
  1227. lub/ctype/ctype_isdigit.lo: lub/ctype/$(am__dirstamp) \
  1228. lub/ctype/$(DEPDIR)/$(am__dirstamp)
  1229. lub/ctype/ctype_toupper.lo: lub/ctype/$(am__dirstamp) \
  1230. lub/ctype/$(DEPDIR)/$(am__dirstamp)
  1231. lub/ctype/ctype_tolower.lo: lub/ctype/$(am__dirstamp) \
  1232. lub/ctype/$(DEPDIR)/$(am__dirstamp)
  1233. lub/dblockpool/$(am__dirstamp):
  1234. @$(MKDIR_P) lub/dblockpool
  1235. @: > lub/dblockpool/$(am__dirstamp)
  1236. lub/dblockpool/$(DEPDIR)/$(am__dirstamp):
  1237. @$(MKDIR_P) lub/dblockpool/$(DEPDIR)
  1238. @: > lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  1239. lub/dblockpool/dblockpool_alloc.lo: lub/dblockpool/$(am__dirstamp) \
  1240. lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  1241. lub/dblockpool/dblockpool_fini.lo: lub/dblockpool/$(am__dirstamp) \
  1242. lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  1243. lub/dblockpool/dblockpool_free.lo: lub/dblockpool/$(am__dirstamp) \
  1244. lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  1245. lub/dblockpool/dblockpool_init.lo: lub/dblockpool/$(am__dirstamp) \
  1246. lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  1247. lub/dump/$(am__dirstamp):
  1248. @$(MKDIR_P) lub/dump
  1249. @: > lub/dump/$(am__dirstamp)
  1250. lub/dump/$(DEPDIR)/$(am__dirstamp):
  1251. @$(MKDIR_P) lub/dump/$(DEPDIR)
  1252. @: > lub/dump/$(DEPDIR)/$(am__dirstamp)
  1253. lub/dump/dump.lo: lub/dump/$(am__dirstamp) \
  1254. lub/dump/$(DEPDIR)/$(am__dirstamp)
  1255. lub/heap/$(am__dirstamp):
  1256. @$(MKDIR_P) lub/heap
  1257. @: > lub/heap/$(am__dirstamp)
  1258. lub/heap/$(DEPDIR)/$(am__dirstamp):
  1259. @$(MKDIR_P) lub/heap/$(DEPDIR)
  1260. @: > lub/heap/$(DEPDIR)/$(am__dirstamp)
  1261. lub/heap/cache.lo: lub/heap/$(am__dirstamp) \
  1262. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1263. lub/heap/cache_bucket.lo: lub/heap/$(am__dirstamp) \
  1264. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1265. lub/heap/context.lo: lub/heap/$(am__dirstamp) \
  1266. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1267. lub/heap/heap__get_max_free.lo: lub/heap/$(am__dirstamp) \
  1268. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1269. lub/heap/heap__get_stacktrace.lo: lub/heap/$(am__dirstamp) \
  1270. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1271. lub/heap/heap__get_stats.lo: lub/heap/$(am__dirstamp) \
  1272. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1273. lub/heap/heap_add_segment.lo: lub/heap/$(am__dirstamp) \
  1274. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1275. lub/heap/heap_align_block.lo: lub/heap/$(am__dirstamp) \
  1276. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1277. lub/heap/heap_block__get_tail.lo: lub/heap/$(am__dirstamp) \
  1278. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1279. lub/heap/heap_block_from_ptr.lo: lub/heap/$(am__dirstamp) \
  1280. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1281. lub/heap/heap_block_getfirst.lo: lub/heap/$(am__dirstamp) \
  1282. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1283. lub/heap/heap_block_getkey.lo: lub/heap/$(am__dirstamp) \
  1284. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1285. lub/heap/heap_block_getnext.lo: lub/heap/$(am__dirstamp) \
  1286. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1287. lub/heap/heap_block_getprevious.lo: lub/heap/$(am__dirstamp) \
  1288. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1289. lub/heap/heap_block_check.lo: lub/heap/$(am__dirstamp) \
  1290. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1291. lub/heap/heap_check.lo: lub/heap/$(am__dirstamp) \
  1292. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1293. lub/heap/heap_context_delete.lo: lub/heap/$(am__dirstamp) \
  1294. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1295. lub/heap/heap_context_find_or_create.lo: lub/heap/$(am__dirstamp) \
  1296. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1297. lub/heap/heap_create.lo: lub/heap/$(am__dirstamp) \
  1298. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1299. lub/heap/heap_destroy.lo: lub/heap/$(am__dirstamp) \
  1300. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1301. lub/heap/heap_extend_both_ways.lo: lub/heap/$(am__dirstamp) \
  1302. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1303. lub/heap/heap_extend_downwards.lo: lub/heap/$(am__dirstamp) \
  1304. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1305. lub/heap/heap_extend_upwards.lo: lub/heap/$(am__dirstamp) \
  1306. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1307. lub/heap/heap_foreach_free_block.lo: lub/heap/$(am__dirstamp) \
  1308. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1309. lub/heap/heap_foreach_segment.lo: lub/heap/$(am__dirstamp) \
  1310. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1311. lub/heap/heap_graft_to_bottom.lo: lub/heap/$(am__dirstamp) \
  1312. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1313. lub/heap/heap_graft_to_top.lo: lub/heap/$(am__dirstamp) \
  1314. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1315. lub/heap/heap_init_free_block.lo: lub/heap/$(am__dirstamp) \
  1316. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1317. lub/heap/heap_merge_with_next.lo: lub/heap/$(am__dirstamp) \
  1318. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1319. lub/heap/heap_merge_with_previous.lo: lub/heap/$(am__dirstamp) \
  1320. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1321. lub/heap/heap_new_alloc_block.lo: lub/heap/$(am__dirstamp) \
  1322. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1323. lub/heap/heap_new_free_block.lo: lub/heap/$(am__dirstamp) \
  1324. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1325. lub/heap/heap_post_realloc.lo: lub/heap/$(am__dirstamp) \
  1326. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1327. lub/heap/heap_pre_realloc.lo: lub/heap/$(am__dirstamp) \
  1328. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1329. lub/heap/heap_raw_realloc.lo: lub/heap/$(am__dirstamp) \
  1330. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1331. lub/heap/heap_realloc.lo: lub/heap/$(am__dirstamp) \
  1332. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1333. lub/heap/heap_scan_stack.lo: lub/heap/$(am__dirstamp) \
  1334. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1335. lub/heap/heap_show.lo: lub/heap/$(am__dirstamp) \
  1336. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1337. lub/heap/heap_slice_from_bottom.lo: lub/heap/$(am__dirstamp) \
  1338. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1339. lub/heap/heap_slice_from_top.lo: lub/heap/$(am__dirstamp) \
  1340. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1341. lub/heap/heap_static_alloc.lo: lub/heap/$(am__dirstamp) \
  1342. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1343. lub/heap/heap_stop_here.lo: lub/heap/$(am__dirstamp) \
  1344. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1345. lub/heap/heap_tainted_memory.lo: lub/heap/$(am__dirstamp) \
  1346. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1347. lub/heap/node.lo: lub/heap/$(am__dirstamp) \
  1348. lub/heap/$(DEPDIR)/$(am__dirstamp)
  1349. lub/heap/posix/$(am__dirstamp):
  1350. @$(MKDIR_P) lub/heap/posix
  1351. @: > lub/heap/posix/$(am__dirstamp)
  1352. lub/heap/posix/$(DEPDIR)/$(am__dirstamp):
  1353. @$(MKDIR_P) lub/heap/posix/$(DEPDIR)
  1354. @: > lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1355. lub/heap/posix/heap_clean_stacks.lo: lub/heap/posix/$(am__dirstamp) \
  1356. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1357. lub/heap/posix/heap_leak_mutex.lo: lub/heap/posix/$(am__dirstamp) \
  1358. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1359. lub/heap/posix/heap_scan_bss.lo: lub/heap/posix/$(am__dirstamp) \
  1360. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1361. lub/heap/posix/heap_scan_data.lo: lub/heap/posix/$(am__dirstamp) \
  1362. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1363. lub/heap/posix/heap_symShow.lo: lub/heap/posix/$(am__dirstamp) \
  1364. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1365. lub/heap/posix/sysheap_stubs.lo: lub/heap/posix/$(am__dirstamp) \
  1366. lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  1367. lub/partition/$(am__dirstamp):
  1368. @$(MKDIR_P) lub/partition
  1369. @: > lub/partition/$(am__dirstamp)
  1370. lub/partition/$(DEPDIR)/$(am__dirstamp):
  1371. @$(MKDIR_P) lub/partition/$(DEPDIR)
  1372. @: > lub/partition/$(DEPDIR)/$(am__dirstamp)
  1373. lub/partition/partition_check_memory.lo: \
  1374. lub/partition/$(am__dirstamp) \
  1375. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1376. lub/partition/partition_destroy_local_heap.lo: \
  1377. lub/partition/$(am__dirstamp) \
  1378. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1379. lub/partition/partition_disable_leak_detection.lo: \
  1380. lub/partition/$(am__dirstamp) \
  1381. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1382. lub/partition/partition_enable_leak_detection.lo: \
  1383. lub/partition/$(am__dirstamp) \
  1384. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1385. lub/partition/partition_extend_memory.lo: \
  1386. lub/partition/$(am__dirstamp) \
  1387. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1388. lub/partition/partition_findcreate_local_heap.lo: \
  1389. lub/partition/$(am__dirstamp) \
  1390. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1391. lub/partition/partition_fini.lo: lub/partition/$(am__dirstamp) \
  1392. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1393. lub/partition/partition_init.lo: lub/partition/$(am__dirstamp) \
  1394. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1395. lub/partition/partition_realloc.lo: lub/partition/$(am__dirstamp) \
  1396. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1397. lub/partition/partition_segment_alloc.lo: \
  1398. lub/partition/$(am__dirstamp) \
  1399. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1400. lub/partition/partition_show.lo: lub/partition/$(am__dirstamp) \
  1401. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1402. lub/partition/partition_sysalloc.lo: lub/partition/$(am__dirstamp) \
  1403. lub/partition/$(DEPDIR)/$(am__dirstamp)
  1404. lub/partition/posix/$(am__dirstamp):
  1405. @$(MKDIR_P) lub/partition/posix
  1406. @: > lub/partition/posix/$(am__dirstamp)
  1407. lub/partition/posix/$(DEPDIR)/$(am__dirstamp):
  1408. @$(MKDIR_P) lub/partition/posix/$(DEPDIR)
  1409. @: > lub/partition/posix/$(DEPDIR)/$(am__dirstamp)
  1410. lub/partition/posix/posix_partition.lo: \
  1411. lub/partition/posix/$(am__dirstamp) \
  1412. lub/partition/posix/$(DEPDIR)/$(am__dirstamp)
  1413. lub/string/$(am__dirstamp):
  1414. @$(MKDIR_P) lub/string
  1415. @: > lub/string/$(am__dirstamp)
  1416. lub/string/$(DEPDIR)/$(am__dirstamp):
  1417. @$(MKDIR_P) lub/string/$(DEPDIR)
  1418. @: > lub/string/$(DEPDIR)/$(am__dirstamp)
  1419. lub/string/string_cat.lo: lub/string/$(am__dirstamp) \
  1420. lub/string/$(DEPDIR)/$(am__dirstamp)
  1421. lub/string/string_catn.lo: lub/string/$(am__dirstamp) \
  1422. lub/string/$(DEPDIR)/$(am__dirstamp)
  1423. lub/string/string_dup.lo: lub/string/$(am__dirstamp) \
  1424. lub/string/$(DEPDIR)/$(am__dirstamp)
  1425. lub/string/string_free.lo: lub/string/$(am__dirstamp) \
  1426. lub/string/$(DEPDIR)/$(am__dirstamp)
  1427. lub/string/string_nocasecmp.lo: lub/string/$(am__dirstamp) \
  1428. lub/string/$(DEPDIR)/$(am__dirstamp)
  1429. lub/string/string_nocasestr.lo: lub/string/$(am__dirstamp) \
  1430. lub/string/$(DEPDIR)/$(am__dirstamp)
  1431. lub/string/string_suffix.lo: lub/string/$(am__dirstamp) \
  1432. lub/string/$(DEPDIR)/$(am__dirstamp)
  1433. lub/string/string_escape.lo: lub/string/$(am__dirstamp) \
  1434. lub/string/$(DEPDIR)/$(am__dirstamp)
  1435. lub/test/$(am__dirstamp):
  1436. @$(MKDIR_P) lub/test
  1437. @: > lub/test/$(am__dirstamp)
  1438. lub/test/$(DEPDIR)/$(am__dirstamp):
  1439. @$(MKDIR_P) lub/test/$(DEPDIR)
  1440. @: > lub/test/$(DEPDIR)/$(am__dirstamp)
  1441. lub/test/test.lo: lub/test/$(am__dirstamp) \
  1442. lub/test/$(DEPDIR)/$(am__dirstamp)
  1443. lub/system/$(am__dirstamp):
  1444. @$(MKDIR_P) lub/system
  1445. @: > lub/system/$(am__dirstamp)
  1446. lub/system/$(DEPDIR)/$(am__dirstamp):
  1447. @$(MKDIR_P) lub/system/$(DEPDIR)
  1448. @: > lub/system/$(DEPDIR)/$(am__dirstamp)
  1449. lub/system/test.lo: lub/system/$(am__dirstamp) \
  1450. lub/system/$(DEPDIR)/$(am__dirstamp)
  1451. lub/system/system_test.lo: lub/system/$(am__dirstamp) \
  1452. lub/system/$(DEPDIR)/$(am__dirstamp)
  1453. liblub.la: $(liblub_la_OBJECTS) $(liblub_la_DEPENDENCIES)
  1454. $(LINK) -rpath $(libdir) $(liblub_la_OBJECTS) $(liblub_la_LIBADD) $(LIBS)
  1455. lubheap/posix/$(am__dirstamp):
  1456. @$(MKDIR_P) lubheap/posix
  1457. @: > lubheap/posix/$(am__dirstamp)
  1458. lubheap/posix/$(DEPDIR)/$(am__dirstamp):
  1459. @$(MKDIR_P) lubheap/posix/$(DEPDIR)
  1460. @: > lubheap/posix/$(DEPDIR)/$(am__dirstamp)
  1461. lubheap/posix/sysheap.lo: lubheap/posix/$(am__dirstamp) \
  1462. lubheap/posix/$(DEPDIR)/$(am__dirstamp)
  1463. liblubheap.la: $(liblubheap_la_OBJECTS) $(liblubheap_la_DEPENDENCIES)
  1464. $(LINK) $(am_liblubheap_la_rpath) $(liblubheap_la_OBJECTS) $(liblubheap_la_LIBADD) $(LIBS)
  1465. tinyrl/$(am__dirstamp):
  1466. @$(MKDIR_P) tinyrl
  1467. @: > tinyrl/$(am__dirstamp)
  1468. tinyrl/$(DEPDIR)/$(am__dirstamp):
  1469. @$(MKDIR_P) tinyrl/$(DEPDIR)
  1470. @: > tinyrl/$(DEPDIR)/$(am__dirstamp)
  1471. tinyrl/tinyrl.lo: tinyrl/$(am__dirstamp) \
  1472. tinyrl/$(DEPDIR)/$(am__dirstamp)
  1473. tinyrl/history/$(am__dirstamp):
  1474. @$(MKDIR_P) tinyrl/history
  1475. @: > tinyrl/history/$(am__dirstamp)
  1476. tinyrl/history/$(DEPDIR)/$(am__dirstamp):
  1477. @$(MKDIR_P) tinyrl/history/$(DEPDIR)
  1478. @: > tinyrl/history/$(DEPDIR)/$(am__dirstamp)
  1479. tinyrl/history/history.lo: tinyrl/history/$(am__dirstamp) \
  1480. tinyrl/history/$(DEPDIR)/$(am__dirstamp)
  1481. tinyrl/history/history_entry.lo: tinyrl/history/$(am__dirstamp) \
  1482. tinyrl/history/$(DEPDIR)/$(am__dirstamp)
  1483. tinyrl/vt100/$(am__dirstamp):
  1484. @$(MKDIR_P) tinyrl/vt100
  1485. @: > tinyrl/vt100/$(am__dirstamp)
  1486. tinyrl/vt100/$(DEPDIR)/$(am__dirstamp):
  1487. @$(MKDIR_P) tinyrl/vt100/$(DEPDIR)
  1488. @: > tinyrl/vt100/$(DEPDIR)/$(am__dirstamp)
  1489. tinyrl/vt100/vt100.lo: tinyrl/vt100/$(am__dirstamp) \
  1490. tinyrl/vt100/$(DEPDIR)/$(am__dirstamp)
  1491. libtinyrl.la: $(libtinyrl_la_OBJECTS) $(libtinyrl_la_DEPENDENCIES)
  1492. $(LINK) -rpath $(libdir) $(libtinyrl_la_OBJECTS) $(libtinyrl_la_LIBADD) $(LIBS)
  1493. tinyxml/$(am__dirstamp):
  1494. @$(MKDIR_P) tinyxml
  1495. @: > tinyxml/$(am__dirstamp)
  1496. tinyxml/$(DEPDIR)/$(am__dirstamp):
  1497. @$(MKDIR_P) tinyxml/$(DEPDIR)
  1498. @: > tinyxml/$(DEPDIR)/$(am__dirstamp)
  1499. tinyxml/libtinyxml_la-tinyxml.lo: tinyxml/$(am__dirstamp) \
  1500. tinyxml/$(DEPDIR)/$(am__dirstamp)
  1501. tinyxml/libtinyxml_la-tinyxmlerror.lo: tinyxml/$(am__dirstamp) \
  1502. tinyxml/$(DEPDIR)/$(am__dirstamp)
  1503. tinyxml/libtinyxml_la-tinyxmlparser.lo: tinyxml/$(am__dirstamp) \
  1504. tinyxml/$(DEPDIR)/$(am__dirstamp)
  1505. tinyxml/libtinyxml_la-tinystr.lo: tinyxml/$(am__dirstamp) \
  1506. tinyxml/$(DEPDIR)/$(am__dirstamp)
  1507. libtinyxml.la: $(libtinyxml_la_OBJECTS) $(libtinyxml_la_DEPENDENCIES)
  1508. $(libtinyxml_la_LINK) -rpath $(libdir) $(libtinyxml_la_OBJECTS) $(libtinyxml_la_LIBADD) $(LIBS)
  1509. install-binPROGRAMS: $(bin_PROGRAMS)
  1510. @$(NORMAL_INSTALL)
  1511. test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
  1512. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  1513. for p in $$list; do echo "$$p $$p"; done | \
  1514. sed 's/$(EXEEXT)$$//' | \
  1515. while read p p1; do if test -f $$p || test -f $$p1; \
  1516. then echo "$$p"; echo "$$p"; else :; fi; \
  1517. done | \
  1518. sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
  1519. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  1520. sed 'N;N;N;s,\n, ,g' | \
  1521. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  1522. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  1523. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  1524. else { print "f", $$3 "/" $$4, $$1; } } \
  1525. END { for (d in files) print "f", d, files[d] }' | \
  1526. while read type dir files; do \
  1527. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  1528. test -z "$$files" || { \
  1529. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  1530. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  1531. } \
  1532. ; done
  1533. uninstall-binPROGRAMS:
  1534. @$(NORMAL_UNINSTALL)
  1535. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  1536. files=`for p in $$list; do echo "$$p"; done | \
  1537. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  1538. -e 's/$$/$(EXEEXT)/' `; \
  1539. test -n "$$list" || exit 0; \
  1540. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  1541. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  1542. clean-binPROGRAMS:
  1543. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  1544. echo " rm -f" $$list; \
  1545. rm -f $$list || exit $$?; \
  1546. test -n "$(EXEEXT)" || exit 0; \
  1547. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  1548. echo " rm -f" $$list; \
  1549. rm -f $$list
  1550. clean-noinstPROGRAMS:
  1551. @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
  1552. echo " rm -f" $$list; \
  1553. rm -f $$list || exit $$?; \
  1554. test -n "$(EXEEXT)" || exit 0; \
  1555. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  1556. echo " rm -f" $$list; \
  1557. rm -f $$list
  1558. bin/$(am__dirstamp):
  1559. @$(MKDIR_P) bin
  1560. @: > bin/$(am__dirstamp)
  1561. bin/$(DEPDIR)/$(am__dirstamp):
  1562. @$(MKDIR_P) bin/$(DEPDIR)
  1563. @: > bin/$(DEPDIR)/$(am__dirstamp)
  1564. bin/clish.$(OBJEXT): bin/$(am__dirstamp) bin/$(DEPDIR)/$(am__dirstamp)
  1565. bin/clish$(EXEEXT): $(bin_clish_OBJECTS) $(bin_clish_DEPENDENCIES) bin/$(am__dirstamp)
  1566. @rm -f bin/clish$(EXEEXT)
  1567. $(CXXLINK) $(bin_clish_OBJECTS) $(bin_clish_LDADD) $(LIBS)
  1568. bin/konf.$(OBJEXT): bin/$(am__dirstamp) bin/$(DEPDIR)/$(am__dirstamp)
  1569. bin/konf$(EXEEXT): $(bin_konf_OBJECTS) $(bin_konf_DEPENDENCIES) bin/$(am__dirstamp)
  1570. @rm -f bin/konf$(EXEEXT)
  1571. $(LINK) $(bin_konf_OBJECTS) $(bin_konf_LDADD) $(LIBS)
  1572. bin/konfd.$(OBJEXT): bin/$(am__dirstamp) bin/$(DEPDIR)/$(am__dirstamp)
  1573. bin/konfd$(EXEEXT): $(bin_konfd_OBJECTS) $(bin_konfd_DEPENDENCIES) bin/$(am__dirstamp)
  1574. @rm -f bin/konfd$(EXEEXT)
  1575. $(LINK) $(bin_konfd_OBJECTS) $(bin_konfd_LDADD) $(LIBS)
  1576. test/$(am__dirstamp):
  1577. @$(MKDIR_P) test
  1578. @: > test/$(am__dirstamp)
  1579. test/$(DEPDIR)/$(am__dirstamp):
  1580. @$(MKDIR_P) test/$(DEPDIR)
  1581. @: > test/$(DEPDIR)/$(am__dirstamp)
  1582. test/bintree.$(OBJEXT): test/$(am__dirstamp) \
  1583. test/$(DEPDIR)/$(am__dirstamp)
  1584. test/bintree$(EXEEXT): $(test_bintree_OBJECTS) $(test_bintree_DEPENDENCIES) test/$(am__dirstamp)
  1585. @rm -f test/bintree$(EXEEXT)
  1586. $(LINK) $(test_bintree_OBJECTS) $(test_bintree_LDADD) $(LIBS)
  1587. test/heap.$(OBJEXT): test/$(am__dirstamp) \
  1588. test/$(DEPDIR)/$(am__dirstamp)
  1589. test/heap$(EXEEXT): $(test_heap_OBJECTS) $(test_heap_DEPENDENCIES) test/$(am__dirstamp)
  1590. @rm -f test/heap$(EXEEXT)
  1591. $(LINK) $(test_heap_OBJECTS) $(test_heap_LDADD) $(LIBS)
  1592. test/test_lubMallocTest-mallocTest.$(OBJEXT): test/$(am__dirstamp) \
  1593. test/$(DEPDIR)/$(am__dirstamp)
  1594. test/lubMallocTest$(EXEEXT): $(test_lubMallocTest_OBJECTS) $(test_lubMallocTest_DEPENDENCIES) test/$(am__dirstamp)
  1595. @rm -f test/lubMallocTest$(EXEEXT)
  1596. $(test_lubMallocTest_LINK) $(test_lubMallocTest_OBJECTS) $(test_lubMallocTest_LDADD) $(LIBS)
  1597. test/test_mallocTest-mallocTest.$(OBJEXT): test/$(am__dirstamp) \
  1598. test/$(DEPDIR)/$(am__dirstamp)
  1599. test/mallocTest$(EXEEXT): $(test_mallocTest_OBJECTS) $(test_mallocTest_DEPENDENCIES) test/$(am__dirstamp)
  1600. @rm -f test/mallocTest$(EXEEXT)
  1601. $(test_mallocTest_LINK) $(test_mallocTest_OBJECTS) $(test_mallocTest_LDADD) $(LIBS)
  1602. test/string.$(OBJEXT): test/$(am__dirstamp) \
  1603. test/$(DEPDIR)/$(am__dirstamp)
  1604. test/string$(EXEEXT): $(test_string_OBJECTS) $(test_string_DEPENDENCIES) test/$(am__dirstamp)
  1605. @rm -f test/string$(EXEEXT)
  1606. $(LINK) $(test_string_OBJECTS) $(test_string_LDADD) $(LIBS)
  1607. mostlyclean-compile:
  1608. -rm -f *.$(OBJEXT)
  1609. -rm -f bin/clish.$(OBJEXT)
  1610. -rm -f bin/konf.$(OBJEXT)
  1611. -rm -f bin/konfd.$(OBJEXT)
  1612. -rm -f clish/command/libclish_la-command.$(OBJEXT)
  1613. -rm -f clish/command/libclish_la-command.lo
  1614. -rm -f clish/command/libclish_la-command_dump.$(OBJEXT)
  1615. -rm -f clish/command/libclish_la-command_dump.lo
  1616. -rm -f clish/libclish_la-clish_access_callback.$(OBJEXT)
  1617. -rm -f clish/libclish_la-clish_access_callback.lo
  1618. -rm -f clish/libclish_la-clish_config_callback.$(OBJEXT)
  1619. -rm -f clish/libclish_la-clish_config_callback.lo
  1620. -rm -f clish/libclish_la-clish_script_callback.$(OBJEXT)
  1621. -rm -f clish/libclish_la-clish_script_callback.lo
  1622. -rm -f clish/nspace/libclish_la-nspace.$(OBJEXT)
  1623. -rm -f clish/nspace/libclish_la-nspace.lo
  1624. -rm -f clish/nspace/libclish_la-nspace_dump.$(OBJEXT)
  1625. -rm -f clish/nspace/libclish_la-nspace_dump.lo
  1626. -rm -f clish/param/libclish_la-param.$(OBJEXT)
  1627. -rm -f clish/param/libclish_la-param.lo
  1628. -rm -f clish/param/libclish_la-param_dump.$(OBJEXT)
  1629. -rm -f clish/param/libclish_la-param_dump.lo
  1630. -rm -f clish/pargv/libclish_la-pargv.$(OBJEXT)
  1631. -rm -f clish/pargv/libclish_la-pargv.lo
  1632. -rm -f clish/pargv/libclish_la-pargv_dump.$(OBJEXT)
  1633. -rm -f clish/pargv/libclish_la-pargv_dump.lo
  1634. -rm -f clish/ptype/libclish_la-ptype.$(OBJEXT)
  1635. -rm -f clish/ptype/libclish_la-ptype.lo
  1636. -rm -f clish/ptype/libclish_la-ptype_dump.$(OBJEXT)
  1637. -rm -f clish/ptype/libclish_la-ptype_dump.lo
  1638. -rm -f clish/shell/libclish_la-shell__get_client_cookie.$(OBJEXT)
  1639. -rm -f clish/shell/libclish_la-shell__get_client_cookie.lo
  1640. -rm -f clish/shell/libclish_la-shell__get_tinyrl.$(OBJEXT)
  1641. -rm -f clish/shell/libclish_la-shell__get_tinyrl.lo
  1642. -rm -f clish/shell/libclish_la-shell__get_view.$(OBJEXT)
  1643. -rm -f clish/shell/libclish_la-shell__get_view.lo
  1644. -rm -f clish/shell/libclish_la-shell__get_viewid.$(OBJEXT)
  1645. -rm -f clish/shell/libclish_la-shell__get_viewid.lo
  1646. -rm -f clish/shell/libclish_la-shell_command_generator.$(OBJEXT)
  1647. -rm -f clish/shell/libclish_la-shell_command_generator.lo
  1648. -rm -f clish/shell/libclish_la-shell_delete.$(OBJEXT)
  1649. -rm -f clish/shell/libclish_la-shell_delete.lo
  1650. -rm -f clish/shell/libclish_la-shell_dump.$(OBJEXT)
  1651. -rm -f clish/shell/libclish_la-shell_dump.lo
  1652. -rm -f clish/shell/libclish_la-shell_execute.$(OBJEXT)
  1653. -rm -f clish/shell/libclish_la-shell_execute.lo
  1654. -rm -f clish/shell/libclish_la-shell_expand.$(OBJEXT)
  1655. -rm -f clish/shell/libclish_la-shell_expand.lo
  1656. -rm -f clish/shell/libclish_la-shell_find_create_ptype.$(OBJEXT)
  1657. -rm -f clish/shell/libclish_la-shell_find_create_ptype.lo
  1658. -rm -f clish/shell/libclish_la-shell_find_create_view.$(OBJEXT)
  1659. -rm -f clish/shell/libclish_la-shell_find_create_view.lo
  1660. -rm -f clish/shell/libclish_la-shell_find_view.$(OBJEXT)
  1661. -rm -f clish/shell/libclish_la-shell_find_view.lo
  1662. -rm -f clish/shell/libclish_la-shell_help.$(OBJEXT)
  1663. -rm -f clish/shell/libclish_la-shell_help.lo
  1664. -rm -f clish/shell/libclish_la-shell_insert_ptype.$(OBJEXT)
  1665. -rm -f clish/shell/libclish_la-shell_insert_ptype.lo
  1666. -rm -f clish/shell/libclish_la-shell_insert_view.$(OBJEXT)
  1667. -rm -f clish/shell/libclish_la-shell_insert_view.lo
  1668. -rm -f clish/shell/libclish_la-shell_new.$(OBJEXT)
  1669. -rm -f clish/shell/libclish_la-shell_new.lo
  1670. -rm -f clish/shell/libclish_la-shell_parse.$(OBJEXT)
  1671. -rm -f clish/shell/libclish_la-shell_parse.lo
  1672. -rm -f clish/shell/libclish_la-shell_pop_file.$(OBJEXT)
  1673. -rm -f clish/shell/libclish_la-shell_pop_file.lo
  1674. -rm -f clish/shell/libclish_la-shell_push_file.$(OBJEXT)
  1675. -rm -f clish/shell/libclish_la-shell_push_file.lo
  1676. -rm -f clish/shell/libclish_la-shell_pwd.$(OBJEXT)
  1677. -rm -f clish/shell/libclish_la-shell_pwd.lo
  1678. -rm -f clish/shell/libclish_la-shell_resolve_command.$(OBJEXT)
  1679. -rm -f clish/shell/libclish_la-shell_resolve_command.lo
  1680. -rm -f clish/shell/libclish_la-shell_resolve_prefix.$(OBJEXT)
  1681. -rm -f clish/shell/libclish_la-shell_resolve_prefix.lo
  1682. -rm -f clish/shell/libclish_la-shell_set_context.$(OBJEXT)
  1683. -rm -f clish/shell/libclish_la-shell_set_context.lo
  1684. -rm -f clish/shell/libclish_la-shell_spawn.$(OBJEXT)
  1685. -rm -f clish/shell/libclish_la-shell_spawn.lo
  1686. -rm -f clish/shell/libclish_la-shell_startup.$(OBJEXT)
  1687. -rm -f clish/shell/libclish_la-shell_startup.lo
  1688. -rm -f clish/shell/libclish_la-shell_tinyrl.$(OBJEXT)
  1689. -rm -f clish/shell/libclish_la-shell_tinyrl.lo
  1690. -rm -f clish/shell/shell_tinyxml_read.$(OBJEXT)
  1691. -rm -f clish/shell/shell_tinyxml_read.lo
  1692. -rm -f clish/variable/libclish_la-variable_expand.$(OBJEXT)
  1693. -rm -f clish/variable/libclish_la-variable_expand.lo
  1694. -rm -f clish/view/libclish_la-view.$(OBJEXT)
  1695. -rm -f clish/view/libclish_la-view.lo
  1696. -rm -f clish/view/libclish_la-view_dump.$(OBJEXT)
  1697. -rm -f clish/view/libclish_la-view_dump.lo
  1698. -rm -f konf/buf/buf.$(OBJEXT)
  1699. -rm -f konf/buf/buf.lo
  1700. -rm -f konf/net/net.$(OBJEXT)
  1701. -rm -f konf/net/net.lo
  1702. -rm -f konf/query/query.$(OBJEXT)
  1703. -rm -f konf/query/query.lo
  1704. -rm -f konf/query/query_dump.$(OBJEXT)
  1705. -rm -f konf/query/query_dump.lo
  1706. -rm -f konf/tree/tree.$(OBJEXT)
  1707. -rm -f konf/tree/tree.lo
  1708. -rm -f konf/tree/tree_dump.$(OBJEXT)
  1709. -rm -f konf/tree/tree_dump.lo
  1710. -rm -f lub/argv/argv__get_arg.$(OBJEXT)
  1711. -rm -f lub/argv/argv__get_arg.lo
  1712. -rm -f lub/argv/argv__get_argv.$(OBJEXT)
  1713. -rm -f lub/argv/argv__get_argv.lo
  1714. -rm -f lub/argv/argv__get_count.$(OBJEXT)
  1715. -rm -f lub/argv/argv__get_count.lo
  1716. -rm -f lub/argv/argv__get_offset.$(OBJEXT)
  1717. -rm -f lub/argv/argv__get_offset.lo
  1718. -rm -f lub/argv/argv__get_quoted.$(OBJEXT)
  1719. -rm -f lub/argv/argv__get_quoted.lo
  1720. -rm -f lub/argv/argv_new.$(OBJEXT)
  1721. -rm -f lub/argv/argv_new.lo
  1722. -rm -f lub/argv/argv_nextword.$(OBJEXT)
  1723. -rm -f lub/argv/argv_nextword.lo
  1724. -rm -f lub/bintree/bintree_dump.$(OBJEXT)
  1725. -rm -f lub/bintree/bintree_dump.lo
  1726. -rm -f lub/bintree/bintree_find.$(OBJEXT)
  1727. -rm -f lub/bintree/bintree_find.lo
  1728. -rm -f lub/bintree/bintree_findfirst.$(OBJEXT)
  1729. -rm -f lub/bintree/bintree_findfirst.lo
  1730. -rm -f lub/bintree/bintree_findlast.$(OBJEXT)
  1731. -rm -f lub/bintree/bintree_findlast.lo
  1732. -rm -f lub/bintree/bintree_findnext.$(OBJEXT)
  1733. -rm -f lub/bintree/bintree_findnext.lo
  1734. -rm -f lub/bintree/bintree_findprevious.$(OBJEXT)
  1735. -rm -f lub/bintree/bintree_findprevious.lo
  1736. -rm -f lub/bintree/bintree_init.$(OBJEXT)
  1737. -rm -f lub/bintree/bintree_init.lo
  1738. -rm -f lub/bintree/bintree_insert.$(OBJEXT)
  1739. -rm -f lub/bintree/bintree_insert.lo
  1740. -rm -f lub/bintree/bintree_iterator_init.$(OBJEXT)
  1741. -rm -f lub/bintree/bintree_iterator_init.lo
  1742. -rm -f lub/bintree/bintree_iterator_next.$(OBJEXT)
  1743. -rm -f lub/bintree/bintree_iterator_next.lo
  1744. -rm -f lub/bintree/bintree_iterator_previous.$(OBJEXT)
  1745. -rm -f lub/bintree/bintree_iterator_previous.lo
  1746. -rm -f lub/bintree/bintree_node_init.$(OBJEXT)
  1747. -rm -f lub/bintree/bintree_node_init.lo
  1748. -rm -f lub/bintree/bintree_remove.$(OBJEXT)
  1749. -rm -f lub/bintree/bintree_remove.lo
  1750. -rm -f lub/bintree/bintree_splay.$(OBJEXT)
  1751. -rm -f lub/bintree/bintree_splay.lo
  1752. -rm -f lub/blockpool/blockpool__get_stats.$(OBJEXT)
  1753. -rm -f lub/blockpool/blockpool__get_stats.lo
  1754. -rm -f lub/blockpool/blockpool_alloc.$(OBJEXT)
  1755. -rm -f lub/blockpool/blockpool_alloc.lo
  1756. -rm -f lub/blockpool/blockpool_free.$(OBJEXT)
  1757. -rm -f lub/blockpool/blockpool_free.lo
  1758. -rm -f lub/blockpool/blockpool_init.$(OBJEXT)
  1759. -rm -f lub/blockpool/blockpool_init.lo
  1760. -rm -f lub/ctype/ctype_isdigit.$(OBJEXT)
  1761. -rm -f lub/ctype/ctype_isdigit.lo
  1762. -rm -f lub/ctype/ctype_isspace.$(OBJEXT)
  1763. -rm -f lub/ctype/ctype_isspace.lo
  1764. -rm -f lub/ctype/ctype_tolower.$(OBJEXT)
  1765. -rm -f lub/ctype/ctype_tolower.lo
  1766. -rm -f lub/ctype/ctype_toupper.$(OBJEXT)
  1767. -rm -f lub/ctype/ctype_toupper.lo
  1768. -rm -f lub/dblockpool/dblockpool_alloc.$(OBJEXT)
  1769. -rm -f lub/dblockpool/dblockpool_alloc.lo
  1770. -rm -f lub/dblockpool/dblockpool_fini.$(OBJEXT)
  1771. -rm -f lub/dblockpool/dblockpool_fini.lo
  1772. -rm -f lub/dblockpool/dblockpool_free.$(OBJEXT)
  1773. -rm -f lub/dblockpool/dblockpool_free.lo
  1774. -rm -f lub/dblockpool/dblockpool_init.$(OBJEXT)
  1775. -rm -f lub/dblockpool/dblockpool_init.lo
  1776. -rm -f lub/dump/dump.$(OBJEXT)
  1777. -rm -f lub/dump/dump.lo
  1778. -rm -f lub/heap/cache.$(OBJEXT)
  1779. -rm -f lub/heap/cache.lo
  1780. -rm -f lub/heap/cache_bucket.$(OBJEXT)
  1781. -rm -f lub/heap/cache_bucket.lo
  1782. -rm -f lub/heap/context.$(OBJEXT)
  1783. -rm -f lub/heap/context.lo
  1784. -rm -f lub/heap/heap__get_max_free.$(OBJEXT)
  1785. -rm -f lub/heap/heap__get_max_free.lo
  1786. -rm -f lub/heap/heap__get_stacktrace.$(OBJEXT)
  1787. -rm -f lub/heap/heap__get_stacktrace.lo
  1788. -rm -f lub/heap/heap__get_stats.$(OBJEXT)
  1789. -rm -f lub/heap/heap__get_stats.lo
  1790. -rm -f lub/heap/heap_add_segment.$(OBJEXT)
  1791. -rm -f lub/heap/heap_add_segment.lo
  1792. -rm -f lub/heap/heap_align_block.$(OBJEXT)
  1793. -rm -f lub/heap/heap_align_block.lo
  1794. -rm -f lub/heap/heap_block__get_tail.$(OBJEXT)
  1795. -rm -f lub/heap/heap_block__get_tail.lo
  1796. -rm -f lub/heap/heap_block_check.$(OBJEXT)
  1797. -rm -f lub/heap/heap_block_check.lo
  1798. -rm -f lub/heap/heap_block_from_ptr.$(OBJEXT)
  1799. -rm -f lub/heap/heap_block_from_ptr.lo
  1800. -rm -f lub/heap/heap_block_getfirst.$(OBJEXT)
  1801. -rm -f lub/heap/heap_block_getfirst.lo
  1802. -rm -f lub/heap/heap_block_getkey.$(OBJEXT)
  1803. -rm -f lub/heap/heap_block_getkey.lo
  1804. -rm -f lub/heap/heap_block_getnext.$(OBJEXT)
  1805. -rm -f lub/heap/heap_block_getnext.lo
  1806. -rm -f lub/heap/heap_block_getprevious.$(OBJEXT)
  1807. -rm -f lub/heap/heap_block_getprevious.lo
  1808. -rm -f lub/heap/heap_check.$(OBJEXT)
  1809. -rm -f lub/heap/heap_check.lo
  1810. -rm -f lub/heap/heap_context_delete.$(OBJEXT)
  1811. -rm -f lub/heap/heap_context_delete.lo
  1812. -rm -f lub/heap/heap_context_find_or_create.$(OBJEXT)
  1813. -rm -f lub/heap/heap_context_find_or_create.lo
  1814. -rm -f lub/heap/heap_create.$(OBJEXT)
  1815. -rm -f lub/heap/heap_create.lo
  1816. -rm -f lub/heap/heap_destroy.$(OBJEXT)
  1817. -rm -f lub/heap/heap_destroy.lo
  1818. -rm -f lub/heap/heap_extend_both_ways.$(OBJEXT)
  1819. -rm -f lub/heap/heap_extend_both_ways.lo
  1820. -rm -f lub/heap/heap_extend_downwards.$(OBJEXT)
  1821. -rm -f lub/heap/heap_extend_downwards.lo
  1822. -rm -f lub/heap/heap_extend_upwards.$(OBJEXT)
  1823. -rm -f lub/heap/heap_extend_upwards.lo
  1824. -rm -f lub/heap/heap_foreach_free_block.$(OBJEXT)
  1825. -rm -f lub/heap/heap_foreach_free_block.lo
  1826. -rm -f lub/heap/heap_foreach_segment.$(OBJEXT)
  1827. -rm -f lub/heap/heap_foreach_segment.lo
  1828. -rm -f lub/heap/heap_graft_to_bottom.$(OBJEXT)
  1829. -rm -f lub/heap/heap_graft_to_bottom.lo
  1830. -rm -f lub/heap/heap_graft_to_top.$(OBJEXT)
  1831. -rm -f lub/heap/heap_graft_to_top.lo
  1832. -rm -f lub/heap/heap_init_free_block.$(OBJEXT)
  1833. -rm -f lub/heap/heap_init_free_block.lo
  1834. -rm -f lub/heap/heap_merge_with_next.$(OBJEXT)
  1835. -rm -f lub/heap/heap_merge_with_next.lo
  1836. -rm -f lub/heap/heap_merge_with_previous.$(OBJEXT)
  1837. -rm -f lub/heap/heap_merge_with_previous.lo
  1838. -rm -f lub/heap/heap_new_alloc_block.$(OBJEXT)
  1839. -rm -f lub/heap/heap_new_alloc_block.lo
  1840. -rm -f lub/heap/heap_new_free_block.$(OBJEXT)
  1841. -rm -f lub/heap/heap_new_free_block.lo
  1842. -rm -f lub/heap/heap_post_realloc.$(OBJEXT)
  1843. -rm -f lub/heap/heap_post_realloc.lo
  1844. -rm -f lub/heap/heap_pre_realloc.$(OBJEXT)
  1845. -rm -f lub/heap/heap_pre_realloc.lo
  1846. -rm -f lub/heap/heap_raw_realloc.$(OBJEXT)
  1847. -rm -f lub/heap/heap_raw_realloc.lo
  1848. -rm -f lub/heap/heap_realloc.$(OBJEXT)
  1849. -rm -f lub/heap/heap_realloc.lo
  1850. -rm -f lub/heap/heap_scan_stack.$(OBJEXT)
  1851. -rm -f lub/heap/heap_scan_stack.lo
  1852. -rm -f lub/heap/heap_show.$(OBJEXT)
  1853. -rm -f lub/heap/heap_show.lo
  1854. -rm -f lub/heap/heap_slice_from_bottom.$(OBJEXT)
  1855. -rm -f lub/heap/heap_slice_from_bottom.lo
  1856. -rm -f lub/heap/heap_slice_from_top.$(OBJEXT)
  1857. -rm -f lub/heap/heap_slice_from_top.lo
  1858. -rm -f lub/heap/heap_static_alloc.$(OBJEXT)
  1859. -rm -f lub/heap/heap_static_alloc.lo
  1860. -rm -f lub/heap/heap_stop_here.$(OBJEXT)
  1861. -rm -f lub/heap/heap_stop_here.lo
  1862. -rm -f lub/heap/heap_tainted_memory.$(OBJEXT)
  1863. -rm -f lub/heap/heap_tainted_memory.lo
  1864. -rm -f lub/heap/node.$(OBJEXT)
  1865. -rm -f lub/heap/node.lo
  1866. -rm -f lub/heap/posix/heap_clean_stacks.$(OBJEXT)
  1867. -rm -f lub/heap/posix/heap_clean_stacks.lo
  1868. -rm -f lub/heap/posix/heap_leak_mutex.$(OBJEXT)
  1869. -rm -f lub/heap/posix/heap_leak_mutex.lo
  1870. -rm -f lub/heap/posix/heap_scan_bss.$(OBJEXT)
  1871. -rm -f lub/heap/posix/heap_scan_bss.lo
  1872. -rm -f lub/heap/posix/heap_scan_data.$(OBJEXT)
  1873. -rm -f lub/heap/posix/heap_scan_data.lo
  1874. -rm -f lub/heap/posix/heap_symShow.$(OBJEXT)
  1875. -rm -f lub/heap/posix/heap_symShow.lo
  1876. -rm -f lub/heap/posix/sysheap_stubs.$(OBJEXT)
  1877. -rm -f lub/heap/posix/sysheap_stubs.lo
  1878. -rm -f lub/list/list.$(OBJEXT)
  1879. -rm -f lub/list/list.lo
  1880. -rm -f lub/partition/partition_check_memory.$(OBJEXT)
  1881. -rm -f lub/partition/partition_check_memory.lo
  1882. -rm -f lub/partition/partition_destroy_local_heap.$(OBJEXT)
  1883. -rm -f lub/partition/partition_destroy_local_heap.lo
  1884. -rm -f lub/partition/partition_disable_leak_detection.$(OBJEXT)
  1885. -rm -f lub/partition/partition_disable_leak_detection.lo
  1886. -rm -f lub/partition/partition_enable_leak_detection.$(OBJEXT)
  1887. -rm -f lub/partition/partition_enable_leak_detection.lo
  1888. -rm -f lub/partition/partition_extend_memory.$(OBJEXT)
  1889. -rm -f lub/partition/partition_extend_memory.lo
  1890. -rm -f lub/partition/partition_findcreate_local_heap.$(OBJEXT)
  1891. -rm -f lub/partition/partition_findcreate_local_heap.lo
  1892. -rm -f lub/partition/partition_fini.$(OBJEXT)
  1893. -rm -f lub/partition/partition_fini.lo
  1894. -rm -f lub/partition/partition_init.$(OBJEXT)
  1895. -rm -f lub/partition/partition_init.lo
  1896. -rm -f lub/partition/partition_realloc.$(OBJEXT)
  1897. -rm -f lub/partition/partition_realloc.lo
  1898. -rm -f lub/partition/partition_segment_alloc.$(OBJEXT)
  1899. -rm -f lub/partition/partition_segment_alloc.lo
  1900. -rm -f lub/partition/partition_show.$(OBJEXT)
  1901. -rm -f lub/partition/partition_show.lo
  1902. -rm -f lub/partition/partition_sysalloc.$(OBJEXT)
  1903. -rm -f lub/partition/partition_sysalloc.lo
  1904. -rm -f lub/partition/posix/posix_partition.$(OBJEXT)
  1905. -rm -f lub/partition/posix/posix_partition.lo
  1906. -rm -f lub/string/string_cat.$(OBJEXT)
  1907. -rm -f lub/string/string_cat.lo
  1908. -rm -f lub/string/string_catn.$(OBJEXT)
  1909. -rm -f lub/string/string_catn.lo
  1910. -rm -f lub/string/string_dup.$(OBJEXT)
  1911. -rm -f lub/string/string_dup.lo
  1912. -rm -f lub/string/string_escape.$(OBJEXT)
  1913. -rm -f lub/string/string_escape.lo
  1914. -rm -f lub/string/string_free.$(OBJEXT)
  1915. -rm -f lub/string/string_free.lo
  1916. -rm -f lub/string/string_nocasecmp.$(OBJEXT)
  1917. -rm -f lub/string/string_nocasecmp.lo
  1918. -rm -f lub/string/string_nocasestr.$(OBJEXT)
  1919. -rm -f lub/string/string_nocasestr.lo
  1920. -rm -f lub/string/string_suffix.$(OBJEXT)
  1921. -rm -f lub/string/string_suffix.lo
  1922. -rm -f lub/system/system_test.$(OBJEXT)
  1923. -rm -f lub/system/system_test.lo
  1924. -rm -f lub/system/test.$(OBJEXT)
  1925. -rm -f lub/system/test.lo
  1926. -rm -f lub/test/test.$(OBJEXT)
  1927. -rm -f lub/test/test.lo
  1928. -rm -f lubheap/posix/sysheap.$(OBJEXT)
  1929. -rm -f lubheap/posix/sysheap.lo
  1930. -rm -f test/bintree.$(OBJEXT)
  1931. -rm -f test/heap.$(OBJEXT)
  1932. -rm -f test/string.$(OBJEXT)
  1933. -rm -f test/test_lubMallocTest-mallocTest.$(OBJEXT)
  1934. -rm -f test/test_mallocTest-mallocTest.$(OBJEXT)
  1935. -rm -f tinyrl/history/history.$(OBJEXT)
  1936. -rm -f tinyrl/history/history.lo
  1937. -rm -f tinyrl/history/history_entry.$(OBJEXT)
  1938. -rm -f tinyrl/history/history_entry.lo
  1939. -rm -f tinyrl/tinyrl.$(OBJEXT)
  1940. -rm -f tinyrl/tinyrl.lo
  1941. -rm -f tinyrl/vt100/vt100.$(OBJEXT)
  1942. -rm -f tinyrl/vt100/vt100.lo
  1943. -rm -f tinyxml/libtinyxml_la-tinystr.$(OBJEXT)
  1944. -rm -f tinyxml/libtinyxml_la-tinystr.lo
  1945. -rm -f tinyxml/libtinyxml_la-tinyxml.$(OBJEXT)
  1946. -rm -f tinyxml/libtinyxml_la-tinyxml.lo
  1947. -rm -f tinyxml/libtinyxml_la-tinyxmlerror.$(OBJEXT)
  1948. -rm -f tinyxml/libtinyxml_la-tinyxmlerror.lo
  1949. -rm -f tinyxml/libtinyxml_la-tinyxmlparser.$(OBJEXT)
  1950. -rm -f tinyxml/libtinyxml_la-tinyxmlparser.lo
  1951. distclean-compile:
  1952. -rm -f *.tab.c
  1953. @AMDEP_TRUE@@am__include@ @am__quote@bin/$(DEPDIR)/clish.Po@am__quote@
  1954. @AMDEP_TRUE@@am__include@ @am__quote@bin/$(DEPDIR)/konf.Po@am__quote@
  1955. @AMDEP_TRUE@@am__include@ @am__quote@bin/$(DEPDIR)/konfd.Po@am__quote@
  1956. @AMDEP_TRUE@@am__include@ @am__quote@clish/$(DEPDIR)/libclish_la-clish_access_callback.Plo@am__quote@
  1957. @AMDEP_TRUE@@am__include@ @am__quote@clish/$(DEPDIR)/libclish_la-clish_config_callback.Plo@am__quote@
  1958. @AMDEP_TRUE@@am__include@ @am__quote@clish/$(DEPDIR)/libclish_la-clish_script_callback.Plo@am__quote@
  1959. @AMDEP_TRUE@@am__include@ @am__quote@clish/command/$(DEPDIR)/libclish_la-command.Plo@am__quote@
  1960. @AMDEP_TRUE@@am__include@ @am__quote@clish/command/$(DEPDIR)/libclish_la-command_dump.Plo@am__quote@
  1961. @AMDEP_TRUE@@am__include@ @am__quote@clish/nspace/$(DEPDIR)/libclish_la-nspace.Plo@am__quote@
  1962. @AMDEP_TRUE@@am__include@ @am__quote@clish/nspace/$(DEPDIR)/libclish_la-nspace_dump.Plo@am__quote@
  1963. @AMDEP_TRUE@@am__include@ @am__quote@clish/param/$(DEPDIR)/libclish_la-param.Plo@am__quote@
  1964. @AMDEP_TRUE@@am__include@ @am__quote@clish/param/$(DEPDIR)/libclish_la-param_dump.Plo@am__quote@
  1965. @AMDEP_TRUE@@am__include@ @am__quote@clish/pargv/$(DEPDIR)/libclish_la-pargv.Plo@am__quote@
  1966. @AMDEP_TRUE@@am__include@ @am__quote@clish/pargv/$(DEPDIR)/libclish_la-pargv_dump.Plo@am__quote@
  1967. @AMDEP_TRUE@@am__include@ @am__quote@clish/ptype/$(DEPDIR)/libclish_la-ptype.Plo@am__quote@
  1968. @AMDEP_TRUE@@am__include@ @am__quote@clish/ptype/$(DEPDIR)/libclish_la-ptype_dump.Plo@am__quote@
  1969. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell__get_client_cookie.Plo@am__quote@
  1970. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell__get_tinyrl.Plo@am__quote@
  1971. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell__get_view.Plo@am__quote@
  1972. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell__get_viewid.Plo@am__quote@
  1973. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_command_generator.Plo@am__quote@
  1974. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_delete.Plo@am__quote@
  1975. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_dump.Plo@am__quote@
  1976. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_execute.Plo@am__quote@
  1977. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_expand.Plo@am__quote@
  1978. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_find_create_ptype.Plo@am__quote@
  1979. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_find_create_view.Plo@am__quote@
  1980. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_find_view.Plo@am__quote@
  1981. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_help.Plo@am__quote@
  1982. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_insert_ptype.Plo@am__quote@
  1983. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_insert_view.Plo@am__quote@
  1984. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_new.Plo@am__quote@
  1985. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_parse.Plo@am__quote@
  1986. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_pop_file.Plo@am__quote@
  1987. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_push_file.Plo@am__quote@
  1988. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_pwd.Plo@am__quote@
  1989. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_resolve_command.Plo@am__quote@
  1990. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_resolve_prefix.Plo@am__quote@
  1991. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_set_context.Plo@am__quote@
  1992. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_spawn.Plo@am__quote@
  1993. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_startup.Plo@am__quote@
  1994. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/libclish_la-shell_tinyrl.Plo@am__quote@
  1995. @AMDEP_TRUE@@am__include@ @am__quote@clish/shell/$(DEPDIR)/shell_tinyxml_read.Plo@am__quote@
  1996. @AMDEP_TRUE@@am__include@ @am__quote@clish/variable/$(DEPDIR)/libclish_la-variable_expand.Plo@am__quote@
  1997. @AMDEP_TRUE@@am__include@ @am__quote@clish/view/$(DEPDIR)/libclish_la-view.Plo@am__quote@
  1998. @AMDEP_TRUE@@am__include@ @am__quote@clish/view/$(DEPDIR)/libclish_la-view_dump.Plo@am__quote@
  1999. @AMDEP_TRUE@@am__include@ @am__quote@konf/buf/$(DEPDIR)/buf.Plo@am__quote@
  2000. @AMDEP_TRUE@@am__include@ @am__quote@konf/net/$(DEPDIR)/net.Plo@am__quote@
  2001. @AMDEP_TRUE@@am__include@ @am__quote@konf/query/$(DEPDIR)/query.Plo@am__quote@
  2002. @AMDEP_TRUE@@am__include@ @am__quote@konf/query/$(DEPDIR)/query_dump.Plo@am__quote@
  2003. @AMDEP_TRUE@@am__include@ @am__quote@konf/tree/$(DEPDIR)/tree.Plo@am__quote@
  2004. @AMDEP_TRUE@@am__include@ @am__quote@konf/tree/$(DEPDIR)/tree_dump.Plo@am__quote@
  2005. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv__get_arg.Plo@am__quote@
  2006. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv__get_argv.Plo@am__quote@
  2007. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv__get_count.Plo@am__quote@
  2008. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv__get_offset.Plo@am__quote@
  2009. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv__get_quoted.Plo@am__quote@
  2010. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv_new.Plo@am__quote@
  2011. @AMDEP_TRUE@@am__include@ @am__quote@lub/argv/$(DEPDIR)/argv_nextword.Plo@am__quote@
  2012. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_dump.Plo@am__quote@
  2013. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_find.Plo@am__quote@
  2014. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_findfirst.Plo@am__quote@
  2015. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_findlast.Plo@am__quote@
  2016. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_findnext.Plo@am__quote@
  2017. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_findprevious.Plo@am__quote@
  2018. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_init.Plo@am__quote@
  2019. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_insert.Plo@am__quote@
  2020. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_iterator_init.Plo@am__quote@
  2021. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_iterator_next.Plo@am__quote@
  2022. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_iterator_previous.Plo@am__quote@
  2023. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_node_init.Plo@am__quote@
  2024. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_remove.Plo@am__quote@
  2025. @AMDEP_TRUE@@am__include@ @am__quote@lub/bintree/$(DEPDIR)/bintree_splay.Plo@am__quote@
  2026. @AMDEP_TRUE@@am__include@ @am__quote@lub/blockpool/$(DEPDIR)/blockpool__get_stats.Plo@am__quote@
  2027. @AMDEP_TRUE@@am__include@ @am__quote@lub/blockpool/$(DEPDIR)/blockpool_alloc.Plo@am__quote@
  2028. @AMDEP_TRUE@@am__include@ @am__quote@lub/blockpool/$(DEPDIR)/blockpool_free.Plo@am__quote@
  2029. @AMDEP_TRUE@@am__include@ @am__quote@lub/blockpool/$(DEPDIR)/blockpool_init.Plo@am__quote@
  2030. @AMDEP_TRUE@@am__include@ @am__quote@lub/ctype/$(DEPDIR)/ctype_isdigit.Plo@am__quote@
  2031. @AMDEP_TRUE@@am__include@ @am__quote@lub/ctype/$(DEPDIR)/ctype_isspace.Plo@am__quote@
  2032. @AMDEP_TRUE@@am__include@ @am__quote@lub/ctype/$(DEPDIR)/ctype_tolower.Plo@am__quote@
  2033. @AMDEP_TRUE@@am__include@ @am__quote@lub/ctype/$(DEPDIR)/ctype_toupper.Plo@am__quote@
  2034. @AMDEP_TRUE@@am__include@ @am__quote@lub/dblockpool/$(DEPDIR)/dblockpool_alloc.Plo@am__quote@
  2035. @AMDEP_TRUE@@am__include@ @am__quote@lub/dblockpool/$(DEPDIR)/dblockpool_fini.Plo@am__quote@
  2036. @AMDEP_TRUE@@am__include@ @am__quote@lub/dblockpool/$(DEPDIR)/dblockpool_free.Plo@am__quote@
  2037. @AMDEP_TRUE@@am__include@ @am__quote@lub/dblockpool/$(DEPDIR)/dblockpool_init.Plo@am__quote@
  2038. @AMDEP_TRUE@@am__include@ @am__quote@lub/dump/$(DEPDIR)/dump.Plo@am__quote@
  2039. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/cache.Plo@am__quote@
  2040. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/cache_bucket.Plo@am__quote@
  2041. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/context.Plo@am__quote@
  2042. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap__get_max_free.Plo@am__quote@
  2043. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap__get_stacktrace.Plo@am__quote@
  2044. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap__get_stats.Plo@am__quote@
  2045. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_add_segment.Plo@am__quote@
  2046. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_align_block.Plo@am__quote@
  2047. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block__get_tail.Plo@am__quote@
  2048. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_check.Plo@am__quote@
  2049. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_from_ptr.Plo@am__quote@
  2050. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_getfirst.Plo@am__quote@
  2051. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_getkey.Plo@am__quote@
  2052. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_getnext.Plo@am__quote@
  2053. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_block_getprevious.Plo@am__quote@
  2054. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_check.Plo@am__quote@
  2055. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_context_delete.Plo@am__quote@
  2056. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_context_find_or_create.Plo@am__quote@
  2057. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_create.Plo@am__quote@
  2058. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_destroy.Plo@am__quote@
  2059. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_extend_both_ways.Plo@am__quote@
  2060. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_extend_downwards.Plo@am__quote@
  2061. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_extend_upwards.Plo@am__quote@
  2062. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_foreach_free_block.Plo@am__quote@
  2063. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_foreach_segment.Plo@am__quote@
  2064. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_graft_to_bottom.Plo@am__quote@
  2065. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_graft_to_top.Plo@am__quote@
  2066. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_init_free_block.Plo@am__quote@
  2067. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_merge_with_next.Plo@am__quote@
  2068. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_merge_with_previous.Plo@am__quote@
  2069. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_new_alloc_block.Plo@am__quote@
  2070. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_new_free_block.Plo@am__quote@
  2071. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_post_realloc.Plo@am__quote@
  2072. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_pre_realloc.Plo@am__quote@
  2073. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_raw_realloc.Plo@am__quote@
  2074. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_realloc.Plo@am__quote@
  2075. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_scan_stack.Plo@am__quote@
  2076. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_show.Plo@am__quote@
  2077. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_slice_from_bottom.Plo@am__quote@
  2078. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_slice_from_top.Plo@am__quote@
  2079. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_static_alloc.Plo@am__quote@
  2080. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_stop_here.Plo@am__quote@
  2081. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/heap_tainted_memory.Plo@am__quote@
  2082. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/$(DEPDIR)/node.Plo@am__quote@
  2083. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/heap_clean_stacks.Plo@am__quote@
  2084. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/heap_leak_mutex.Plo@am__quote@
  2085. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/heap_scan_bss.Plo@am__quote@
  2086. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/heap_scan_data.Plo@am__quote@
  2087. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/heap_symShow.Plo@am__quote@
  2088. @AMDEP_TRUE@@am__include@ @am__quote@lub/heap/posix/$(DEPDIR)/sysheap_stubs.Plo@am__quote@
  2089. @AMDEP_TRUE@@am__include@ @am__quote@lub/list/$(DEPDIR)/list.Plo@am__quote@
  2090. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_check_memory.Plo@am__quote@
  2091. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_destroy_local_heap.Plo@am__quote@
  2092. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_disable_leak_detection.Plo@am__quote@
  2093. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_enable_leak_detection.Plo@am__quote@
  2094. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_extend_memory.Plo@am__quote@
  2095. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_findcreate_local_heap.Plo@am__quote@
  2096. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_fini.Plo@am__quote@
  2097. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_init.Plo@am__quote@
  2098. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_realloc.Plo@am__quote@
  2099. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_segment_alloc.Plo@am__quote@
  2100. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_show.Plo@am__quote@
  2101. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/$(DEPDIR)/partition_sysalloc.Plo@am__quote@
  2102. @AMDEP_TRUE@@am__include@ @am__quote@lub/partition/posix/$(DEPDIR)/posix_partition.Plo@am__quote@
  2103. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_cat.Plo@am__quote@
  2104. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_catn.Plo@am__quote@
  2105. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_dup.Plo@am__quote@
  2106. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_escape.Plo@am__quote@
  2107. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_free.Plo@am__quote@
  2108. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_nocasecmp.Plo@am__quote@
  2109. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_nocasestr.Plo@am__quote@
  2110. @AMDEP_TRUE@@am__include@ @am__quote@lub/string/$(DEPDIR)/string_suffix.Plo@am__quote@
  2111. @AMDEP_TRUE@@am__include@ @am__quote@lub/system/$(DEPDIR)/system_test.Plo@am__quote@
  2112. @AMDEP_TRUE@@am__include@ @am__quote@lub/system/$(DEPDIR)/test.Plo@am__quote@
  2113. @AMDEP_TRUE@@am__include@ @am__quote@lub/test/$(DEPDIR)/test.Plo@am__quote@
  2114. @AMDEP_TRUE@@am__include@ @am__quote@lubheap/posix/$(DEPDIR)/sysheap.Plo@am__quote@
  2115. @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/bintree.Po@am__quote@
  2116. @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/heap.Po@am__quote@
  2117. @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/string.Po@am__quote@
  2118. @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_lubMallocTest-mallocTest.Po@am__quote@
  2119. @AMDEP_TRUE@@am__include@ @am__quote@test/$(DEPDIR)/test_mallocTest-mallocTest.Po@am__quote@
  2120. @AMDEP_TRUE@@am__include@ @am__quote@tinyrl/$(DEPDIR)/tinyrl.Plo@am__quote@
  2121. @AMDEP_TRUE@@am__include@ @am__quote@tinyrl/history/$(DEPDIR)/history.Plo@am__quote@
  2122. @AMDEP_TRUE@@am__include@ @am__quote@tinyrl/history/$(DEPDIR)/history_entry.Plo@am__quote@
  2123. @AMDEP_TRUE@@am__include@ @am__quote@tinyrl/vt100/$(DEPDIR)/vt100.Plo@am__quote@
  2124. @AMDEP_TRUE@@am__include@ @am__quote@tinyxml/$(DEPDIR)/libtinyxml_la-tinystr.Plo@am__quote@
  2125. @AMDEP_TRUE@@am__include@ @am__quote@tinyxml/$(DEPDIR)/libtinyxml_la-tinyxml.Plo@am__quote@
  2126. @AMDEP_TRUE@@am__include@ @am__quote@tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlerror.Plo@am__quote@
  2127. @AMDEP_TRUE@@am__include@ @am__quote@tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlparser.Plo@am__quote@
  2128. .c.o:
  2129. @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  2130. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  2131. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  2132. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  2133. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2134. @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
  2135. .c.obj:
  2136. @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  2137. @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  2138. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  2139. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  2140. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2141. @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  2142. .c.lo:
  2143. @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  2144. @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  2145. @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  2146. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  2147. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2148. @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
  2149. clish/libclish_la-clish_access_callback.lo: clish/clish_access_callback.c
  2150. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/libclish_la-clish_access_callback.lo -MD -MP -MF clish/$(DEPDIR)/libclish_la-clish_access_callback.Tpo -c -o clish/libclish_la-clish_access_callback.lo `test -f 'clish/clish_access_callback.c' || echo '$(srcdir)/'`clish/clish_access_callback.c
  2151. @am__fastdepCC_TRUE@ $(am__mv) clish/$(DEPDIR)/libclish_la-clish_access_callback.Tpo clish/$(DEPDIR)/libclish_la-clish_access_callback.Plo
  2152. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/clish_access_callback.c' object='clish/libclish_la-clish_access_callback.lo' libtool=yes @AMDEPBACKSLASH@
  2153. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2154. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/libclish_la-clish_access_callback.lo `test -f 'clish/clish_access_callback.c' || echo '$(srcdir)/'`clish/clish_access_callback.c
  2155. clish/libclish_la-clish_script_callback.lo: clish/clish_script_callback.c
  2156. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/libclish_la-clish_script_callback.lo -MD -MP -MF clish/$(DEPDIR)/libclish_la-clish_script_callback.Tpo -c -o clish/libclish_la-clish_script_callback.lo `test -f 'clish/clish_script_callback.c' || echo '$(srcdir)/'`clish/clish_script_callback.c
  2157. @am__fastdepCC_TRUE@ $(am__mv) clish/$(DEPDIR)/libclish_la-clish_script_callback.Tpo clish/$(DEPDIR)/libclish_la-clish_script_callback.Plo
  2158. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/clish_script_callback.c' object='clish/libclish_la-clish_script_callback.lo' libtool=yes @AMDEPBACKSLASH@
  2159. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2160. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/libclish_la-clish_script_callback.lo `test -f 'clish/clish_script_callback.c' || echo '$(srcdir)/'`clish/clish_script_callback.c
  2161. clish/libclish_la-clish_config_callback.lo: clish/clish_config_callback.c
  2162. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/libclish_la-clish_config_callback.lo -MD -MP -MF clish/$(DEPDIR)/libclish_la-clish_config_callback.Tpo -c -o clish/libclish_la-clish_config_callback.lo `test -f 'clish/clish_config_callback.c' || echo '$(srcdir)/'`clish/clish_config_callback.c
  2163. @am__fastdepCC_TRUE@ $(am__mv) clish/$(DEPDIR)/libclish_la-clish_config_callback.Tpo clish/$(DEPDIR)/libclish_la-clish_config_callback.Plo
  2164. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/clish_config_callback.c' object='clish/libclish_la-clish_config_callback.lo' libtool=yes @AMDEPBACKSLASH@
  2165. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2166. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/libclish_la-clish_config_callback.lo `test -f 'clish/clish_config_callback.c' || echo '$(srcdir)/'`clish/clish_config_callback.c
  2167. clish/command/libclish_la-command.lo: clish/command/command.c
  2168. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/command/libclish_la-command.lo -MD -MP -MF clish/command/$(DEPDIR)/libclish_la-command.Tpo -c -o clish/command/libclish_la-command.lo `test -f 'clish/command/command.c' || echo '$(srcdir)/'`clish/command/command.c
  2169. @am__fastdepCC_TRUE@ $(am__mv) clish/command/$(DEPDIR)/libclish_la-command.Tpo clish/command/$(DEPDIR)/libclish_la-command.Plo
  2170. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/command/command.c' object='clish/command/libclish_la-command.lo' libtool=yes @AMDEPBACKSLASH@
  2171. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2172. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/command/libclish_la-command.lo `test -f 'clish/command/command.c' || echo '$(srcdir)/'`clish/command/command.c
  2173. clish/command/libclish_la-command_dump.lo: clish/command/command_dump.c
  2174. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/command/libclish_la-command_dump.lo -MD -MP -MF clish/command/$(DEPDIR)/libclish_la-command_dump.Tpo -c -o clish/command/libclish_la-command_dump.lo `test -f 'clish/command/command_dump.c' || echo '$(srcdir)/'`clish/command/command_dump.c
  2175. @am__fastdepCC_TRUE@ $(am__mv) clish/command/$(DEPDIR)/libclish_la-command_dump.Tpo clish/command/$(DEPDIR)/libclish_la-command_dump.Plo
  2176. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/command/command_dump.c' object='clish/command/libclish_la-command_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2177. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2178. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/command/libclish_la-command_dump.lo `test -f 'clish/command/command_dump.c' || echo '$(srcdir)/'`clish/command/command_dump.c
  2179. clish/param/libclish_la-param.lo: clish/param/param.c
  2180. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/param/libclish_la-param.lo -MD -MP -MF clish/param/$(DEPDIR)/libclish_la-param.Tpo -c -o clish/param/libclish_la-param.lo `test -f 'clish/param/param.c' || echo '$(srcdir)/'`clish/param/param.c
  2181. @am__fastdepCC_TRUE@ $(am__mv) clish/param/$(DEPDIR)/libclish_la-param.Tpo clish/param/$(DEPDIR)/libclish_la-param.Plo
  2182. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/param/param.c' object='clish/param/libclish_la-param.lo' libtool=yes @AMDEPBACKSLASH@
  2183. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2184. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/param/libclish_la-param.lo `test -f 'clish/param/param.c' || echo '$(srcdir)/'`clish/param/param.c
  2185. clish/param/libclish_la-param_dump.lo: clish/param/param_dump.c
  2186. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/param/libclish_la-param_dump.lo -MD -MP -MF clish/param/$(DEPDIR)/libclish_la-param_dump.Tpo -c -o clish/param/libclish_la-param_dump.lo `test -f 'clish/param/param_dump.c' || echo '$(srcdir)/'`clish/param/param_dump.c
  2187. @am__fastdepCC_TRUE@ $(am__mv) clish/param/$(DEPDIR)/libclish_la-param_dump.Tpo clish/param/$(DEPDIR)/libclish_la-param_dump.Plo
  2188. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/param/param_dump.c' object='clish/param/libclish_la-param_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2189. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2190. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/param/libclish_la-param_dump.lo `test -f 'clish/param/param_dump.c' || echo '$(srcdir)/'`clish/param/param_dump.c
  2191. clish/pargv/libclish_la-pargv.lo: clish/pargv/pargv.c
  2192. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/pargv/libclish_la-pargv.lo -MD -MP -MF clish/pargv/$(DEPDIR)/libclish_la-pargv.Tpo -c -o clish/pargv/libclish_la-pargv.lo `test -f 'clish/pargv/pargv.c' || echo '$(srcdir)/'`clish/pargv/pargv.c
  2193. @am__fastdepCC_TRUE@ $(am__mv) clish/pargv/$(DEPDIR)/libclish_la-pargv.Tpo clish/pargv/$(DEPDIR)/libclish_la-pargv.Plo
  2194. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/pargv/pargv.c' object='clish/pargv/libclish_la-pargv.lo' libtool=yes @AMDEPBACKSLASH@
  2195. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2196. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/pargv/libclish_la-pargv.lo `test -f 'clish/pargv/pargv.c' || echo '$(srcdir)/'`clish/pargv/pargv.c
  2197. clish/pargv/libclish_la-pargv_dump.lo: clish/pargv/pargv_dump.c
  2198. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/pargv/libclish_la-pargv_dump.lo -MD -MP -MF clish/pargv/$(DEPDIR)/libclish_la-pargv_dump.Tpo -c -o clish/pargv/libclish_la-pargv_dump.lo `test -f 'clish/pargv/pargv_dump.c' || echo '$(srcdir)/'`clish/pargv/pargv_dump.c
  2199. @am__fastdepCC_TRUE@ $(am__mv) clish/pargv/$(DEPDIR)/libclish_la-pargv_dump.Tpo clish/pargv/$(DEPDIR)/libclish_la-pargv_dump.Plo
  2200. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/pargv/pargv_dump.c' object='clish/pargv/libclish_la-pargv_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2201. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2202. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/pargv/libclish_la-pargv_dump.lo `test -f 'clish/pargv/pargv_dump.c' || echo '$(srcdir)/'`clish/pargv/pargv_dump.c
  2203. clish/ptype/libclish_la-ptype.lo: clish/ptype/ptype.c
  2204. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/ptype/libclish_la-ptype.lo -MD -MP -MF clish/ptype/$(DEPDIR)/libclish_la-ptype.Tpo -c -o clish/ptype/libclish_la-ptype.lo `test -f 'clish/ptype/ptype.c' || echo '$(srcdir)/'`clish/ptype/ptype.c
  2205. @am__fastdepCC_TRUE@ $(am__mv) clish/ptype/$(DEPDIR)/libclish_la-ptype.Tpo clish/ptype/$(DEPDIR)/libclish_la-ptype.Plo
  2206. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/ptype/ptype.c' object='clish/ptype/libclish_la-ptype.lo' libtool=yes @AMDEPBACKSLASH@
  2207. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2208. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/ptype/libclish_la-ptype.lo `test -f 'clish/ptype/ptype.c' || echo '$(srcdir)/'`clish/ptype/ptype.c
  2209. clish/ptype/libclish_la-ptype_dump.lo: clish/ptype/ptype_dump.c
  2210. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/ptype/libclish_la-ptype_dump.lo -MD -MP -MF clish/ptype/$(DEPDIR)/libclish_la-ptype_dump.Tpo -c -o clish/ptype/libclish_la-ptype_dump.lo `test -f 'clish/ptype/ptype_dump.c' || echo '$(srcdir)/'`clish/ptype/ptype_dump.c
  2211. @am__fastdepCC_TRUE@ $(am__mv) clish/ptype/$(DEPDIR)/libclish_la-ptype_dump.Tpo clish/ptype/$(DEPDIR)/libclish_la-ptype_dump.Plo
  2212. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/ptype/ptype_dump.c' object='clish/ptype/libclish_la-ptype_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2213. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2214. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/ptype/libclish_la-ptype_dump.lo `test -f 'clish/ptype/ptype_dump.c' || echo '$(srcdir)/'`clish/ptype/ptype_dump.c
  2215. clish/shell/libclish_la-shell__get_view.lo: clish/shell/shell__get_view.c
  2216. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell__get_view.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell__get_view.Tpo -c -o clish/shell/libclish_la-shell__get_view.lo `test -f 'clish/shell/shell__get_view.c' || echo '$(srcdir)/'`clish/shell/shell__get_view.c
  2217. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell__get_view.Tpo clish/shell/$(DEPDIR)/libclish_la-shell__get_view.Plo
  2218. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell__get_view.c' object='clish/shell/libclish_la-shell__get_view.lo' libtool=yes @AMDEPBACKSLASH@
  2219. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2220. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell__get_view.lo `test -f 'clish/shell/shell__get_view.c' || echo '$(srcdir)/'`clish/shell/shell__get_view.c
  2221. clish/shell/libclish_la-shell__get_viewid.lo: clish/shell/shell__get_viewid.c
  2222. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell__get_viewid.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell__get_viewid.Tpo -c -o clish/shell/libclish_la-shell__get_viewid.lo `test -f 'clish/shell/shell__get_viewid.c' || echo '$(srcdir)/'`clish/shell/shell__get_viewid.c
  2223. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell__get_viewid.Tpo clish/shell/$(DEPDIR)/libclish_la-shell__get_viewid.Plo
  2224. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell__get_viewid.c' object='clish/shell/libclish_la-shell__get_viewid.lo' libtool=yes @AMDEPBACKSLASH@
  2225. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2226. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell__get_viewid.lo `test -f 'clish/shell/shell__get_viewid.c' || echo '$(srcdir)/'`clish/shell/shell__get_viewid.c
  2227. clish/shell/libclish_la-shell__get_client_cookie.lo: clish/shell/shell__get_client_cookie.c
  2228. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell__get_client_cookie.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell__get_client_cookie.Tpo -c -o clish/shell/libclish_la-shell__get_client_cookie.lo `test -f 'clish/shell/shell__get_client_cookie.c' || echo '$(srcdir)/'`clish/shell/shell__get_client_cookie.c
  2229. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell__get_client_cookie.Tpo clish/shell/$(DEPDIR)/libclish_la-shell__get_client_cookie.Plo
  2230. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell__get_client_cookie.c' object='clish/shell/libclish_la-shell__get_client_cookie.lo' libtool=yes @AMDEPBACKSLASH@
  2231. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2232. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell__get_client_cookie.lo `test -f 'clish/shell/shell__get_client_cookie.c' || echo '$(srcdir)/'`clish/shell/shell__get_client_cookie.c
  2233. clish/shell/libclish_la-shell__get_tinyrl.lo: clish/shell/shell__get_tinyrl.c
  2234. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell__get_tinyrl.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell__get_tinyrl.Tpo -c -o clish/shell/libclish_la-shell__get_tinyrl.lo `test -f 'clish/shell/shell__get_tinyrl.c' || echo '$(srcdir)/'`clish/shell/shell__get_tinyrl.c
  2235. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell__get_tinyrl.Tpo clish/shell/$(DEPDIR)/libclish_la-shell__get_tinyrl.Plo
  2236. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell__get_tinyrl.c' object='clish/shell/libclish_la-shell__get_tinyrl.lo' libtool=yes @AMDEPBACKSLASH@
  2237. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2238. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell__get_tinyrl.lo `test -f 'clish/shell/shell__get_tinyrl.c' || echo '$(srcdir)/'`clish/shell/shell__get_tinyrl.c
  2239. clish/shell/libclish_la-shell_command_generator.lo: clish/shell/shell_command_generator.c
  2240. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_command_generator.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_command_generator.Tpo -c -o clish/shell/libclish_la-shell_command_generator.lo `test -f 'clish/shell/shell_command_generator.c' || echo '$(srcdir)/'`clish/shell/shell_command_generator.c
  2241. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_command_generator.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_command_generator.Plo
  2242. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_command_generator.c' object='clish/shell/libclish_la-shell_command_generator.lo' libtool=yes @AMDEPBACKSLASH@
  2243. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2244. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_command_generator.lo `test -f 'clish/shell/shell_command_generator.c' || echo '$(srcdir)/'`clish/shell/shell_command_generator.c
  2245. clish/shell/libclish_la-shell_delete.lo: clish/shell/shell_delete.c
  2246. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_delete.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_delete.Tpo -c -o clish/shell/libclish_la-shell_delete.lo `test -f 'clish/shell/shell_delete.c' || echo '$(srcdir)/'`clish/shell/shell_delete.c
  2247. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_delete.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_delete.Plo
  2248. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_delete.c' object='clish/shell/libclish_la-shell_delete.lo' libtool=yes @AMDEPBACKSLASH@
  2249. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2250. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_delete.lo `test -f 'clish/shell/shell_delete.c' || echo '$(srcdir)/'`clish/shell/shell_delete.c
  2251. clish/shell/libclish_la-shell_dump.lo: clish/shell/shell_dump.c
  2252. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_dump.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_dump.Tpo -c -o clish/shell/libclish_la-shell_dump.lo `test -f 'clish/shell/shell_dump.c' || echo '$(srcdir)/'`clish/shell/shell_dump.c
  2253. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_dump.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_dump.Plo
  2254. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_dump.c' object='clish/shell/libclish_la-shell_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2255. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2256. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_dump.lo `test -f 'clish/shell/shell_dump.c' || echo '$(srcdir)/'`clish/shell/shell_dump.c
  2257. clish/shell/libclish_la-shell_execute.lo: clish/shell/shell_execute.c
  2258. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_execute.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_execute.Tpo -c -o clish/shell/libclish_la-shell_execute.lo `test -f 'clish/shell/shell_execute.c' || echo '$(srcdir)/'`clish/shell/shell_execute.c
  2259. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_execute.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_execute.Plo
  2260. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_execute.c' object='clish/shell/libclish_la-shell_execute.lo' libtool=yes @AMDEPBACKSLASH@
  2261. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2262. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_execute.lo `test -f 'clish/shell/shell_execute.c' || echo '$(srcdir)/'`clish/shell/shell_execute.c
  2263. clish/shell/libclish_la-shell_find_create_ptype.lo: clish/shell/shell_find_create_ptype.c
  2264. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_find_create_ptype.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_find_create_ptype.Tpo -c -o clish/shell/libclish_la-shell_find_create_ptype.lo `test -f 'clish/shell/shell_find_create_ptype.c' || echo '$(srcdir)/'`clish/shell/shell_find_create_ptype.c
  2265. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_find_create_ptype.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_find_create_ptype.Plo
  2266. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_find_create_ptype.c' object='clish/shell/libclish_la-shell_find_create_ptype.lo' libtool=yes @AMDEPBACKSLASH@
  2267. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2268. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_find_create_ptype.lo `test -f 'clish/shell/shell_find_create_ptype.c' || echo '$(srcdir)/'`clish/shell/shell_find_create_ptype.c
  2269. clish/shell/libclish_la-shell_find_create_view.lo: clish/shell/shell_find_create_view.c
  2270. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_find_create_view.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_find_create_view.Tpo -c -o clish/shell/libclish_la-shell_find_create_view.lo `test -f 'clish/shell/shell_find_create_view.c' || echo '$(srcdir)/'`clish/shell/shell_find_create_view.c
  2271. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_find_create_view.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_find_create_view.Plo
  2272. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_find_create_view.c' object='clish/shell/libclish_la-shell_find_create_view.lo' libtool=yes @AMDEPBACKSLASH@
  2273. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2274. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_find_create_view.lo `test -f 'clish/shell/shell_find_create_view.c' || echo '$(srcdir)/'`clish/shell/shell_find_create_view.c
  2275. clish/shell/libclish_la-shell_find_view.lo: clish/shell/shell_find_view.c
  2276. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_find_view.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_find_view.Tpo -c -o clish/shell/libclish_la-shell_find_view.lo `test -f 'clish/shell/shell_find_view.c' || echo '$(srcdir)/'`clish/shell/shell_find_view.c
  2277. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_find_view.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_find_view.Plo
  2278. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_find_view.c' object='clish/shell/libclish_la-shell_find_view.lo' libtool=yes @AMDEPBACKSLASH@
  2279. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2280. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_find_view.lo `test -f 'clish/shell/shell_find_view.c' || echo '$(srcdir)/'`clish/shell/shell_find_view.c
  2281. clish/shell/libclish_la-shell_help.lo: clish/shell/shell_help.c
  2282. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_help.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_help.Tpo -c -o clish/shell/libclish_la-shell_help.lo `test -f 'clish/shell/shell_help.c' || echo '$(srcdir)/'`clish/shell/shell_help.c
  2283. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_help.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_help.Plo
  2284. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_help.c' object='clish/shell/libclish_la-shell_help.lo' libtool=yes @AMDEPBACKSLASH@
  2285. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2286. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_help.lo `test -f 'clish/shell/shell_help.c' || echo '$(srcdir)/'`clish/shell/shell_help.c
  2287. clish/shell/libclish_la-shell_insert_ptype.lo: clish/shell/shell_insert_ptype.c
  2288. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_insert_ptype.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_insert_ptype.Tpo -c -o clish/shell/libclish_la-shell_insert_ptype.lo `test -f 'clish/shell/shell_insert_ptype.c' || echo '$(srcdir)/'`clish/shell/shell_insert_ptype.c
  2289. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_insert_ptype.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_insert_ptype.Plo
  2290. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_insert_ptype.c' object='clish/shell/libclish_la-shell_insert_ptype.lo' libtool=yes @AMDEPBACKSLASH@
  2291. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2292. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_insert_ptype.lo `test -f 'clish/shell/shell_insert_ptype.c' || echo '$(srcdir)/'`clish/shell/shell_insert_ptype.c
  2293. clish/shell/libclish_la-shell_insert_view.lo: clish/shell/shell_insert_view.c
  2294. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_insert_view.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_insert_view.Tpo -c -o clish/shell/libclish_la-shell_insert_view.lo `test -f 'clish/shell/shell_insert_view.c' || echo '$(srcdir)/'`clish/shell/shell_insert_view.c
  2295. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_insert_view.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_insert_view.Plo
  2296. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_insert_view.c' object='clish/shell/libclish_la-shell_insert_view.lo' libtool=yes @AMDEPBACKSLASH@
  2297. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2298. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_insert_view.lo `test -f 'clish/shell/shell_insert_view.c' || echo '$(srcdir)/'`clish/shell/shell_insert_view.c
  2299. clish/shell/libclish_la-shell_new.lo: clish/shell/shell_new.c
  2300. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_new.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_new.Tpo -c -o clish/shell/libclish_la-shell_new.lo `test -f 'clish/shell/shell_new.c' || echo '$(srcdir)/'`clish/shell/shell_new.c
  2301. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_new.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_new.Plo
  2302. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_new.c' object='clish/shell/libclish_la-shell_new.lo' libtool=yes @AMDEPBACKSLASH@
  2303. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2304. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_new.lo `test -f 'clish/shell/shell_new.c' || echo '$(srcdir)/'`clish/shell/shell_new.c
  2305. clish/shell/libclish_la-shell_parse.lo: clish/shell/shell_parse.c
  2306. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_parse.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_parse.Tpo -c -o clish/shell/libclish_la-shell_parse.lo `test -f 'clish/shell/shell_parse.c' || echo '$(srcdir)/'`clish/shell/shell_parse.c
  2307. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_parse.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_parse.Plo
  2308. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_parse.c' object='clish/shell/libclish_la-shell_parse.lo' libtool=yes @AMDEPBACKSLASH@
  2309. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2310. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_parse.lo `test -f 'clish/shell/shell_parse.c' || echo '$(srcdir)/'`clish/shell/shell_parse.c
  2311. clish/shell/libclish_la-shell_pop_file.lo: clish/shell/shell_pop_file.c
  2312. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_pop_file.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_pop_file.Tpo -c -o clish/shell/libclish_la-shell_pop_file.lo `test -f 'clish/shell/shell_pop_file.c' || echo '$(srcdir)/'`clish/shell/shell_pop_file.c
  2313. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_pop_file.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_pop_file.Plo
  2314. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_pop_file.c' object='clish/shell/libclish_la-shell_pop_file.lo' libtool=yes @AMDEPBACKSLASH@
  2315. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2316. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_pop_file.lo `test -f 'clish/shell/shell_pop_file.c' || echo '$(srcdir)/'`clish/shell/shell_pop_file.c
  2317. clish/shell/libclish_la-shell_push_file.lo: clish/shell/shell_push_file.c
  2318. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_push_file.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_push_file.Tpo -c -o clish/shell/libclish_la-shell_push_file.lo `test -f 'clish/shell/shell_push_file.c' || echo '$(srcdir)/'`clish/shell/shell_push_file.c
  2319. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_push_file.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_push_file.Plo
  2320. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_push_file.c' object='clish/shell/libclish_la-shell_push_file.lo' libtool=yes @AMDEPBACKSLASH@
  2321. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2322. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_push_file.lo `test -f 'clish/shell/shell_push_file.c' || echo '$(srcdir)/'`clish/shell/shell_push_file.c
  2323. clish/shell/libclish_la-shell_resolve_command.lo: clish/shell/shell_resolve_command.c
  2324. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_resolve_command.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_resolve_command.Tpo -c -o clish/shell/libclish_la-shell_resolve_command.lo `test -f 'clish/shell/shell_resolve_command.c' || echo '$(srcdir)/'`clish/shell/shell_resolve_command.c
  2325. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_resolve_command.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_resolve_command.Plo
  2326. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_resolve_command.c' object='clish/shell/libclish_la-shell_resolve_command.lo' libtool=yes @AMDEPBACKSLASH@
  2327. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2328. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_resolve_command.lo `test -f 'clish/shell/shell_resolve_command.c' || echo '$(srcdir)/'`clish/shell/shell_resolve_command.c
  2329. clish/shell/libclish_la-shell_resolve_prefix.lo: clish/shell/shell_resolve_prefix.c
  2330. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_resolve_prefix.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_resolve_prefix.Tpo -c -o clish/shell/libclish_la-shell_resolve_prefix.lo `test -f 'clish/shell/shell_resolve_prefix.c' || echo '$(srcdir)/'`clish/shell/shell_resolve_prefix.c
  2331. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_resolve_prefix.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_resolve_prefix.Plo
  2332. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_resolve_prefix.c' object='clish/shell/libclish_la-shell_resolve_prefix.lo' libtool=yes @AMDEPBACKSLASH@
  2333. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2334. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_resolve_prefix.lo `test -f 'clish/shell/shell_resolve_prefix.c' || echo '$(srcdir)/'`clish/shell/shell_resolve_prefix.c
  2335. clish/shell/libclish_la-shell_set_context.lo: clish/shell/shell_set_context.c
  2336. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_set_context.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_set_context.Tpo -c -o clish/shell/libclish_la-shell_set_context.lo `test -f 'clish/shell/shell_set_context.c' || echo '$(srcdir)/'`clish/shell/shell_set_context.c
  2337. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_set_context.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_set_context.Plo
  2338. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_set_context.c' object='clish/shell/libclish_la-shell_set_context.lo' libtool=yes @AMDEPBACKSLASH@
  2339. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2340. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_set_context.lo `test -f 'clish/shell/shell_set_context.c' || echo '$(srcdir)/'`clish/shell/shell_set_context.c
  2341. clish/shell/libclish_la-shell_spawn.lo: clish/shell/shell_spawn.c
  2342. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_spawn.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_spawn.Tpo -c -o clish/shell/libclish_la-shell_spawn.lo `test -f 'clish/shell/shell_spawn.c' || echo '$(srcdir)/'`clish/shell/shell_spawn.c
  2343. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_spawn.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_spawn.Plo
  2344. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_spawn.c' object='clish/shell/libclish_la-shell_spawn.lo' libtool=yes @AMDEPBACKSLASH@
  2345. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2346. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_spawn.lo `test -f 'clish/shell/shell_spawn.c' || echo '$(srcdir)/'`clish/shell/shell_spawn.c
  2347. clish/shell/libclish_la-shell_startup.lo: clish/shell/shell_startup.c
  2348. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_startup.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_startup.Tpo -c -o clish/shell/libclish_la-shell_startup.lo `test -f 'clish/shell/shell_startup.c' || echo '$(srcdir)/'`clish/shell/shell_startup.c
  2349. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_startup.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_startup.Plo
  2350. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_startup.c' object='clish/shell/libclish_la-shell_startup.lo' libtool=yes @AMDEPBACKSLASH@
  2351. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2352. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_startup.lo `test -f 'clish/shell/shell_startup.c' || echo '$(srcdir)/'`clish/shell/shell_startup.c
  2353. clish/shell/libclish_la-shell_pwd.lo: clish/shell/shell_pwd.c
  2354. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_pwd.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_pwd.Tpo -c -o clish/shell/libclish_la-shell_pwd.lo `test -f 'clish/shell/shell_pwd.c' || echo '$(srcdir)/'`clish/shell/shell_pwd.c
  2355. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_pwd.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_pwd.Plo
  2356. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_pwd.c' object='clish/shell/libclish_la-shell_pwd.lo' libtool=yes @AMDEPBACKSLASH@
  2357. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2358. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_pwd.lo `test -f 'clish/shell/shell_pwd.c' || echo '$(srcdir)/'`clish/shell/shell_pwd.c
  2359. clish/shell/libclish_la-shell_tinyrl.lo: clish/shell/shell_tinyrl.c
  2360. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_tinyrl.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_tinyrl.Tpo -c -o clish/shell/libclish_la-shell_tinyrl.lo `test -f 'clish/shell/shell_tinyrl.c' || echo '$(srcdir)/'`clish/shell/shell_tinyrl.c
  2361. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_tinyrl.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_tinyrl.Plo
  2362. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_tinyrl.c' object='clish/shell/libclish_la-shell_tinyrl.lo' libtool=yes @AMDEPBACKSLASH@
  2363. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2364. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_tinyrl.lo `test -f 'clish/shell/shell_tinyrl.c' || echo '$(srcdir)/'`clish/shell/shell_tinyrl.c
  2365. clish/shell/libclish_la-shell_expand.lo: clish/shell/shell_expand.c
  2366. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/shell/libclish_la-shell_expand.lo -MD -MP -MF clish/shell/$(DEPDIR)/libclish_la-shell_expand.Tpo -c -o clish/shell/libclish_la-shell_expand.lo `test -f 'clish/shell/shell_expand.c' || echo '$(srcdir)/'`clish/shell/shell_expand.c
  2367. @am__fastdepCC_TRUE@ $(am__mv) clish/shell/$(DEPDIR)/libclish_la-shell_expand.Tpo clish/shell/$(DEPDIR)/libclish_la-shell_expand.Plo
  2368. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/shell/shell_expand.c' object='clish/shell/libclish_la-shell_expand.lo' libtool=yes @AMDEPBACKSLASH@
  2369. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2370. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/shell/libclish_la-shell_expand.lo `test -f 'clish/shell/shell_expand.c' || echo '$(srcdir)/'`clish/shell/shell_expand.c
  2371. clish/variable/libclish_la-variable_expand.lo: clish/variable/variable_expand.c
  2372. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/variable/libclish_la-variable_expand.lo -MD -MP -MF clish/variable/$(DEPDIR)/libclish_la-variable_expand.Tpo -c -o clish/variable/libclish_la-variable_expand.lo `test -f 'clish/variable/variable_expand.c' || echo '$(srcdir)/'`clish/variable/variable_expand.c
  2373. @am__fastdepCC_TRUE@ $(am__mv) clish/variable/$(DEPDIR)/libclish_la-variable_expand.Tpo clish/variable/$(DEPDIR)/libclish_la-variable_expand.Plo
  2374. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/variable/variable_expand.c' object='clish/variable/libclish_la-variable_expand.lo' libtool=yes @AMDEPBACKSLASH@
  2375. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2376. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/variable/libclish_la-variable_expand.lo `test -f 'clish/variable/variable_expand.c' || echo '$(srcdir)/'`clish/variable/variable_expand.c
  2377. clish/view/libclish_la-view.lo: clish/view/view.c
  2378. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/view/libclish_la-view.lo -MD -MP -MF clish/view/$(DEPDIR)/libclish_la-view.Tpo -c -o clish/view/libclish_la-view.lo `test -f 'clish/view/view.c' || echo '$(srcdir)/'`clish/view/view.c
  2379. @am__fastdepCC_TRUE@ $(am__mv) clish/view/$(DEPDIR)/libclish_la-view.Tpo clish/view/$(DEPDIR)/libclish_la-view.Plo
  2380. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/view/view.c' object='clish/view/libclish_la-view.lo' libtool=yes @AMDEPBACKSLASH@
  2381. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2382. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/view/libclish_la-view.lo `test -f 'clish/view/view.c' || echo '$(srcdir)/'`clish/view/view.c
  2383. clish/view/libclish_la-view_dump.lo: clish/view/view_dump.c
  2384. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/view/libclish_la-view_dump.lo -MD -MP -MF clish/view/$(DEPDIR)/libclish_la-view_dump.Tpo -c -o clish/view/libclish_la-view_dump.lo `test -f 'clish/view/view_dump.c' || echo '$(srcdir)/'`clish/view/view_dump.c
  2385. @am__fastdepCC_TRUE@ $(am__mv) clish/view/$(DEPDIR)/libclish_la-view_dump.Tpo clish/view/$(DEPDIR)/libclish_la-view_dump.Plo
  2386. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/view/view_dump.c' object='clish/view/libclish_la-view_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2387. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2388. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/view/libclish_la-view_dump.lo `test -f 'clish/view/view_dump.c' || echo '$(srcdir)/'`clish/view/view_dump.c
  2389. clish/nspace/libclish_la-nspace.lo: clish/nspace/nspace.c
  2390. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/nspace/libclish_la-nspace.lo -MD -MP -MF clish/nspace/$(DEPDIR)/libclish_la-nspace.Tpo -c -o clish/nspace/libclish_la-nspace.lo `test -f 'clish/nspace/nspace.c' || echo '$(srcdir)/'`clish/nspace/nspace.c
  2391. @am__fastdepCC_TRUE@ $(am__mv) clish/nspace/$(DEPDIR)/libclish_la-nspace.Tpo clish/nspace/$(DEPDIR)/libclish_la-nspace.Plo
  2392. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/nspace/nspace.c' object='clish/nspace/libclish_la-nspace.lo' libtool=yes @AMDEPBACKSLASH@
  2393. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2394. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/nspace/libclish_la-nspace.lo `test -f 'clish/nspace/nspace.c' || echo '$(srcdir)/'`clish/nspace/nspace.c
  2395. clish/nspace/libclish_la-nspace_dump.lo: clish/nspace/nspace_dump.c
  2396. @am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -MT clish/nspace/libclish_la-nspace_dump.lo -MD -MP -MF clish/nspace/$(DEPDIR)/libclish_la-nspace_dump.Tpo -c -o clish/nspace/libclish_la-nspace_dump.lo `test -f 'clish/nspace/nspace_dump.c' || echo '$(srcdir)/'`clish/nspace/nspace_dump.c
  2397. @am__fastdepCC_TRUE@ $(am__mv) clish/nspace/$(DEPDIR)/libclish_la-nspace_dump.Tpo clish/nspace/$(DEPDIR)/libclish_la-nspace_dump.Plo
  2398. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clish/nspace/nspace_dump.c' object='clish/nspace/libclish_la-nspace_dump.lo' libtool=yes @AMDEPBACKSLASH@
  2399. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2400. @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libclish_la_CFLAGS) $(CFLAGS) -c -o clish/nspace/libclish_la-nspace_dump.lo `test -f 'clish/nspace/nspace_dump.c' || echo '$(srcdir)/'`clish/nspace/nspace_dump.c
  2401. test/test_lubMallocTest-mallocTest.o: test/mallocTest.c
  2402. @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_lubMallocTest_CFLAGS) $(CFLAGS) -MT test/test_lubMallocTest-mallocTest.o -MD -MP -MF test/$(DEPDIR)/test_lubMallocTest-mallocTest.Tpo -c -o test/test_lubMallocTest-mallocTest.o `test -f 'test/mallocTest.c' || echo '$(srcdir)/'`test/mallocTest.c
  2403. @am__fastdepCC_TRUE@ $(am__mv) test/$(DEPDIR)/test_lubMallocTest-mallocTest.Tpo test/$(DEPDIR)/test_lubMallocTest-mallocTest.Po
  2404. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/mallocTest.c' object='test/test_lubMallocTest-mallocTest.o' libtool=no @AMDEPBACKSLASH@
  2405. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2406. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_lubMallocTest_CFLAGS) $(CFLAGS) -c -o test/test_lubMallocTest-mallocTest.o `test -f 'test/mallocTest.c' || echo '$(srcdir)/'`test/mallocTest.c
  2407. test/test_lubMallocTest-mallocTest.obj: test/mallocTest.c
  2408. @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_lubMallocTest_CFLAGS) $(CFLAGS) -MT test/test_lubMallocTest-mallocTest.obj -MD -MP -MF test/$(DEPDIR)/test_lubMallocTest-mallocTest.Tpo -c -o test/test_lubMallocTest-mallocTest.obj `if test -f 'test/mallocTest.c'; then $(CYGPATH_W) 'test/mallocTest.c'; else $(CYGPATH_W) '$(srcdir)/test/mallocTest.c'; fi`
  2409. @am__fastdepCC_TRUE@ $(am__mv) test/$(DEPDIR)/test_lubMallocTest-mallocTest.Tpo test/$(DEPDIR)/test_lubMallocTest-mallocTest.Po
  2410. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/mallocTest.c' object='test/test_lubMallocTest-mallocTest.obj' libtool=no @AMDEPBACKSLASH@
  2411. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2412. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_lubMallocTest_CFLAGS) $(CFLAGS) -c -o test/test_lubMallocTest-mallocTest.obj `if test -f 'test/mallocTest.c'; then $(CYGPATH_W) 'test/mallocTest.c'; else $(CYGPATH_W) '$(srcdir)/test/mallocTest.c'; fi`
  2413. test/test_mallocTest-mallocTest.o: test/mallocTest.c
  2414. @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mallocTest_CFLAGS) $(CFLAGS) -MT test/test_mallocTest-mallocTest.o -MD -MP -MF test/$(DEPDIR)/test_mallocTest-mallocTest.Tpo -c -o test/test_mallocTest-mallocTest.o `test -f 'test/mallocTest.c' || echo '$(srcdir)/'`test/mallocTest.c
  2415. @am__fastdepCC_TRUE@ $(am__mv) test/$(DEPDIR)/test_mallocTest-mallocTest.Tpo test/$(DEPDIR)/test_mallocTest-mallocTest.Po
  2416. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/mallocTest.c' object='test/test_mallocTest-mallocTest.o' libtool=no @AMDEPBACKSLASH@
  2417. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2418. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mallocTest_CFLAGS) $(CFLAGS) -c -o test/test_mallocTest-mallocTest.o `test -f 'test/mallocTest.c' || echo '$(srcdir)/'`test/mallocTest.c
  2419. test/test_mallocTest-mallocTest.obj: test/mallocTest.c
  2420. @am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mallocTest_CFLAGS) $(CFLAGS) -MT test/test_mallocTest-mallocTest.obj -MD -MP -MF test/$(DEPDIR)/test_mallocTest-mallocTest.Tpo -c -o test/test_mallocTest-mallocTest.obj `if test -f 'test/mallocTest.c'; then $(CYGPATH_W) 'test/mallocTest.c'; else $(CYGPATH_W) '$(srcdir)/test/mallocTest.c'; fi`
  2421. @am__fastdepCC_TRUE@ $(am__mv) test/$(DEPDIR)/test_mallocTest-mallocTest.Tpo test/$(DEPDIR)/test_mallocTest-mallocTest.Po
  2422. @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/mallocTest.c' object='test/test_mallocTest-mallocTest.obj' libtool=no @AMDEPBACKSLASH@
  2423. @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2424. @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_mallocTest_CFLAGS) $(CFLAGS) -c -o test/test_mallocTest-mallocTest.obj `if test -f 'test/mallocTest.c'; then $(CYGPATH_W) 'test/mallocTest.c'; else $(CYGPATH_W) '$(srcdir)/test/mallocTest.c'; fi`
  2425. .cpp.o:
  2426. @am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
  2427. @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  2428. @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  2429. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  2430. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2431. @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
  2432. .cpp.obj:
  2433. @am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
  2434. @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
  2435. @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
  2436. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  2437. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2438. @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  2439. .cpp.lo:
  2440. @am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
  2441. @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
  2442. @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
  2443. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  2444. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2445. @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
  2446. tinyxml/libtinyxml_la-tinyxml.lo: tinyxml/tinyxml.cpp
  2447. @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -MT tinyxml/libtinyxml_la-tinyxml.lo -MD -MP -MF tinyxml/$(DEPDIR)/libtinyxml_la-tinyxml.Tpo -c -o tinyxml/libtinyxml_la-tinyxml.lo `test -f 'tinyxml/tinyxml.cpp' || echo '$(srcdir)/'`tinyxml/tinyxml.cpp
  2448. @am__fastdepCXX_TRUE@ $(am__mv) tinyxml/$(DEPDIR)/libtinyxml_la-tinyxml.Tpo tinyxml/$(DEPDIR)/libtinyxml_la-tinyxml.Plo
  2449. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tinyxml/tinyxml.cpp' object='tinyxml/libtinyxml_la-tinyxml.lo' libtool=yes @AMDEPBACKSLASH@
  2450. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2451. @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -c -o tinyxml/libtinyxml_la-tinyxml.lo `test -f 'tinyxml/tinyxml.cpp' || echo '$(srcdir)/'`tinyxml/tinyxml.cpp
  2452. tinyxml/libtinyxml_la-tinyxmlerror.lo: tinyxml/tinyxmlerror.cpp
  2453. @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -MT tinyxml/libtinyxml_la-tinyxmlerror.lo -MD -MP -MF tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlerror.Tpo -c -o tinyxml/libtinyxml_la-tinyxmlerror.lo `test -f 'tinyxml/tinyxmlerror.cpp' || echo '$(srcdir)/'`tinyxml/tinyxmlerror.cpp
  2454. @am__fastdepCXX_TRUE@ $(am__mv) tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlerror.Tpo tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlerror.Plo
  2455. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tinyxml/tinyxmlerror.cpp' object='tinyxml/libtinyxml_la-tinyxmlerror.lo' libtool=yes @AMDEPBACKSLASH@
  2456. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2457. @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -c -o tinyxml/libtinyxml_la-tinyxmlerror.lo `test -f 'tinyxml/tinyxmlerror.cpp' || echo '$(srcdir)/'`tinyxml/tinyxmlerror.cpp
  2458. tinyxml/libtinyxml_la-tinyxmlparser.lo: tinyxml/tinyxmlparser.cpp
  2459. @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -MT tinyxml/libtinyxml_la-tinyxmlparser.lo -MD -MP -MF tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlparser.Tpo -c -o tinyxml/libtinyxml_la-tinyxmlparser.lo `test -f 'tinyxml/tinyxmlparser.cpp' || echo '$(srcdir)/'`tinyxml/tinyxmlparser.cpp
  2460. @am__fastdepCXX_TRUE@ $(am__mv) tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlparser.Tpo tinyxml/$(DEPDIR)/libtinyxml_la-tinyxmlparser.Plo
  2461. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tinyxml/tinyxmlparser.cpp' object='tinyxml/libtinyxml_la-tinyxmlparser.lo' libtool=yes @AMDEPBACKSLASH@
  2462. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2463. @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -c -o tinyxml/libtinyxml_la-tinyxmlparser.lo `test -f 'tinyxml/tinyxmlparser.cpp' || echo '$(srcdir)/'`tinyxml/tinyxmlparser.cpp
  2464. tinyxml/libtinyxml_la-tinystr.lo: tinyxml/tinystr.cpp
  2465. @am__fastdepCXX_TRUE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -MT tinyxml/libtinyxml_la-tinystr.lo -MD -MP -MF tinyxml/$(DEPDIR)/libtinyxml_la-tinystr.Tpo -c -o tinyxml/libtinyxml_la-tinystr.lo `test -f 'tinyxml/tinystr.cpp' || echo '$(srcdir)/'`tinyxml/tinystr.cpp
  2466. @am__fastdepCXX_TRUE@ $(am__mv) tinyxml/$(DEPDIR)/libtinyxml_la-tinystr.Tpo tinyxml/$(DEPDIR)/libtinyxml_la-tinystr.Plo
  2467. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tinyxml/tinystr.cpp' object='tinyxml/libtinyxml_la-tinystr.lo' libtool=yes @AMDEPBACKSLASH@
  2468. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2469. @am__fastdepCXX_FALSE@ $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libtinyxml_la_CXXFLAGS) $(CXXFLAGS) -c -o tinyxml/libtinyxml_la-tinystr.lo `test -f 'tinyxml/tinystr.cpp' || echo '$(srcdir)/'`tinyxml/tinystr.cpp
  2470. mostlyclean-libtool:
  2471. -rm -f *.lo
  2472. clean-libtool:
  2473. -rm -rf .libs _libs
  2474. -rm -rf bin/.libs bin/_libs
  2475. -rm -rf clish/.libs clish/_libs
  2476. -rm -rf clish/command/.libs clish/command/_libs
  2477. -rm -rf clish/nspace/.libs clish/nspace/_libs
  2478. -rm -rf clish/param/.libs clish/param/_libs
  2479. -rm -rf clish/pargv/.libs clish/pargv/_libs
  2480. -rm -rf clish/ptype/.libs clish/ptype/_libs
  2481. -rm -rf clish/shell/.libs clish/shell/_libs
  2482. -rm -rf clish/variable/.libs clish/variable/_libs
  2483. -rm -rf clish/view/.libs clish/view/_libs
  2484. -rm -rf konf/buf/.libs konf/buf/_libs
  2485. -rm -rf konf/net/.libs konf/net/_libs
  2486. -rm -rf konf/query/.libs konf/query/_libs
  2487. -rm -rf konf/tree/.libs konf/tree/_libs
  2488. -rm -rf lub/argv/.libs lub/argv/_libs
  2489. -rm -rf lub/bintree/.libs lub/bintree/_libs
  2490. -rm -rf lub/blockpool/.libs lub/blockpool/_libs
  2491. -rm -rf lub/ctype/.libs lub/ctype/_libs
  2492. -rm -rf lub/dblockpool/.libs lub/dblockpool/_libs
  2493. -rm -rf lub/dump/.libs lub/dump/_libs
  2494. -rm -rf lub/heap/.libs lub/heap/_libs
  2495. -rm -rf lub/heap/posix/.libs lub/heap/posix/_libs
  2496. -rm -rf lub/list/.libs lub/list/_libs
  2497. -rm -rf lub/partition/.libs lub/partition/_libs
  2498. -rm -rf lub/partition/posix/.libs lub/partition/posix/_libs
  2499. -rm -rf lub/string/.libs lub/string/_libs
  2500. -rm -rf lub/system/.libs lub/system/_libs
  2501. -rm -rf lub/test/.libs lub/test/_libs
  2502. -rm -rf lubheap/posix/.libs lubheap/posix/_libs
  2503. -rm -rf test/.libs test/_libs
  2504. -rm -rf tinyrl/.libs tinyrl/_libs
  2505. -rm -rf tinyrl/history/.libs tinyrl/history/_libs
  2506. -rm -rf tinyrl/vt100/.libs tinyrl/vt100/_libs
  2507. -rm -rf tinyxml/.libs tinyxml/_libs
  2508. distclean-libtool:
  2509. -rm -f libtool config.lt
  2510. install-nobase_includeHEADERS: $(nobase_include_HEADERS)
  2511. @$(NORMAL_INSTALL)
  2512. test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
  2513. @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
  2514. $(am__nobase_list) | while read dir files; do \
  2515. xfiles=; for file in $$files; do \
  2516. if test -f "$$file"; then xfiles="$$xfiles $$file"; \
  2517. else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \
  2518. test -z "$$xfiles" || { \
  2519. test "x$$dir" = x. || { \
  2520. echo "$(MKDIR_P) '$(DESTDIR)$(includedir)/$$dir'"; \
  2521. $(MKDIR_P) "$(DESTDIR)$(includedir)/$$dir"; }; \
  2522. echo " $(INSTALL_HEADER) $$xfiles '$(DESTDIR)$(includedir)/$$dir'"; \
  2523. $(INSTALL_HEADER) $$xfiles "$(DESTDIR)$(includedir)/$$dir" || exit $$?; }; \
  2524. done
  2525. uninstall-nobase_includeHEADERS:
  2526. @$(NORMAL_UNINSTALL)
  2527. @list='$(nobase_include_HEADERS)'; test -n "$(includedir)" || list=; \
  2528. $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \
  2529. test -n "$$files" || exit 0; \
  2530. echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
  2531. cd "$(DESTDIR)$(includedir)" && rm -f $$files
  2532. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  2533. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  2534. unique=`for i in $$list; do \
  2535. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2536. done | \
  2537. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2538. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2539. mkid -fID $$unique
  2540. tags: TAGS
  2541. TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  2542. $(TAGS_FILES) $(LISP)
  2543. set x; \
  2544. here=`pwd`; \
  2545. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  2546. unique=`for i in $$list; do \
  2547. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2548. done | \
  2549. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2550. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2551. shift; \
  2552. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  2553. test -n "$$unique" || unique=$$empty_fix; \
  2554. if test $$# -gt 0; then \
  2555. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  2556. "$$@" $$unique; \
  2557. else \
  2558. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  2559. $$unique; \
  2560. fi; \
  2561. fi
  2562. ctags: CTAGS
  2563. CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
  2564. $(TAGS_FILES) $(LISP)
  2565. list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
  2566. unique=`for i in $$list; do \
  2567. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2568. done | \
  2569. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2570. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2571. test -z "$(CTAGS_ARGS)$$unique" \
  2572. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  2573. $$unique
  2574. GTAGS:
  2575. here=`$(am__cd) $(top_builddir) && pwd` \
  2576. && $(am__cd) $(top_srcdir) \
  2577. && gtags -i $(GTAGS_ARGS) "$$here"
  2578. distclean-tags:
  2579. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  2580. distdir: $(DISTFILES)
  2581. $(am__remove_distdir)
  2582. test -d "$(distdir)" || mkdir "$(distdir)"
  2583. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  2584. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  2585. list='$(DISTFILES)'; \
  2586. dist_files=`for file in $$list; do echo $$file; done | \
  2587. sed -e "s|^$$srcdirstrip/||;t" \
  2588. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  2589. case $$dist_files in \
  2590. */*) $(MKDIR_P) `echo "$$dist_files" | \
  2591. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  2592. sort -u` ;; \
  2593. esac; \
  2594. for file in $$dist_files; do \
  2595. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  2596. if test -d $$d/$$file; then \
  2597. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  2598. if test -d "$(distdir)/$$file"; then \
  2599. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  2600. fi; \
  2601. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  2602. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  2603. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  2604. fi; \
  2605. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  2606. else \
  2607. test -f "$(distdir)/$$file" \
  2608. || cp -p $$d/$$file "$(distdir)/$$file" \
  2609. || exit 1; \
  2610. fi; \
  2611. done
  2612. -test -n "$(am__skip_mode_fix)" \
  2613. || find "$(distdir)" -type d ! -perm -755 \
  2614. -exec chmod u+rwx,go+rx {} \; -o \
  2615. ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
  2616. ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
  2617. ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
  2618. || chmod -R a+r "$(distdir)"
  2619. dist-gzip: distdir
  2620. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  2621. $(am__remove_distdir)
  2622. dist-bzip2: distdir
  2623. tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
  2624. $(am__remove_distdir)
  2625. dist-lzma: distdir
  2626. tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
  2627. $(am__remove_distdir)
  2628. dist-xz: distdir
  2629. tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
  2630. $(am__remove_distdir)
  2631. dist-tarZ: distdir
  2632. tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  2633. $(am__remove_distdir)
  2634. dist-shar: distdir
  2635. shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
  2636. $(am__remove_distdir)
  2637. dist-zip: distdir
  2638. -rm -f $(distdir).zip
  2639. zip -rq $(distdir).zip $(distdir)
  2640. $(am__remove_distdir)
  2641. dist dist-all: distdir
  2642. tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  2643. $(am__remove_distdir)
  2644. # This target untars the dist file and tries a VPATH configuration. Then
  2645. # it guarantees that the distribution is self-contained by making another
  2646. # tarfile.
  2647. distcheck: dist
  2648. case '$(DIST_ARCHIVES)' in \
  2649. *.tar.gz*) \
  2650. GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
  2651. *.tar.bz2*) \
  2652. bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
  2653. *.tar.lzma*) \
  2654. lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
  2655. *.tar.xz*) \
  2656. xz -dc $(distdir).tar.xz | $(am__untar) ;;\
  2657. *.tar.Z*) \
  2658. uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  2659. *.shar.gz*) \
  2660. GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
  2661. *.zip*) \
  2662. unzip $(distdir).zip ;;\
  2663. esac
  2664. chmod -R a-w $(distdir); chmod a+w $(distdir)
  2665. mkdir $(distdir)/_build
  2666. mkdir $(distdir)/_inst
  2667. chmod a-w $(distdir)
  2668. test -d $(distdir)/_build || exit 0; \
  2669. dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
  2670. && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
  2671. && am__cwd=`pwd` \
  2672. && $(am__cd) $(distdir)/_build \
  2673. && ../configure --srcdir=.. --prefix="$$dc_install_base" \
  2674. $(DISTCHECK_CONFIGURE_FLAGS) \
  2675. && $(MAKE) $(AM_MAKEFLAGS) \
  2676. && $(MAKE) $(AM_MAKEFLAGS) dvi \
  2677. && $(MAKE) $(AM_MAKEFLAGS) check \
  2678. && $(MAKE) $(AM_MAKEFLAGS) install \
  2679. && $(MAKE) $(AM_MAKEFLAGS) installcheck \
  2680. && $(MAKE) $(AM_MAKEFLAGS) uninstall \
  2681. && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
  2682. distuninstallcheck \
  2683. && chmod -R a-w "$$dc_install_base" \
  2684. && ({ \
  2685. (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
  2686. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
  2687. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
  2688. && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
  2689. distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
  2690. } || { rm -rf "$$dc_destdir"; exit 1; }) \
  2691. && rm -rf "$$dc_destdir" \
  2692. && $(MAKE) $(AM_MAKEFLAGS) dist \
  2693. && rm -rf $(DIST_ARCHIVES) \
  2694. && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
  2695. && cd "$$am__cwd" \
  2696. || exit 1
  2697. $(am__remove_distdir)
  2698. @(echo "$(distdir) archives ready for distribution: "; \
  2699. list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
  2700. sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
  2701. distuninstallcheck:
  2702. @$(am__cd) '$(distuninstallcheck_dir)' \
  2703. && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
  2704. || { echo "ERROR: files left after uninstall:" ; \
  2705. if test -n "$(DESTDIR)"; then \
  2706. echo " (check DESTDIR support)"; \
  2707. fi ; \
  2708. $(distuninstallcheck_listfiles) ; \
  2709. exit 1; } >&2
  2710. distcleancheck: distclean
  2711. @if test '$(srcdir)' = . ; then \
  2712. echo "ERROR: distcleancheck can only run from a VPATH build" ; \
  2713. exit 1 ; \
  2714. fi
  2715. @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
  2716. || { echo "ERROR: files left in build directory after distclean:" ; \
  2717. $(distcleancheck_listfiles) ; \
  2718. exit 1; } >&2
  2719. check-am: all-am
  2720. check: check-am
  2721. all-am: Makefile $(LIBRARIES) $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) \
  2722. config.h
  2723. install-binPROGRAMS: install-libLTLIBRARIES
  2724. installdirs:
  2725. for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(includedir)"; do \
  2726. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  2727. done
  2728. install: install-am
  2729. install-exec: install-exec-am
  2730. install-data: install-data-am
  2731. uninstall: uninstall-am
  2732. install-am: all-am
  2733. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  2734. installcheck: installcheck-am
  2735. install-strip:
  2736. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  2737. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  2738. `test -z '$(STRIP)' || \
  2739. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  2740. mostlyclean-generic:
  2741. clean-generic:
  2742. distclean-generic:
  2743. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  2744. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  2745. -rm -f bin/$(DEPDIR)/$(am__dirstamp)
  2746. -rm -f bin/$(am__dirstamp)
  2747. -rm -f clish/$(DEPDIR)/$(am__dirstamp)
  2748. -rm -f clish/$(am__dirstamp)
  2749. -rm -f clish/command/$(DEPDIR)/$(am__dirstamp)
  2750. -rm -f clish/command/$(am__dirstamp)
  2751. -rm -f clish/nspace/$(DEPDIR)/$(am__dirstamp)
  2752. -rm -f clish/nspace/$(am__dirstamp)
  2753. -rm -f clish/param/$(DEPDIR)/$(am__dirstamp)
  2754. -rm -f clish/param/$(am__dirstamp)
  2755. -rm -f clish/pargv/$(DEPDIR)/$(am__dirstamp)
  2756. -rm -f clish/pargv/$(am__dirstamp)
  2757. -rm -f clish/ptype/$(DEPDIR)/$(am__dirstamp)
  2758. -rm -f clish/ptype/$(am__dirstamp)
  2759. -rm -f clish/shell/$(DEPDIR)/$(am__dirstamp)
  2760. -rm -f clish/shell/$(am__dirstamp)
  2761. -rm -f clish/variable/$(DEPDIR)/$(am__dirstamp)
  2762. -rm -f clish/variable/$(am__dirstamp)
  2763. -rm -f clish/view/$(DEPDIR)/$(am__dirstamp)
  2764. -rm -f clish/view/$(am__dirstamp)
  2765. -rm -f konf/buf/$(DEPDIR)/$(am__dirstamp)
  2766. -rm -f konf/buf/$(am__dirstamp)
  2767. -rm -f konf/net/$(DEPDIR)/$(am__dirstamp)
  2768. -rm -f konf/net/$(am__dirstamp)
  2769. -rm -f konf/query/$(DEPDIR)/$(am__dirstamp)
  2770. -rm -f konf/query/$(am__dirstamp)
  2771. -rm -f konf/tree/$(DEPDIR)/$(am__dirstamp)
  2772. -rm -f konf/tree/$(am__dirstamp)
  2773. -rm -f lub/argv/$(DEPDIR)/$(am__dirstamp)
  2774. -rm -f lub/argv/$(am__dirstamp)
  2775. -rm -f lub/bintree/$(DEPDIR)/$(am__dirstamp)
  2776. -rm -f lub/bintree/$(am__dirstamp)
  2777. -rm -f lub/blockpool/$(DEPDIR)/$(am__dirstamp)
  2778. -rm -f lub/blockpool/$(am__dirstamp)
  2779. -rm -f lub/ctype/$(DEPDIR)/$(am__dirstamp)
  2780. -rm -f lub/ctype/$(am__dirstamp)
  2781. -rm -f lub/dblockpool/$(DEPDIR)/$(am__dirstamp)
  2782. -rm -f lub/dblockpool/$(am__dirstamp)
  2783. -rm -f lub/dump/$(DEPDIR)/$(am__dirstamp)
  2784. -rm -f lub/dump/$(am__dirstamp)
  2785. -rm -f lub/heap/$(DEPDIR)/$(am__dirstamp)
  2786. -rm -f lub/heap/$(am__dirstamp)
  2787. -rm -f lub/heap/posix/$(DEPDIR)/$(am__dirstamp)
  2788. -rm -f lub/heap/posix/$(am__dirstamp)
  2789. -rm -f lub/list/$(DEPDIR)/$(am__dirstamp)
  2790. -rm -f lub/list/$(am__dirstamp)
  2791. -rm -f lub/partition/$(DEPDIR)/$(am__dirstamp)
  2792. -rm -f lub/partition/$(am__dirstamp)
  2793. -rm -f lub/partition/posix/$(DEPDIR)/$(am__dirstamp)
  2794. -rm -f lub/partition/posix/$(am__dirstamp)
  2795. -rm -f lub/string/$(DEPDIR)/$(am__dirstamp)
  2796. -rm -f lub/string/$(am__dirstamp)
  2797. -rm -f lub/system/$(DEPDIR)/$(am__dirstamp)
  2798. -rm -f lub/system/$(am__dirstamp)
  2799. -rm -f lub/test/$(DEPDIR)/$(am__dirstamp)
  2800. -rm -f lub/test/$(am__dirstamp)
  2801. -rm -f lubheap/posix/$(DEPDIR)/$(am__dirstamp)
  2802. -rm -f lubheap/posix/$(am__dirstamp)
  2803. -rm -f test/$(DEPDIR)/$(am__dirstamp)
  2804. -rm -f test/$(am__dirstamp)
  2805. -rm -f tinyrl/$(DEPDIR)/$(am__dirstamp)
  2806. -rm -f tinyrl/$(am__dirstamp)
  2807. -rm -f tinyrl/history/$(DEPDIR)/$(am__dirstamp)
  2808. -rm -f tinyrl/history/$(am__dirstamp)
  2809. -rm -f tinyrl/vt100/$(DEPDIR)/$(am__dirstamp)
  2810. -rm -f tinyrl/vt100/$(am__dirstamp)
  2811. -rm -f tinyxml/$(DEPDIR)/$(am__dirstamp)
  2812. -rm -f tinyxml/$(am__dirstamp)
  2813. maintainer-clean-generic:
  2814. @echo "This command is intended for maintainers to use"
  2815. @echo "it deletes files that may require special tools to rebuild."
  2816. clean: clean-am
  2817. clean-am: clean-binPROGRAMS clean-generic clean-libLIBRARIES \
  2818. clean-libLTLIBRARIES clean-libtool clean-noinstPROGRAMS \
  2819. mostlyclean-am
  2820. distclean: distclean-am
  2821. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  2822. -rm -rf bin/$(DEPDIR) clish/$(DEPDIR) clish/command/$(DEPDIR) clish/nspace/$(DEPDIR) clish/param/$(DEPDIR) clish/pargv/$(DEPDIR) clish/ptype/$(DEPDIR) clish/shell/$(DEPDIR) clish/variable/$(DEPDIR) clish/view/$(DEPDIR) konf/buf/$(DEPDIR) konf/net/$(DEPDIR) konf/query/$(DEPDIR) konf/tree/$(DEPDIR) lub/argv/$(DEPDIR) lub/bintree/$(DEPDIR) lub/blockpool/$(DEPDIR) lub/ctype/$(DEPDIR) lub/dblockpool/$(DEPDIR) lub/dump/$(DEPDIR) lub/heap/$(DEPDIR) lub/heap/posix/$(DEPDIR) lub/list/$(DEPDIR) lub/partition/$(DEPDIR) lub/partition/posix/$(DEPDIR) lub/string/$(DEPDIR) lub/system/$(DEPDIR) lub/test/$(DEPDIR) lubheap/posix/$(DEPDIR) test/$(DEPDIR) tinyrl/$(DEPDIR) tinyrl/history/$(DEPDIR) tinyrl/vt100/$(DEPDIR) tinyxml/$(DEPDIR)
  2823. -rm -f Makefile
  2824. distclean-am: clean-am distclean-compile distclean-generic \
  2825. distclean-hdr distclean-libtool distclean-tags
  2826. dvi: dvi-am
  2827. dvi-am:
  2828. html: html-am
  2829. html-am:
  2830. info: info-am
  2831. info-am:
  2832. install-data-am: install-nobase_includeHEADERS
  2833. install-dvi: install-dvi-am
  2834. install-dvi-am:
  2835. install-exec-am: install-binPROGRAMS install-libLIBRARIES \
  2836. install-libLTLIBRARIES
  2837. install-html: install-html-am
  2838. install-html-am:
  2839. install-info: install-info-am
  2840. install-info-am:
  2841. install-man:
  2842. install-pdf: install-pdf-am
  2843. install-pdf-am:
  2844. install-ps: install-ps-am
  2845. install-ps-am:
  2846. installcheck-am:
  2847. maintainer-clean: maintainer-clean-am
  2848. -rm -f $(am__CONFIG_DISTCLEAN_FILES)
  2849. -rm -rf $(top_srcdir)/autom4te.cache
  2850. -rm -rf bin/$(DEPDIR) clish/$(DEPDIR) clish/command/$(DEPDIR) clish/nspace/$(DEPDIR) clish/param/$(DEPDIR) clish/pargv/$(DEPDIR) clish/ptype/$(DEPDIR) clish/shell/$(DEPDIR) clish/variable/$(DEPDIR) clish/view/$(DEPDIR) konf/buf/$(DEPDIR) konf/net/$(DEPDIR) konf/query/$(DEPDIR) konf/tree/$(DEPDIR) lub/argv/$(DEPDIR) lub/bintree/$(DEPDIR) lub/blockpool/$(DEPDIR) lub/ctype/$(DEPDIR) lub/dblockpool/$(DEPDIR) lub/dump/$(DEPDIR) lub/heap/$(DEPDIR) lub/heap/posix/$(DEPDIR) lub/list/$(DEPDIR) lub/partition/$(DEPDIR) lub/partition/posix/$(DEPDIR) lub/string/$(DEPDIR) lub/system/$(DEPDIR) lub/test/$(DEPDIR) lubheap/posix/$(DEPDIR) test/$(DEPDIR) tinyrl/$(DEPDIR) tinyrl/history/$(DEPDIR) tinyrl/vt100/$(DEPDIR) tinyxml/$(DEPDIR)
  2851. -rm -f Makefile
  2852. maintainer-clean-am: distclean-am maintainer-clean-generic
  2853. mostlyclean: mostlyclean-am
  2854. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  2855. mostlyclean-libtool
  2856. pdf: pdf-am
  2857. pdf-am:
  2858. ps: ps-am
  2859. ps-am:
  2860. uninstall-am: uninstall-binPROGRAMS uninstall-libLIBRARIES \
  2861. uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS
  2862. .MAKE: all install-am install-strip
  2863. .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
  2864. clean-binPROGRAMS clean-generic clean-libLIBRARIES \
  2865. clean-libLTLIBRARIES clean-libtool clean-noinstPROGRAMS ctags \
  2866. dist dist-all dist-bzip2 dist-gzip dist-lzma dist-shar \
  2867. dist-tarZ dist-xz dist-zip distcheck distclean \
  2868. distclean-compile distclean-generic distclean-hdr \
  2869. distclean-libtool distclean-tags distcleancheck distdir \
  2870. distuninstallcheck dvi dvi-am html html-am info info-am \
  2871. install install-am install-binPROGRAMS install-data \
  2872. install-data-am install-dvi install-dvi-am install-exec \
  2873. install-exec-am install-html install-html-am install-info \
  2874. install-info-am install-libLIBRARIES install-libLTLIBRARIES \
  2875. install-man install-nobase_includeHEADERS install-pdf \
  2876. install-pdf-am install-ps install-ps-am install-strip \
  2877. installcheck installcheck-am installdirs maintainer-clean \
  2878. maintainer-clean-generic mostlyclean mostlyclean-compile \
  2879. mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  2880. tags uninstall uninstall-am uninstall-binPROGRAMS \
  2881. uninstall-libLIBRARIES uninstall-libLTLIBRARIES \
  2882. uninstall-nobase_includeHEADERS
  2883. @TCL_TRUE@ bin_PROGRAMS += bin/tclish@TCL_VERSION@
  2884. @TCL_TRUE@ bin_tclish@TCL_VERSION@_SOURCES = bin/tclish.cpp \
  2885. @TCL_TRUE@ bin/tclish_fini_callback.c \
  2886. @TCL_TRUE@ bin/tclish_init_callback.c \
  2887. @TCL_TRUE@ bin/tclish_script_callback.c \
  2888. @TCL_TRUE@ bin/tclish_show_result.c
  2889. @TCL_TRUE@ bin_tclish@TCL_VERSION@_LDADD = \
  2890. @TCL_TRUE@ libclish.la \
  2891. @TCL_TRUE@ libkonf.la \
  2892. @TCL_TRUE@ libtinyrl.la \
  2893. @TCL_TRUE@ libtinyxml.la \
  2894. @TCL_TRUE@ liblub.la \
  2895. @TCL_TRUE@ @TCL_LIBS@ \
  2896. @TCL_TRUE@ @PTHREAD_LIBS@ \
  2897. @TCL_TRUE@ @BFD_LIBS@
  2898. # @LUBHEAP_LIBS@
  2899. @LUBHEAP_TRUE@ bin_PROGRAMS += bin/lubheap
  2900. @LUBHEAP_TRUE@ bin_lubheap_SOURCES = bin/lubheap.c
  2901. @LUBHEAP_TRUE@ bin_lubheap_LDADD = \
  2902. @LUBHEAP_TRUE@ liblub.la \
  2903. @LUBHEAP_TRUE@ @LUBHEAP_LIBS@ \
  2904. @LUBHEAP_TRUE@ @PTHREAD_LIBS@ \
  2905. @LUBHEAP_TRUE@ @BFD_LIBS@
  2906. #EXTRA_DIST += \
  2907. # xml-examples/clock.xml \
  2908. # xml-examples/debug-commands.xml \
  2909. # xml-examples/debug-view.xml \
  2910. # xml-examples/global-commands.xml \
  2911. # xml-examples/named-view.xml \
  2912. # xml-examples/network-commands.xml \
  2913. # xml-examples/root-view.xml \
  2914. # xml-examples/script-view.xml \
  2915. # xml-examples/script.txt \
  2916. # xml-examples/startup.xml \
  2917. # xml-examples/types.xml \
  2918. # xml-examples/README
  2919. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  2920. # Otherwise a system limit (for SysV at least) may be exceeded.
  2921. .NOEXPORT: