Makefile.in 160 KB

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