Makefile.in 171 KB

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