Makefile.in 272 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991
  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 = berusky2$(EXEEXT)
  34. subdir = src
  35. DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
  36. ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  37. am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
  38. $(top_srcdir)/configure.in
  39. am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  40. $(ACLOCAL_M4)
  41. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  42. CONFIG_HEADER = $(top_builddir)/config.h
  43. CONFIG_CLEAN_FILES =
  44. CONFIG_CLEAN_VPATH_FILES =
  45. am__installdirs = "$(DESTDIR)$(bindir)"
  46. PROGRAMS = $(bin_PROGRAMS)
  47. am_berusky2_OBJECTS = 3D_graphic.$(OBJEXT) 3D_menus.$(OBJEXT) \
  48. 3d_math.$(OBJEXT) Apak.$(OBJEXT) Apakio.$(OBJEXT) \
  49. Bind.$(OBJEXT) Camera.$(OBJEXT) Comics.$(OBJEXT) \
  50. Command.$(OBJEXT) Dda.$(OBJEXT) Demo.$(OBJEXT) Init.$(OBJEXT) \
  51. Menu.$(OBJEXT) Menu2.$(OBJEXT) Tools.$(OBJEXT) \
  52. animend_functions.$(OBJEXT) apakdir.$(OBJEXT) \
  53. apakfind.$(OBJEXT) apakstream.$(OBJEXT) controls.$(OBJEXT) \
  54. controls3d.$(OBJEXT) credits.$(OBJEXT) font.$(OBJEXT) \
  55. font3d.$(OBJEXT) game_init.$(OBJEXT) game_logic.$(OBJEXT) \
  56. game_main.$(OBJEXT) grammar.$(OBJEXT) load_level.$(OBJEXT) \
  57. menu_script.$(OBJEXT) profiles.$(OBJEXT) setup.$(OBJEXT) \
  58. square_cut.$(OBJEXT) trigers.$(OBJEXT) volume.$(OBJEXT) \
  59. water.$(OBJEXT) 3dinterface.$(OBJEXT) Berusky3d.$(OBJEXT) \
  60. Berusky3d_castice.$(OBJEXT) Berusky3d_ini.$(OBJEXT) \
  61. Berusky3d_kamery.$(OBJEXT) Berusky3d_kofola2d.$(OBJEXT) \
  62. Berusky3d_kofola_interface.$(OBJEXT) Berusky3d_light.$(OBJEXT) \
  63. Berusky3d_load.$(OBJEXT) Berusky3d_render.$(OBJEXT) \
  64. Bmp.$(OBJEXT) Di.$(OBJEXT) Load.$(OBJEXT) \
  65. Load_chunks.$(OBJEXT) Load_out.$(OBJEXT) Tga.$(OBJEXT) \
  66. strip.$(OBJEXT) compat.$(OBJEXT) 2D_graphic.$(OBJEXT) \
  67. aabb.$(OBJEXT) age.$(OBJEXT) alpha.$(OBJEXT) \
  68. animation.$(OBJEXT) animation_time.$(OBJEXT) \
  69. animation_track.$(OBJEXT) animation_track_bezier.$(OBJEXT) \
  70. animation_track_linear.$(OBJEXT) bitmap.$(OBJEXT) \
  71. box.$(OBJEXT) camera.$(OBJEXT) camera_interface.$(OBJEXT) \
  72. color.$(OBJEXT) color_hsv.$(OBJEXT) draw.$(OBJEXT) \
  73. ferguson.$(OBJEXT) gext.$(OBJEXT) glwrapper.$(OBJEXT) \
  74. gpipe.$(OBJEXT) graph3d.$(OBJEXT) intersect.$(OBJEXT) \
  75. lighting.$(OBJEXT) material.$(OBJEXT) \
  76. material_texture.$(OBJEXT) matrix.$(OBJEXT) \
  77. matrix_animated.$(OBJEXT) matrix_notified.$(OBJEXT) \
  78. mesh.$(OBJEXT) normals.$(OBJEXT) obb.$(OBJEXT) \
  79. object_base.$(OBJEXT) object_box.$(OBJEXT) \
  80. object_geometry.$(OBJEXT) object_hierarchy.$(OBJEXT) \
  81. object_list.$(OBJEXT) object_render_list.$(OBJEXT) \
  82. object_scene.$(OBJEXT) object_transformation.$(OBJEXT) \
  83. object_world.$(OBJEXT) polar.$(OBJEXT) print.$(OBJEXT) \
  84. scene.$(OBJEXT) scene_import_3ds.$(OBJEXT) \
  85. scene_import_b2m.$(OBJEXT) scene_import_txt.$(OBJEXT) \
  86. scene_load.$(OBJEXT) selection.$(OBJEXT) surface.$(OBJEXT) \
  87. surface_height.$(OBJEXT) surface_mask.$(OBJEXT) \
  88. surface_sdl.$(OBJEXT) surface_sw.$(OBJEXT) \
  89. texture_func.$(OBJEXT) texture_unit.$(OBJEXT) \
  90. triangle.$(OBJEXT) vector.$(OBJEXT) vertex_arrays.$(OBJEXT) \
  91. world_interface.$(OBJEXT) age_main.$(OBJEXT) events.$(OBJEXT) \
  92. input.$(OBJEXT) timer.$(OBJEXT) change.$(OBJEXT) \
  93. data_file.$(OBJEXT) ini.$(OBJEXT) log.$(OBJEXT) \
  94. mem_alloc.$(OBJEXT) mtree.$(OBJEXT) utils.$(OBJEXT) \
  95. animationk.$(OBJEXT) generator_random.$(OBJEXT) Ddx.$(OBJEXT) \
  96. kfile.$(OBJEXT) Berusky3d_animace.$(OBJEXT) 3dmath.$(OBJEXT) \
  97. 3dproject.$(OBJEXT) Mat3d.$(OBJEXT) Keyframe.$(OBJEXT) \
  98. Texture.$(OBJEXT) Texture_import.$(OBJEXT) obbo.$(OBJEXT) \
  99. Kdtree.$(OBJEXT)
  100. berusky2_OBJECTS = $(am_berusky2_OBJECTS)
  101. berusky2_DEPENDENCIES =
  102. berusky2_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
  103. $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
  104. $(CXXFLAGS) $(berusky2_LDFLAGS) $(LDFLAGS) -o $@
  105. DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
  106. depcomp = $(SHELL) $(top_srcdir)/depcomp
  107. am__depfiles_maybe = depfiles
  108. am__mv = mv -f
  109. CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  110. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  111. LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  112. --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  113. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
  114. CXXLD = $(CXX)
  115. CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  116. --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
  117. $(LDFLAGS) -o $@
  118. COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
  119. $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  120. LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  121. --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
  122. $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  123. CCLD = $(CC)
  124. LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
  125. --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
  126. $(LDFLAGS) -o $@
  127. SOURCES = $(berusky2_SOURCES)
  128. DIST_SOURCES = $(berusky2_SOURCES)
  129. ETAGS = etags
  130. CTAGS = ctags
  131. DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
  132. ACLOCAL = @ACLOCAL@
  133. AMTAR = @AMTAR@
  134. AR = @AR@
  135. AUTOCONF = @AUTOCONF@
  136. AUTOHEADER = @AUTOHEADER@
  137. AUTOMAKE = @AUTOMAKE@
  138. AWK = @AWK@
  139. CATALOGS = @CATALOGS@
  140. CATOBJEXT = @CATOBJEXT@
  141. CC = @CC@
  142. CCDEPMODE = @CCDEPMODE@
  143. CFLAGS = @CFLAGS@
  144. CPP = @CPP@
  145. CPPFLAGS = @CPPFLAGS@
  146. CXX = @CXX@
  147. CXXCPP = @CXXCPP@
  148. CXXDEPMODE = @CXXDEPMODE@
  149. CXXFLAGS = @CXXFLAGS@
  150. CYGPATH_W = @CYGPATH_W@
  151. DATADIRNAME = @DATADIRNAME@
  152. DEFS = @DEFS@
  153. DEPDIR = @DEPDIR@
  154. DSYMUTIL = @DSYMUTIL@
  155. DUMPBIN = @DUMPBIN@
  156. ECHO_C = @ECHO_C@
  157. ECHO_N = @ECHO_N@
  158. ECHO_T = @ECHO_T@
  159. EGREP = @EGREP@
  160. EXEEXT = @EXEEXT@
  161. FGREP = @FGREP@
  162. GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
  163. GMOFILES = @GMOFILES@
  164. GMSGFMT = @GMSGFMT@
  165. GREP = @GREP@
  166. INSTALL = @INSTALL@
  167. INSTALL_DATA = @INSTALL_DATA@
  168. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  169. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  170. INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
  171. INSTOBJEXT = @INSTOBJEXT@
  172. INTLLIBS = @INTLLIBS@
  173. LD = @LD@
  174. LDFLAGS = @LDFLAGS@
  175. LIBOBJS = @LIBOBJS@
  176. LIBRARIES_CFLAGS = @LIBRARIES_CFLAGS@
  177. LIBRARIES_LIBS = @LIBRARIES_LIBS@
  178. LIBS = @LIBS@
  179. LIBTOOL = @LIBTOOL@
  180. LIPO = @LIPO@
  181. LN_S = @LN_S@
  182. LTLIBOBJS = @LTLIBOBJS@
  183. MAINT = @MAINT@
  184. MAKEINFO = @MAKEINFO@
  185. MKDIR_P = @MKDIR_P@
  186. MKINSTALLDIRS = @MKINSTALLDIRS@
  187. MSGFMT = @MSGFMT@
  188. MSGFMT_OPTS = @MSGFMT_OPTS@
  189. NM = @NM@
  190. NMEDIT = @NMEDIT@
  191. NO_PREFIX_PACKAGE_DATA_DIR = @NO_PREFIX_PACKAGE_DATA_DIR@
  192. NO_PREFIX_PACKAGE_DOC_DIR = @NO_PREFIX_PACKAGE_DOC_DIR@
  193. NO_PREFIX_PACKAGE_HELP_DIR = @NO_PREFIX_PACKAGE_HELP_DIR@
  194. NO_PREFIX_PACKAGE_MENU_DIR = @NO_PREFIX_PACKAGE_MENU_DIR@
  195. NO_PREFIX_PACKAGE_PIXMAPS_DIR = @NO_PREFIX_PACKAGE_PIXMAPS_DIR@
  196. OBJDUMP = @OBJDUMP@
  197. OBJEXT = @OBJEXT@
  198. OTOOL = @OTOOL@
  199. OTOOL64 = @OTOOL64@
  200. PACKAGE = @PACKAGE@
  201. PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
  202. PACKAGE_DATA_DIR = @PACKAGE_DATA_DIR@
  203. PACKAGE_DOC_DIR = @PACKAGE_DOC_DIR@
  204. PACKAGE_HELP_DIR = @PACKAGE_HELP_DIR@
  205. PACKAGE_MENU_DIR = @PACKAGE_MENU_DIR@
  206. PACKAGE_NAME = @PACKAGE_NAME@
  207. PACKAGE_PIXMAPS_DIR = @PACKAGE_PIXMAPS_DIR@
  208. PACKAGE_STRING = @PACKAGE_STRING@
  209. PACKAGE_TARNAME = @PACKAGE_TARNAME@
  210. PACKAGE_URL = @PACKAGE_URL@
  211. PACKAGE_VERSION = @PACKAGE_VERSION@
  212. PATH_SEPARATOR = @PATH_SEPARATOR@
  213. PKG_CONFIG = @PKG_CONFIG@
  214. PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
  215. PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
  216. POFILES = @POFILES@
  217. POSUB = @POSUB@
  218. PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@
  219. PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@
  220. RANLIB = @RANLIB@
  221. SED = @SED@
  222. SET_MAKE = @SET_MAKE@
  223. SHELL = @SHELL@
  224. STRIP = @STRIP@
  225. USE_NLS = @USE_NLS@
  226. VERSION = @VERSION@
  227. XGETTEXT = @XGETTEXT@
  228. abs_builddir = @abs_builddir@
  229. abs_srcdir = @abs_srcdir@
  230. abs_top_builddir = @abs_top_builddir@
  231. abs_top_srcdir = @abs_top_srcdir@
  232. ac_ct_CC = @ac_ct_CC@
  233. ac_ct_CXX = @ac_ct_CXX@
  234. ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
  235. am__include = @am__include@
  236. am__leading_dot = @am__leading_dot@
  237. am__quote = @am__quote@
  238. am__tar = @am__tar@
  239. am__untar = @am__untar@
  240. bindir = @bindir@
  241. build = @build@
  242. build_alias = @build_alias@
  243. build_cpu = @build_cpu@
  244. build_os = @build_os@
  245. build_vendor = @build_vendor@
  246. builddir = @builddir@
  247. datadir = @datadir@
  248. datarootdir = @datarootdir@
  249. docdir = @docdir@
  250. dvidir = @dvidir@
  251. exec_prefix = @exec_prefix@
  252. host = @host@
  253. host_alias = @host_alias@
  254. host_cpu = @host_cpu@
  255. host_os = @host_os@
  256. host_vendor = @host_vendor@
  257. htmldir = @htmldir@
  258. includedir = @includedir@
  259. infodir = @infodir@
  260. install_sh = @install_sh@
  261. libdir = @libdir@
  262. libexecdir = @libexecdir@
  263. localedir = @localedir@
  264. localstatedir = @localstatedir@
  265. mandir = @mandir@
  266. mkdir_p = @mkdir_p@
  267. oldincludedir = @oldincludedir@
  268. pdfdir = @pdfdir@
  269. prefix = @prefix@
  270. program_transform_name = @program_transform_name@
  271. psdir = @psdir@
  272. sbindir = @sbindir@
  273. sharedstatedir = @sharedstatedir@
  274. srcdir = @srcdir@
  275. sysconfdir = @sysconfdir@
  276. target_alias = @target_alias@
  277. top_build_prefix = @top_build_prefix@
  278. top_builddir = @top_builddir@
  279. top_srcdir = @top_srcdir@
  280. INCLUDES = \
  281. -Ikomat -Ikofola -Itmp -Iage/graph -Iage/include -Iage/support -Iage/utils -Igenerator
  282. AM_CFLAGS = \
  283. -D_DEBUG -fpermissive\
  284. -Wall\
  285. -g
  286. AM_CXXFLAGS = \
  287. -D_DEBUG -fpermissive\
  288. -Wall\
  289. -g
  290. berusky2_SOURCES = \
  291. kofola/3D_graphic.cpp\
  292. kofola/3D_graphic.h\
  293. kofola/3D_menus.cpp\
  294. kofola/3D_menus.h\
  295. kofola/3d_math.cpp\
  296. kofola/3d_math.h\
  297. kofola/Apak.cpp\
  298. kofola/Apak.h\
  299. kofola/Apakio.cpp\
  300. kofola/Bind.cpp\
  301. kofola/Bind.h\
  302. kofola/Camera.cpp\
  303. kofola/Comics.cpp\
  304. kofola/Comics.h\
  305. kofola/Command.cpp\
  306. kofola/Command.h\
  307. kofola/Dda.cpp\
  308. kofola/Dda.h\
  309. kofola/Demo.cpp\
  310. kofola/Demo.h\
  311. kofola/Init.cpp\
  312. kofola/Menu.cpp\
  313. kofola/Menu.h\
  314. kofola/Menu2.cpp\
  315. kofola/Menu2.h\
  316. kofola/Object.h\
  317. kofola/Setup.h\
  318. kofola/Tools.cpp\
  319. kofola/Tools.h\
  320. kofola/animend_functions.cpp\
  321. kofola/animend_functions.h\
  322. kofola/apak_types.h\
  323. kofola/apakdir.cpp\
  324. kofola/apakfind.cpp\
  325. kofola/apakstream.cpp\
  326. kofola/camera.h\
  327. kofola/codec.h\
  328. kofola/config_types.h\
  329. kofola/controls.cpp\
  330. kofola/controls.h\
  331. kofola/controls3d.cpp\
  332. kofola/controls3d.h\
  333. kofola/credits.cpp\
  334. kofola/credits.h\
  335. kofola/font.cpp\
  336. kofola/font.h\
  337. kofola/font3d.cpp\
  338. kofola/font3d.h\
  339. kofola/game_init.cpp\
  340. kofola/game_init.h\
  341. kofola/game_logic.cpp\
  342. kofola/game_logic.h\
  343. kofola/game_main.cpp\
  344. kofola/game_main.h\
  345. kofola/grammar.cpp\
  346. kofola/grammar.h\
  347. kofola/init.h\
  348. kofola/level_environment.h\
  349. kofola/load_level.cpp\
  350. kofola/load_level.h\
  351. kofola/menu_def.h\
  352. kofola/menu_script.cpp\
  353. kofola/menu_script.h\
  354. kofola/profiles.cpp\
  355. kofola/profiles.h\
  356. kofola/secure.h\
  357. kofola/setup.cpp\
  358. kofola/square_cut.cpp\
  359. kofola/square_cut.h\
  360. kofola/trigers.cpp\
  361. kofola/trigers.h\
  362. kofola/volume.cpp\
  363. kofola/volume.h\
  364. kofola/water.cpp\
  365. kofola/water.h\
  366. komat/3d_all.h\
  367. komat/3d_typy.h\
  368. komat/3dinterface.cpp\
  369. komat/3dinterface.h\
  370. komat/Berusky3d.cpp\
  371. komat/Berusky3d.h\
  372. komat/Berusky3d_castice.cpp\
  373. komat/Berusky3d_castice.h\
  374. komat/Berusky3d_castice2.h\
  375. komat/Berusky3d_ini.cpp\
  376. komat/Berusky3d_ini.h\
  377. komat/Berusky3d_kamery.cpp\
  378. komat/Berusky3d_kamery.h\
  379. komat/Berusky3d_kofola2d.cpp\
  380. komat/Berusky3d_kofola2d.h\
  381. komat/Berusky3d_kofola_interface.cpp\
  382. komat/Berusky3d_kofola_interface.h\
  383. komat/Berusky3d_light.cpp\
  384. komat/Berusky3d_light.h\
  385. komat/Berusky3d_load.cpp\
  386. komat/Berusky3d_load.h\
  387. komat/Berusky3d_render.cpp\
  388. komat/Berusky3d_render.h\
  389. komat/Berusky_universal.h\
  390. komat/Bmp.cpp\
  391. komat/Bmp.h\
  392. komat/Ddx.h\
  393. komat/Di.cpp\
  394. komat/Di.h\
  395. komat/Load.cpp\
  396. komat/Load.h\
  397. komat/Load_chunks.cpp\
  398. komat/Load_chunks.h\
  399. komat/Load_out.cpp\
  400. komat/Load_out.h\
  401. komat/NvTriStrip.h\
  402. komat/Tga.cpp\
  403. komat/Tga.h\
  404. komat/dxtlib.h\
  405. komat/kfile.h\
  406. komat/mmalloc.h\
  407. komat/mss.h\
  408. komat/strip.cpp\
  409. komat/strip.h\
  410. komat/zlib_io.h\
  411. tmp/compat.cpp\
  412. tmp/compat.h\
  413. kofola/2D_graphic.cpp\
  414. kofola/2D_graphic.h\
  415. age/graph/aabb.cpp\
  416. age/graph/aabb.h\
  417. age/graph/age.cpp\
  418. age/graph/age.h\
  419. age/graph/alpha.cpp\
  420. age/graph/alpha.h\
  421. age/graph/animation.cpp\
  422. age/graph/animation.h\
  423. age/graph/animation_time.cpp\
  424. age/graph/animation_time.h\
  425. age/graph/animation_track.cpp\
  426. age/graph/animation_track.h\
  427. age/graph/animation_track_bezier.cpp\
  428. age/graph/animation_track_bezier.h\
  429. age/graph/animation_track_linear.cpp\
  430. age/graph/animation_track_linear.h\
  431. age/graph/bitmap.cpp\
  432. age/graph/bitmap.h\
  433. age/graph/box.cpp\
  434. age/graph/box.h\
  435. age/graph/camera.cpp\
  436. age/graph/camera.h\
  437. age/graph/camera_interface.cpp\
  438. age/graph/camera_interface.h\
  439. age/graph/color.cpp\
  440. age/graph/color.h\
  441. age/graph/color_helpers.h\
  442. age/graph/color_hsv.cpp\
  443. age/graph/color_hsv.h\
  444. age/graph/color_operators.h\
  445. age/graph/draw.cpp\
  446. age/graph/draw.h\
  447. age/graph/ferguson.cpp\
  448. age/graph/ferguson.h\
  449. age/graph/gext.cpp\
  450. age/graph/gext.h\
  451. age/graph/glwrapper.cpp\
  452. age/graph/glwrapper.h\
  453. age/graph/gpipe.cpp\
  454. age/graph/gpipe.h\
  455. age/graph/graph3d.cpp\
  456. age/graph/graph3d.h\
  457. age/graph/intersect.cpp\
  458. age/graph/intersect.h\
  459. age/graph/lighting.cpp\
  460. age/graph/lighting.h\
  461. age/graph/material.cpp\
  462. age/graph/material.h\
  463. age/graph/material_texture.cpp\
  464. age/graph/material_texture.h\
  465. age/graph/matrix.cpp\
  466. age/graph/matrix.h\
  467. age/graph/matrix_animated.cpp\
  468. age/graph/matrix_animated.h\
  469. age/graph/matrix_notified.cpp\
  470. age/graph/matrix_notified.h\
  471. age/graph/mesh.cpp\
  472. age/graph/mesh.h\
  473. age/graph/normals.cpp\
  474. age/graph/normals.h\
  475. age/graph/obb.cpp\
  476. age/graph/obb.h\
  477. age/graph/object_base.cpp\
  478. age/graph/object_base.h\
  479. age/graph/object_box.cpp\
  480. age/graph/object_box.h\
  481. age/graph/object_geometry.cpp\
  482. age/graph/object_geometry.h\
  483. age/graph/object_hierarchy.cpp\
  484. age/graph/object_hierarchy.h\
  485. age/graph/object_list.cpp\
  486. age/graph/object_list.h\
  487. age/graph/object_mark.h\
  488. age/graph/object_name.h\
  489. age/graph/object_render_list.cpp\
  490. age/graph/object_render_list.h\
  491. age/graph/object_scene.cpp\
  492. age/graph/object_scene.h\
  493. age/graph/object_select.h\
  494. age/graph/object_transformation.cpp\
  495. age/graph/object_transformation.h\
  496. age/graph/object_world.cpp\
  497. age/graph/object_world.h\
  498. age/graph/polar.cpp\
  499. age/graph/polar.h\
  500. age/graph/print.cpp\
  501. age/graph/print.h\
  502. age/graph/quat.h\
  503. age/graph/scene.cpp\
  504. age/graph/scene.h\
  505. age/graph/scene_import_3ds.cpp\
  506. age/graph/scene_import_3ds.h\
  507. age/graph/scene_import_b2m.cpp\
  508. age/graph/scene_import_b2m.h\
  509. age/graph/scene_import_txt.cpp\
  510. age/graph/scene_import_txt.h\
  511. age/graph/scene_load.cpp\
  512. age/graph/scene_load.h\
  513. age/graph/scene_reference.h\
  514. age/graph/selection.cpp\
  515. age/graph/selection.h\
  516. age/graph/surface.cpp\
  517. age/graph/surface.h\
  518. age/graph/surface_height.cpp\
  519. age/graph/surface_height.h\
  520. age/graph/surface_mask.cpp\
  521. age/graph/surface_mask.h\
  522. age/graph/surface_sdl.cpp\
  523. age/graph/surface_sdl.h\
  524. age/graph/surface_sw.cpp\
  525. age/graph/surface_sw.h\
  526. age/graph/texture_func.cpp\
  527. age/graph/texture_func.h\
  528. age/graph/texture_unit.cpp\
  529. age/graph/texture_unit.h\
  530. age/graph/triangle.cpp\
  531. age/graph/triangle.h\
  532. age/graph/vector.cpp\
  533. age/graph/vector.h\
  534. age/graph/vector_operators.h\
  535. age/graph/vertex_arrays.cpp\
  536. age/graph/vertex_arrays.h\
  537. age/graph/world_interface.cpp\
  538. age/graph/world_interface.h\
  539. age/include/compatibility.h\
  540. age/include/defs.h\
  541. age/include/defs_config.h\
  542. age/include/floats.h\
  543. age/include/opengl.h\
  544. age/include/typ.h\
  545. age/include/typ_graph.h\
  546. age/support/age_main.cpp\
  547. age/support/age_main.h\
  548. age/support/events.cpp\
  549. age/support/events.h\
  550. age/support/events_types.h\
  551. age/support/input.cpp\
  552. age/support/input.h\
  553. age/support/timer.cpp\
  554. age/support/timer.h\
  555. age/utils/array.h\
  556. age/utils/barray.h\
  557. age/utils/btree.h\
  558. age/utils/change.cpp\
  559. age/utils/change.h\
  560. age/utils/data_file.cpp\
  561. age/utils/data_file.h\
  562. age/utils/flag.h\
  563. age/utils/ini.cpp\
  564. age/utils/ini.h\
  565. age/utils/llist.h\
  566. age/utils/llist_named.h\
  567. age/utils/lock.h\
  568. age/utils/log.cpp\
  569. age/utils/log.h\
  570. age/utils/mem_alloc.cpp\
  571. age/utils/mem_alloc.h\
  572. age/utils/mtree.cpp\
  573. age/utils/mtree.h\
  574. age/utils/mtree_named.h\
  575. age/utils/stack.h\
  576. age/utils/types.h\
  577. age/utils/utils.cpp\
  578. age/utils/utils.h\
  579. kofola/animationk.cpp\
  580. kofola/animationk.h\
  581. generator/generator_random.cpp\
  582. generator/generator_random.h\
  583. komat/Ddx.cpp\
  584. komat/kfile.cpp\
  585. komat/Mat3d.h\
  586. komat/3dmath.h\
  587. komat/3dproject.h\
  588. komat/Keyframe.h\
  589. komat/Quat.h\
  590. komat/Berusky3d_animace.cpp\
  591. komat/Berusky3d_animace.h\
  592. komat/3dmath.cpp\
  593. komat/3dproject.cpp\
  594. komat/Mat3d.cpp\
  595. komat/Keyframe.cpp\
  596. komat/Texture.cpp\
  597. komat/Texture.h\
  598. komat/Texture_import.cpp\
  599. komat/Texture_import.h\
  600. komat/obbo.cpp\
  601. komat/obbo.h\
  602. komat/Kdtree.cpp\
  603. komat/Kdtree.h\
  604. komat/Matrix.h\
  605. komat/Vektor.h\
  606. kofola/ambient_sounds.h
  607. berusky2_LDFLAGS =
  608. berusky2_LDADD =
  609. all: all-am
  610. .SUFFIXES:
  611. .SUFFIXES: .cpp .lo .o .obj
  612. $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
  613. @for dep in $?; do \
  614. case '$(am__configure_deps)' in \
  615. *$$dep*) \
  616. ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
  617. && { if test -f $@; then exit 0; else break; fi; }; \
  618. exit 1;; \
  619. esac; \
  620. done; \
  621. echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
  622. $(am__cd) $(top_srcdir) && \
  623. $(AUTOMAKE) --gnu src/Makefile
  624. .PRECIOUS: Makefile
  625. Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  626. @case '$?' in \
  627. *config.status*) \
  628. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
  629. *) \
  630. echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
  631. cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
  632. esac;
  633. $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
  634. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  635. $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
  636. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  637. $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  638. cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  639. $(am__aclocal_m4_deps):
  640. install-binPROGRAMS: $(bin_PROGRAMS)
  641. @$(NORMAL_INSTALL)
  642. test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
  643. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  644. for p in $$list; do echo "$$p $$p"; done | \
  645. sed 's/$(EXEEXT)$$//' | \
  646. while read p p1; do if test -f $$p || test -f $$p1; \
  647. then echo "$$p"; echo "$$p"; else :; fi; \
  648. done | \
  649. sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
  650. -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
  651. sed 'N;N;N;s,\n, ,g' | \
  652. $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
  653. { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
  654. if ($$2 == $$4) files[d] = files[d] " " $$1; \
  655. else { print "f", $$3 "/" $$4, $$1; } } \
  656. END { for (d in files) print "f", d, files[d] }' | \
  657. while read type dir files; do \
  658. if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
  659. test -z "$$files" || { \
  660. echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
  661. $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
  662. } \
  663. ; done
  664. uninstall-binPROGRAMS:
  665. @$(NORMAL_UNINSTALL)
  666. @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
  667. files=`for p in $$list; do echo "$$p"; done | \
  668. sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
  669. -e 's/$$/$(EXEEXT)/' `; \
  670. test -n "$$list" || exit 0; \
  671. echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
  672. cd "$(DESTDIR)$(bindir)" && rm -f $$files
  673. clean-binPROGRAMS:
  674. @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
  675. echo " rm -f" $$list; \
  676. rm -f $$list || exit $$?; \
  677. test -n "$(EXEEXT)" || exit 0; \
  678. list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
  679. echo " rm -f" $$list; \
  680. rm -f $$list
  681. berusky2$(EXEEXT): $(berusky2_OBJECTS) $(berusky2_DEPENDENCIES)
  682. @rm -f berusky2$(EXEEXT)
  683. $(berusky2_LINK) $(berusky2_OBJECTS) $(berusky2_LDADD) $(LIBS)
  684. mostlyclean-compile:
  685. -rm -f *.$(OBJEXT)
  686. distclean-compile:
  687. -rm -f *.tab.c
  688. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/2D_graphic.Po@am__quote@
  689. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3D_graphic.Po@am__quote@
  690. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3D_menus.Po@am__quote@
  691. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3d_math.Po@am__quote@
  692. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3dinterface.Po@am__quote@
  693. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3dmath.Po@am__quote@
  694. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/3dproject.Po@am__quote@
  695. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Apak.Po@am__quote@
  696. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Apakio.Po@am__quote@
  697. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d.Po@am__quote@
  698. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_animace.Po@am__quote@
  699. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_castice.Po@am__quote@
  700. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_ini.Po@am__quote@
  701. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_kamery.Po@am__quote@
  702. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_kofola2d.Po@am__quote@
  703. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_kofola_interface.Po@am__quote@
  704. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_light.Po@am__quote@
  705. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_load.Po@am__quote@
  706. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Berusky3d_render.Po@am__quote@
  707. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Bind.Po@am__quote@
  708. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Bmp.Po@am__quote@
  709. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Camera.Po@am__quote@
  710. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Comics.Po@am__quote@
  711. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Command.Po@am__quote@
  712. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Dda.Po@am__quote@
  713. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Ddx.Po@am__quote@
  714. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Demo.Po@am__quote@
  715. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Di.Po@am__quote@
  716. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Init.Po@am__quote@
  717. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Kdtree.Po@am__quote@
  718. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Keyframe.Po@am__quote@
  719. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Load.Po@am__quote@
  720. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Load_chunks.Po@am__quote@
  721. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Load_out.Po@am__quote@
  722. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Mat3d.Po@am__quote@
  723. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Menu.Po@am__quote@
  724. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Menu2.Po@am__quote@
  725. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Texture.Po@am__quote@
  726. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Texture_import.Po@am__quote@
  727. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Tga.Po@am__quote@
  728. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Tools.Po@am__quote@
  729. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/aabb.Po@am__quote@
  730. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/age.Po@am__quote@
  731. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/age_main.Po@am__quote@
  732. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alpha.Po@am__quote@
  733. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation.Po@am__quote@
  734. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation_time.Po@am__quote@
  735. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation_track.Po@am__quote@
  736. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation_track_bezier.Po@am__quote@
  737. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation_track_linear.Po@am__quote@
  738. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animationk.Po@am__quote@
  739. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animend_functions.Po@am__quote@
  740. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apakdir.Po@am__quote@
  741. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apakfind.Po@am__quote@
  742. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/apakstream.Po@am__quote@
  743. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitmap.Po@am__quote@
  744. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/box.Po@am__quote@
  745. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/camera.Po@am__quote@
  746. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/camera_interface.Po@am__quote@
  747. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/change.Po@am__quote@
  748. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/color.Po@am__quote@
  749. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/color_hsv.Po@am__quote@
  750. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compat.Po@am__quote@
  751. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/controls.Po@am__quote@
  752. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/controls3d.Po@am__quote@
  753. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/credits.Po@am__quote@
  754. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/data_file.Po@am__quote@
  755. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/draw.Po@am__quote@
  756. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/events.Po@am__quote@
  757. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ferguson.Po@am__quote@
  758. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/font.Po@am__quote@
  759. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/font3d.Po@am__quote@
  760. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/game_init.Po@am__quote@
  761. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/game_logic.Po@am__quote@
  762. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/game_main.Po@am__quote@
  763. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generator_random.Po@am__quote@
  764. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gext.Po@am__quote@
  765. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glwrapper.Po@am__quote@
  766. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gpipe.Po@am__quote@
  767. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/grammar.Po@am__quote@
  768. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/graph3d.Po@am__quote@
  769. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ini.Po@am__quote@
  770. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/input.Po@am__quote@
  771. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/intersect.Po@am__quote@
  772. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/kfile.Po@am__quote@
  773. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lighting.Po@am__quote@
  774. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/load_level.Po@am__quote@
  775. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/log.Po@am__quote@
  776. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/material.Po@am__quote@
  777. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/material_texture.Po@am__quote@
  778. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix.Po@am__quote@
  779. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix_animated.Po@am__quote@
  780. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/matrix_notified.Po@am__quote@
  781. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mem_alloc.Po@am__quote@
  782. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menu_script.Po@am__quote@
  783. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mesh.Po@am__quote@
  784. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mtree.Po@am__quote@
  785. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/normals.Po@am__quote@
  786. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/obb.Po@am__quote@
  787. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/obbo.Po@am__quote@
  788. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_base.Po@am__quote@
  789. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_box.Po@am__quote@
  790. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_geometry.Po@am__quote@
  791. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_hierarchy.Po@am__quote@
  792. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_list.Po@am__quote@
  793. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_render_list.Po@am__quote@
  794. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_scene.Po@am__quote@
  795. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_transformation.Po@am__quote@
  796. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/object_world.Po@am__quote@
  797. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/polar.Po@am__quote@
  798. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print.Po@am__quote@
  799. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profiles.Po@am__quote@
  800. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene.Po@am__quote@
  801. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene_import_3ds.Po@am__quote@
  802. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene_import_b2m.Po@am__quote@
  803. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene_import_txt.Po@am__quote@
  804. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/scene_load.Po@am__quote@
  805. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/selection.Po@am__quote@
  806. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/setup.Po@am__quote@
  807. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/square_cut.Po@am__quote@
  808. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strip.Po@am__quote@
  809. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/surface.Po@am__quote@
  810. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/surface_height.Po@am__quote@
  811. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/surface_mask.Po@am__quote@
  812. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/surface_sdl.Po@am__quote@
  813. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/surface_sw.Po@am__quote@
  814. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/texture_func.Po@am__quote@
  815. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/texture_unit.Po@am__quote@
  816. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/timer.Po@am__quote@
  817. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/triangle.Po@am__quote@
  818. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/trigers.Po@am__quote@
  819. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@
  820. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Po@am__quote@
  821. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vertex_arrays.Po@am__quote@
  822. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/volume.Po@am__quote@
  823. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/water.Po@am__quote@
  824. @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/world_interface.Po@am__quote@
  825. .cpp.o:
  826. @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  827. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  828. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  829. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  830. @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
  831. .cpp.obj:
  832. @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
  833. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
  834. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
  835. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  836. @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
  837. .cpp.lo:
  838. @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
  839. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
  840. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  841. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  842. @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
  843. 3D_graphic.o: kofola/3D_graphic.cpp
  844. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3D_graphic.o -MD -MP -MF $(DEPDIR)/3D_graphic.Tpo -c -o 3D_graphic.o `test -f 'kofola/3D_graphic.cpp' || echo '$(srcdir)/'`kofola/3D_graphic.cpp
  845. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3D_graphic.Tpo $(DEPDIR)/3D_graphic.Po
  846. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3D_graphic.cpp' object='3D_graphic.o' libtool=no @AMDEPBACKSLASH@
  847. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  848. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3D_graphic.o `test -f 'kofola/3D_graphic.cpp' || echo '$(srcdir)/'`kofola/3D_graphic.cpp
  849. 3D_graphic.obj: kofola/3D_graphic.cpp
  850. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3D_graphic.obj -MD -MP -MF $(DEPDIR)/3D_graphic.Tpo -c -o 3D_graphic.obj `if test -f 'kofola/3D_graphic.cpp'; then $(CYGPATH_W) 'kofola/3D_graphic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3D_graphic.cpp'; fi`
  851. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3D_graphic.Tpo $(DEPDIR)/3D_graphic.Po
  852. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3D_graphic.cpp' object='3D_graphic.obj' libtool=no @AMDEPBACKSLASH@
  853. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  854. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3D_graphic.obj `if test -f 'kofola/3D_graphic.cpp'; then $(CYGPATH_W) 'kofola/3D_graphic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3D_graphic.cpp'; fi`
  855. 3D_menus.o: kofola/3D_menus.cpp
  856. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3D_menus.o -MD -MP -MF $(DEPDIR)/3D_menus.Tpo -c -o 3D_menus.o `test -f 'kofola/3D_menus.cpp' || echo '$(srcdir)/'`kofola/3D_menus.cpp
  857. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3D_menus.Tpo $(DEPDIR)/3D_menus.Po
  858. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3D_menus.cpp' object='3D_menus.o' libtool=no @AMDEPBACKSLASH@
  859. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  860. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3D_menus.o `test -f 'kofola/3D_menus.cpp' || echo '$(srcdir)/'`kofola/3D_menus.cpp
  861. 3D_menus.obj: kofola/3D_menus.cpp
  862. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3D_menus.obj -MD -MP -MF $(DEPDIR)/3D_menus.Tpo -c -o 3D_menus.obj `if test -f 'kofola/3D_menus.cpp'; then $(CYGPATH_W) 'kofola/3D_menus.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3D_menus.cpp'; fi`
  863. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3D_menus.Tpo $(DEPDIR)/3D_menus.Po
  864. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3D_menus.cpp' object='3D_menus.obj' libtool=no @AMDEPBACKSLASH@
  865. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  866. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3D_menus.obj `if test -f 'kofola/3D_menus.cpp'; then $(CYGPATH_W) 'kofola/3D_menus.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3D_menus.cpp'; fi`
  867. 3d_math.o: kofola/3d_math.cpp
  868. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3d_math.o -MD -MP -MF $(DEPDIR)/3d_math.Tpo -c -o 3d_math.o `test -f 'kofola/3d_math.cpp' || echo '$(srcdir)/'`kofola/3d_math.cpp
  869. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3d_math.Tpo $(DEPDIR)/3d_math.Po
  870. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3d_math.cpp' object='3d_math.o' libtool=no @AMDEPBACKSLASH@
  871. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  872. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3d_math.o `test -f 'kofola/3d_math.cpp' || echo '$(srcdir)/'`kofola/3d_math.cpp
  873. 3d_math.obj: kofola/3d_math.cpp
  874. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3d_math.obj -MD -MP -MF $(DEPDIR)/3d_math.Tpo -c -o 3d_math.obj `if test -f 'kofola/3d_math.cpp'; then $(CYGPATH_W) 'kofola/3d_math.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3d_math.cpp'; fi`
  875. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3d_math.Tpo $(DEPDIR)/3d_math.Po
  876. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/3d_math.cpp' object='3d_math.obj' libtool=no @AMDEPBACKSLASH@
  877. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  878. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3d_math.obj `if test -f 'kofola/3d_math.cpp'; then $(CYGPATH_W) 'kofola/3d_math.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/3d_math.cpp'; fi`
  879. Apak.o: kofola/Apak.cpp
  880. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Apak.o -MD -MP -MF $(DEPDIR)/Apak.Tpo -c -o Apak.o `test -f 'kofola/Apak.cpp' || echo '$(srcdir)/'`kofola/Apak.cpp
  881. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Apak.Tpo $(DEPDIR)/Apak.Po
  882. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Apak.cpp' object='Apak.o' libtool=no @AMDEPBACKSLASH@
  883. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  884. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Apak.o `test -f 'kofola/Apak.cpp' || echo '$(srcdir)/'`kofola/Apak.cpp
  885. Apak.obj: kofola/Apak.cpp
  886. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Apak.obj -MD -MP -MF $(DEPDIR)/Apak.Tpo -c -o Apak.obj `if test -f 'kofola/Apak.cpp'; then $(CYGPATH_W) 'kofola/Apak.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Apak.cpp'; fi`
  887. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Apak.Tpo $(DEPDIR)/Apak.Po
  888. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Apak.cpp' object='Apak.obj' libtool=no @AMDEPBACKSLASH@
  889. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  890. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Apak.obj `if test -f 'kofola/Apak.cpp'; then $(CYGPATH_W) 'kofola/Apak.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Apak.cpp'; fi`
  891. Apakio.o: kofola/Apakio.cpp
  892. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Apakio.o -MD -MP -MF $(DEPDIR)/Apakio.Tpo -c -o Apakio.o `test -f 'kofola/Apakio.cpp' || echo '$(srcdir)/'`kofola/Apakio.cpp
  893. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Apakio.Tpo $(DEPDIR)/Apakio.Po
  894. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Apakio.cpp' object='Apakio.o' libtool=no @AMDEPBACKSLASH@
  895. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  896. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Apakio.o `test -f 'kofola/Apakio.cpp' || echo '$(srcdir)/'`kofola/Apakio.cpp
  897. Apakio.obj: kofola/Apakio.cpp
  898. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Apakio.obj -MD -MP -MF $(DEPDIR)/Apakio.Tpo -c -o Apakio.obj `if test -f 'kofola/Apakio.cpp'; then $(CYGPATH_W) 'kofola/Apakio.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Apakio.cpp'; fi`
  899. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Apakio.Tpo $(DEPDIR)/Apakio.Po
  900. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Apakio.cpp' object='Apakio.obj' libtool=no @AMDEPBACKSLASH@
  901. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  902. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Apakio.obj `if test -f 'kofola/Apakio.cpp'; then $(CYGPATH_W) 'kofola/Apakio.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Apakio.cpp'; fi`
  903. Bind.o: kofola/Bind.cpp
  904. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Bind.o -MD -MP -MF $(DEPDIR)/Bind.Tpo -c -o Bind.o `test -f 'kofola/Bind.cpp' || echo '$(srcdir)/'`kofola/Bind.cpp
  905. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Bind.Tpo $(DEPDIR)/Bind.Po
  906. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Bind.cpp' object='Bind.o' libtool=no @AMDEPBACKSLASH@
  907. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  908. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Bind.o `test -f 'kofola/Bind.cpp' || echo '$(srcdir)/'`kofola/Bind.cpp
  909. Bind.obj: kofola/Bind.cpp
  910. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Bind.obj -MD -MP -MF $(DEPDIR)/Bind.Tpo -c -o Bind.obj `if test -f 'kofola/Bind.cpp'; then $(CYGPATH_W) 'kofola/Bind.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Bind.cpp'; fi`
  911. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Bind.Tpo $(DEPDIR)/Bind.Po
  912. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Bind.cpp' object='Bind.obj' libtool=no @AMDEPBACKSLASH@
  913. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  914. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Bind.obj `if test -f 'kofola/Bind.cpp'; then $(CYGPATH_W) 'kofola/Bind.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Bind.cpp'; fi`
  915. Camera.o: kofola/Camera.cpp
  916. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Camera.o -MD -MP -MF $(DEPDIR)/Camera.Tpo -c -o Camera.o `test -f 'kofola/Camera.cpp' || echo '$(srcdir)/'`kofola/Camera.cpp
  917. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Camera.Tpo $(DEPDIR)/Camera.Po
  918. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Camera.cpp' object='Camera.o' libtool=no @AMDEPBACKSLASH@
  919. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  920. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Camera.o `test -f 'kofola/Camera.cpp' || echo '$(srcdir)/'`kofola/Camera.cpp
  921. Camera.obj: kofola/Camera.cpp
  922. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Camera.obj -MD -MP -MF $(DEPDIR)/Camera.Tpo -c -o Camera.obj `if test -f 'kofola/Camera.cpp'; then $(CYGPATH_W) 'kofola/Camera.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Camera.cpp'; fi`
  923. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Camera.Tpo $(DEPDIR)/Camera.Po
  924. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Camera.cpp' object='Camera.obj' libtool=no @AMDEPBACKSLASH@
  925. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  926. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Camera.obj `if test -f 'kofola/Camera.cpp'; then $(CYGPATH_W) 'kofola/Camera.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Camera.cpp'; fi`
  927. Comics.o: kofola/Comics.cpp
  928. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Comics.o -MD -MP -MF $(DEPDIR)/Comics.Tpo -c -o Comics.o `test -f 'kofola/Comics.cpp' || echo '$(srcdir)/'`kofola/Comics.cpp
  929. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Comics.Tpo $(DEPDIR)/Comics.Po
  930. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Comics.cpp' object='Comics.o' libtool=no @AMDEPBACKSLASH@
  931. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  932. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Comics.o `test -f 'kofola/Comics.cpp' || echo '$(srcdir)/'`kofola/Comics.cpp
  933. Comics.obj: kofola/Comics.cpp
  934. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Comics.obj -MD -MP -MF $(DEPDIR)/Comics.Tpo -c -o Comics.obj `if test -f 'kofola/Comics.cpp'; then $(CYGPATH_W) 'kofola/Comics.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Comics.cpp'; fi`
  935. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Comics.Tpo $(DEPDIR)/Comics.Po
  936. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Comics.cpp' object='Comics.obj' libtool=no @AMDEPBACKSLASH@
  937. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  938. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Comics.obj `if test -f 'kofola/Comics.cpp'; then $(CYGPATH_W) 'kofola/Comics.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Comics.cpp'; fi`
  939. Command.o: kofola/Command.cpp
  940. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Command.o -MD -MP -MF $(DEPDIR)/Command.Tpo -c -o Command.o `test -f 'kofola/Command.cpp' || echo '$(srcdir)/'`kofola/Command.cpp
  941. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Command.Tpo $(DEPDIR)/Command.Po
  942. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Command.cpp' object='Command.o' libtool=no @AMDEPBACKSLASH@
  943. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  944. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Command.o `test -f 'kofola/Command.cpp' || echo '$(srcdir)/'`kofola/Command.cpp
  945. Command.obj: kofola/Command.cpp
  946. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Command.obj -MD -MP -MF $(DEPDIR)/Command.Tpo -c -o Command.obj `if test -f 'kofola/Command.cpp'; then $(CYGPATH_W) 'kofola/Command.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Command.cpp'; fi`
  947. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Command.Tpo $(DEPDIR)/Command.Po
  948. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Command.cpp' object='Command.obj' libtool=no @AMDEPBACKSLASH@
  949. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  950. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Command.obj `if test -f 'kofola/Command.cpp'; then $(CYGPATH_W) 'kofola/Command.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Command.cpp'; fi`
  951. Dda.o: kofola/Dda.cpp
  952. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Dda.o -MD -MP -MF $(DEPDIR)/Dda.Tpo -c -o Dda.o `test -f 'kofola/Dda.cpp' || echo '$(srcdir)/'`kofola/Dda.cpp
  953. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Dda.Tpo $(DEPDIR)/Dda.Po
  954. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Dda.cpp' object='Dda.o' libtool=no @AMDEPBACKSLASH@
  955. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  956. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Dda.o `test -f 'kofola/Dda.cpp' || echo '$(srcdir)/'`kofola/Dda.cpp
  957. Dda.obj: kofola/Dda.cpp
  958. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Dda.obj -MD -MP -MF $(DEPDIR)/Dda.Tpo -c -o Dda.obj `if test -f 'kofola/Dda.cpp'; then $(CYGPATH_W) 'kofola/Dda.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Dda.cpp'; fi`
  959. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Dda.Tpo $(DEPDIR)/Dda.Po
  960. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Dda.cpp' object='Dda.obj' libtool=no @AMDEPBACKSLASH@
  961. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  962. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Dda.obj `if test -f 'kofola/Dda.cpp'; then $(CYGPATH_W) 'kofola/Dda.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Dda.cpp'; fi`
  963. Demo.o: kofola/Demo.cpp
  964. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Demo.o -MD -MP -MF $(DEPDIR)/Demo.Tpo -c -o Demo.o `test -f 'kofola/Demo.cpp' || echo '$(srcdir)/'`kofola/Demo.cpp
  965. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Demo.Tpo $(DEPDIR)/Demo.Po
  966. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Demo.cpp' object='Demo.o' libtool=no @AMDEPBACKSLASH@
  967. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  968. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Demo.o `test -f 'kofola/Demo.cpp' || echo '$(srcdir)/'`kofola/Demo.cpp
  969. Demo.obj: kofola/Demo.cpp
  970. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Demo.obj -MD -MP -MF $(DEPDIR)/Demo.Tpo -c -o Demo.obj `if test -f 'kofola/Demo.cpp'; then $(CYGPATH_W) 'kofola/Demo.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Demo.cpp'; fi`
  971. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Demo.Tpo $(DEPDIR)/Demo.Po
  972. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Demo.cpp' object='Demo.obj' libtool=no @AMDEPBACKSLASH@
  973. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  974. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Demo.obj `if test -f 'kofola/Demo.cpp'; then $(CYGPATH_W) 'kofola/Demo.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Demo.cpp'; fi`
  975. Init.o: kofola/Init.cpp
  976. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Init.o -MD -MP -MF $(DEPDIR)/Init.Tpo -c -o Init.o `test -f 'kofola/Init.cpp' || echo '$(srcdir)/'`kofola/Init.cpp
  977. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Init.Tpo $(DEPDIR)/Init.Po
  978. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Init.cpp' object='Init.o' libtool=no @AMDEPBACKSLASH@
  979. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  980. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Init.o `test -f 'kofola/Init.cpp' || echo '$(srcdir)/'`kofola/Init.cpp
  981. Init.obj: kofola/Init.cpp
  982. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Init.obj -MD -MP -MF $(DEPDIR)/Init.Tpo -c -o Init.obj `if test -f 'kofola/Init.cpp'; then $(CYGPATH_W) 'kofola/Init.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Init.cpp'; fi`
  983. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Init.Tpo $(DEPDIR)/Init.Po
  984. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Init.cpp' object='Init.obj' libtool=no @AMDEPBACKSLASH@
  985. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  986. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Init.obj `if test -f 'kofola/Init.cpp'; then $(CYGPATH_W) 'kofola/Init.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Init.cpp'; fi`
  987. Menu.o: kofola/Menu.cpp
  988. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Menu.o -MD -MP -MF $(DEPDIR)/Menu.Tpo -c -o Menu.o `test -f 'kofola/Menu.cpp' || echo '$(srcdir)/'`kofola/Menu.cpp
  989. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Menu.Tpo $(DEPDIR)/Menu.Po
  990. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Menu.cpp' object='Menu.o' libtool=no @AMDEPBACKSLASH@
  991. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  992. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Menu.o `test -f 'kofola/Menu.cpp' || echo '$(srcdir)/'`kofola/Menu.cpp
  993. Menu.obj: kofola/Menu.cpp
  994. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Menu.obj -MD -MP -MF $(DEPDIR)/Menu.Tpo -c -o Menu.obj `if test -f 'kofola/Menu.cpp'; then $(CYGPATH_W) 'kofola/Menu.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Menu.cpp'; fi`
  995. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Menu.Tpo $(DEPDIR)/Menu.Po
  996. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Menu.cpp' object='Menu.obj' libtool=no @AMDEPBACKSLASH@
  997. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  998. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Menu.obj `if test -f 'kofola/Menu.cpp'; then $(CYGPATH_W) 'kofola/Menu.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Menu.cpp'; fi`
  999. Menu2.o: kofola/Menu2.cpp
  1000. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Menu2.o -MD -MP -MF $(DEPDIR)/Menu2.Tpo -c -o Menu2.o `test -f 'kofola/Menu2.cpp' || echo '$(srcdir)/'`kofola/Menu2.cpp
  1001. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Menu2.Tpo $(DEPDIR)/Menu2.Po
  1002. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Menu2.cpp' object='Menu2.o' libtool=no @AMDEPBACKSLASH@
  1003. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1004. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Menu2.o `test -f 'kofola/Menu2.cpp' || echo '$(srcdir)/'`kofola/Menu2.cpp
  1005. Menu2.obj: kofola/Menu2.cpp
  1006. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Menu2.obj -MD -MP -MF $(DEPDIR)/Menu2.Tpo -c -o Menu2.obj `if test -f 'kofola/Menu2.cpp'; then $(CYGPATH_W) 'kofola/Menu2.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Menu2.cpp'; fi`
  1007. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Menu2.Tpo $(DEPDIR)/Menu2.Po
  1008. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Menu2.cpp' object='Menu2.obj' libtool=no @AMDEPBACKSLASH@
  1009. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1010. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Menu2.obj `if test -f 'kofola/Menu2.cpp'; then $(CYGPATH_W) 'kofola/Menu2.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Menu2.cpp'; fi`
  1011. Tools.o: kofola/Tools.cpp
  1012. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Tools.o -MD -MP -MF $(DEPDIR)/Tools.Tpo -c -o Tools.o `test -f 'kofola/Tools.cpp' || echo '$(srcdir)/'`kofola/Tools.cpp
  1013. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Tools.Tpo $(DEPDIR)/Tools.Po
  1014. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Tools.cpp' object='Tools.o' libtool=no @AMDEPBACKSLASH@
  1015. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1016. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Tools.o `test -f 'kofola/Tools.cpp' || echo '$(srcdir)/'`kofola/Tools.cpp
  1017. Tools.obj: kofola/Tools.cpp
  1018. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Tools.obj -MD -MP -MF $(DEPDIR)/Tools.Tpo -c -o Tools.obj `if test -f 'kofola/Tools.cpp'; then $(CYGPATH_W) 'kofola/Tools.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Tools.cpp'; fi`
  1019. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Tools.Tpo $(DEPDIR)/Tools.Po
  1020. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/Tools.cpp' object='Tools.obj' libtool=no @AMDEPBACKSLASH@
  1021. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1022. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Tools.obj `if test -f 'kofola/Tools.cpp'; then $(CYGPATH_W) 'kofola/Tools.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/Tools.cpp'; fi`
  1023. animend_functions.o: kofola/animend_functions.cpp
  1024. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animend_functions.o -MD -MP -MF $(DEPDIR)/animend_functions.Tpo -c -o animend_functions.o `test -f 'kofola/animend_functions.cpp' || echo '$(srcdir)/'`kofola/animend_functions.cpp
  1025. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animend_functions.Tpo $(DEPDIR)/animend_functions.Po
  1026. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/animend_functions.cpp' object='animend_functions.o' libtool=no @AMDEPBACKSLASH@
  1027. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1028. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animend_functions.o `test -f 'kofola/animend_functions.cpp' || echo '$(srcdir)/'`kofola/animend_functions.cpp
  1029. animend_functions.obj: kofola/animend_functions.cpp
  1030. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animend_functions.obj -MD -MP -MF $(DEPDIR)/animend_functions.Tpo -c -o animend_functions.obj `if test -f 'kofola/animend_functions.cpp'; then $(CYGPATH_W) 'kofola/animend_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/animend_functions.cpp'; fi`
  1031. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animend_functions.Tpo $(DEPDIR)/animend_functions.Po
  1032. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/animend_functions.cpp' object='animend_functions.obj' libtool=no @AMDEPBACKSLASH@
  1033. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1034. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animend_functions.obj `if test -f 'kofola/animend_functions.cpp'; then $(CYGPATH_W) 'kofola/animend_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/animend_functions.cpp'; fi`
  1035. apakdir.o: kofola/apakdir.cpp
  1036. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakdir.o -MD -MP -MF $(DEPDIR)/apakdir.Tpo -c -o apakdir.o `test -f 'kofola/apakdir.cpp' || echo '$(srcdir)/'`kofola/apakdir.cpp
  1037. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakdir.Tpo $(DEPDIR)/apakdir.Po
  1038. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakdir.cpp' object='apakdir.o' libtool=no @AMDEPBACKSLASH@
  1039. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1040. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakdir.o `test -f 'kofola/apakdir.cpp' || echo '$(srcdir)/'`kofola/apakdir.cpp
  1041. apakdir.obj: kofola/apakdir.cpp
  1042. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakdir.obj -MD -MP -MF $(DEPDIR)/apakdir.Tpo -c -o apakdir.obj `if test -f 'kofola/apakdir.cpp'; then $(CYGPATH_W) 'kofola/apakdir.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakdir.cpp'; fi`
  1043. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakdir.Tpo $(DEPDIR)/apakdir.Po
  1044. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakdir.cpp' object='apakdir.obj' libtool=no @AMDEPBACKSLASH@
  1045. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1046. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakdir.obj `if test -f 'kofola/apakdir.cpp'; then $(CYGPATH_W) 'kofola/apakdir.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakdir.cpp'; fi`
  1047. apakfind.o: kofola/apakfind.cpp
  1048. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakfind.o -MD -MP -MF $(DEPDIR)/apakfind.Tpo -c -o apakfind.o `test -f 'kofola/apakfind.cpp' || echo '$(srcdir)/'`kofola/apakfind.cpp
  1049. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakfind.Tpo $(DEPDIR)/apakfind.Po
  1050. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakfind.cpp' object='apakfind.o' libtool=no @AMDEPBACKSLASH@
  1051. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1052. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakfind.o `test -f 'kofola/apakfind.cpp' || echo '$(srcdir)/'`kofola/apakfind.cpp
  1053. apakfind.obj: kofola/apakfind.cpp
  1054. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakfind.obj -MD -MP -MF $(DEPDIR)/apakfind.Tpo -c -o apakfind.obj `if test -f 'kofola/apakfind.cpp'; then $(CYGPATH_W) 'kofola/apakfind.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakfind.cpp'; fi`
  1055. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakfind.Tpo $(DEPDIR)/apakfind.Po
  1056. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakfind.cpp' object='apakfind.obj' libtool=no @AMDEPBACKSLASH@
  1057. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1058. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakfind.obj `if test -f 'kofola/apakfind.cpp'; then $(CYGPATH_W) 'kofola/apakfind.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakfind.cpp'; fi`
  1059. apakstream.o: kofola/apakstream.cpp
  1060. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakstream.o -MD -MP -MF $(DEPDIR)/apakstream.Tpo -c -o apakstream.o `test -f 'kofola/apakstream.cpp' || echo '$(srcdir)/'`kofola/apakstream.cpp
  1061. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakstream.Tpo $(DEPDIR)/apakstream.Po
  1062. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakstream.cpp' object='apakstream.o' libtool=no @AMDEPBACKSLASH@
  1063. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1064. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakstream.o `test -f 'kofola/apakstream.cpp' || echo '$(srcdir)/'`kofola/apakstream.cpp
  1065. apakstream.obj: kofola/apakstream.cpp
  1066. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT apakstream.obj -MD -MP -MF $(DEPDIR)/apakstream.Tpo -c -o apakstream.obj `if test -f 'kofola/apakstream.cpp'; then $(CYGPATH_W) 'kofola/apakstream.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakstream.cpp'; fi`
  1067. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/apakstream.Tpo $(DEPDIR)/apakstream.Po
  1068. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/apakstream.cpp' object='apakstream.obj' libtool=no @AMDEPBACKSLASH@
  1069. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1070. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o apakstream.obj `if test -f 'kofola/apakstream.cpp'; then $(CYGPATH_W) 'kofola/apakstream.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/apakstream.cpp'; fi`
  1071. controls.o: kofola/controls.cpp
  1072. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controls.o -MD -MP -MF $(DEPDIR)/controls.Tpo -c -o controls.o `test -f 'kofola/controls.cpp' || echo '$(srcdir)/'`kofola/controls.cpp
  1073. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controls.Tpo $(DEPDIR)/controls.Po
  1074. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/controls.cpp' object='controls.o' libtool=no @AMDEPBACKSLASH@
  1075. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1076. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o controls.o `test -f 'kofola/controls.cpp' || echo '$(srcdir)/'`kofola/controls.cpp
  1077. controls.obj: kofola/controls.cpp
  1078. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controls.obj -MD -MP -MF $(DEPDIR)/controls.Tpo -c -o controls.obj `if test -f 'kofola/controls.cpp'; then $(CYGPATH_W) 'kofola/controls.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/controls.cpp'; fi`
  1079. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controls.Tpo $(DEPDIR)/controls.Po
  1080. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/controls.cpp' object='controls.obj' libtool=no @AMDEPBACKSLASH@
  1081. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1082. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o controls.obj `if test -f 'kofola/controls.cpp'; then $(CYGPATH_W) 'kofola/controls.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/controls.cpp'; fi`
  1083. controls3d.o: kofola/controls3d.cpp
  1084. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controls3d.o -MD -MP -MF $(DEPDIR)/controls3d.Tpo -c -o controls3d.o `test -f 'kofola/controls3d.cpp' || echo '$(srcdir)/'`kofola/controls3d.cpp
  1085. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controls3d.Tpo $(DEPDIR)/controls3d.Po
  1086. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/controls3d.cpp' object='controls3d.o' libtool=no @AMDEPBACKSLASH@
  1087. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1088. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o controls3d.o `test -f 'kofola/controls3d.cpp' || echo '$(srcdir)/'`kofola/controls3d.cpp
  1089. controls3d.obj: kofola/controls3d.cpp
  1090. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controls3d.obj -MD -MP -MF $(DEPDIR)/controls3d.Tpo -c -o controls3d.obj `if test -f 'kofola/controls3d.cpp'; then $(CYGPATH_W) 'kofola/controls3d.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/controls3d.cpp'; fi`
  1091. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controls3d.Tpo $(DEPDIR)/controls3d.Po
  1092. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/controls3d.cpp' object='controls3d.obj' libtool=no @AMDEPBACKSLASH@
  1093. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1094. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o controls3d.obj `if test -f 'kofola/controls3d.cpp'; then $(CYGPATH_W) 'kofola/controls3d.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/controls3d.cpp'; fi`
  1095. credits.o: kofola/credits.cpp
  1096. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT credits.o -MD -MP -MF $(DEPDIR)/credits.Tpo -c -o credits.o `test -f 'kofola/credits.cpp' || echo '$(srcdir)/'`kofola/credits.cpp
  1097. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/credits.Tpo $(DEPDIR)/credits.Po
  1098. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/credits.cpp' object='credits.o' libtool=no @AMDEPBACKSLASH@
  1099. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1100. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o credits.o `test -f 'kofola/credits.cpp' || echo '$(srcdir)/'`kofola/credits.cpp
  1101. credits.obj: kofola/credits.cpp
  1102. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT credits.obj -MD -MP -MF $(DEPDIR)/credits.Tpo -c -o credits.obj `if test -f 'kofola/credits.cpp'; then $(CYGPATH_W) 'kofola/credits.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/credits.cpp'; fi`
  1103. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/credits.Tpo $(DEPDIR)/credits.Po
  1104. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/credits.cpp' object='credits.obj' libtool=no @AMDEPBACKSLASH@
  1105. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1106. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o credits.obj `if test -f 'kofola/credits.cpp'; then $(CYGPATH_W) 'kofola/credits.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/credits.cpp'; fi`
  1107. font.o: kofola/font.cpp
  1108. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT font.o -MD -MP -MF $(DEPDIR)/font.Tpo -c -o font.o `test -f 'kofola/font.cpp' || echo '$(srcdir)/'`kofola/font.cpp
  1109. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/font.Tpo $(DEPDIR)/font.Po
  1110. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/font.cpp' object='font.o' libtool=no @AMDEPBACKSLASH@
  1111. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1112. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o font.o `test -f 'kofola/font.cpp' || echo '$(srcdir)/'`kofola/font.cpp
  1113. font.obj: kofola/font.cpp
  1114. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT font.obj -MD -MP -MF $(DEPDIR)/font.Tpo -c -o font.obj `if test -f 'kofola/font.cpp'; then $(CYGPATH_W) 'kofola/font.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/font.cpp'; fi`
  1115. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/font.Tpo $(DEPDIR)/font.Po
  1116. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/font.cpp' object='font.obj' libtool=no @AMDEPBACKSLASH@
  1117. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1118. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o font.obj `if test -f 'kofola/font.cpp'; then $(CYGPATH_W) 'kofola/font.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/font.cpp'; fi`
  1119. font3d.o: kofola/font3d.cpp
  1120. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT font3d.o -MD -MP -MF $(DEPDIR)/font3d.Tpo -c -o font3d.o `test -f 'kofola/font3d.cpp' || echo '$(srcdir)/'`kofola/font3d.cpp
  1121. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/font3d.Tpo $(DEPDIR)/font3d.Po
  1122. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/font3d.cpp' object='font3d.o' libtool=no @AMDEPBACKSLASH@
  1123. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1124. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o font3d.o `test -f 'kofola/font3d.cpp' || echo '$(srcdir)/'`kofola/font3d.cpp
  1125. font3d.obj: kofola/font3d.cpp
  1126. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT font3d.obj -MD -MP -MF $(DEPDIR)/font3d.Tpo -c -o font3d.obj `if test -f 'kofola/font3d.cpp'; then $(CYGPATH_W) 'kofola/font3d.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/font3d.cpp'; fi`
  1127. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/font3d.Tpo $(DEPDIR)/font3d.Po
  1128. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/font3d.cpp' object='font3d.obj' libtool=no @AMDEPBACKSLASH@
  1129. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1130. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o font3d.obj `if test -f 'kofola/font3d.cpp'; then $(CYGPATH_W) 'kofola/font3d.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/font3d.cpp'; fi`
  1131. game_init.o: kofola/game_init.cpp
  1132. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_init.o -MD -MP -MF $(DEPDIR)/game_init.Tpo -c -o game_init.o `test -f 'kofola/game_init.cpp' || echo '$(srcdir)/'`kofola/game_init.cpp
  1133. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_init.Tpo $(DEPDIR)/game_init.Po
  1134. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_init.cpp' object='game_init.o' libtool=no @AMDEPBACKSLASH@
  1135. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1136. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_init.o `test -f 'kofola/game_init.cpp' || echo '$(srcdir)/'`kofola/game_init.cpp
  1137. game_init.obj: kofola/game_init.cpp
  1138. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_init.obj -MD -MP -MF $(DEPDIR)/game_init.Tpo -c -o game_init.obj `if test -f 'kofola/game_init.cpp'; then $(CYGPATH_W) 'kofola/game_init.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_init.cpp'; fi`
  1139. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_init.Tpo $(DEPDIR)/game_init.Po
  1140. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_init.cpp' object='game_init.obj' libtool=no @AMDEPBACKSLASH@
  1141. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1142. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_init.obj `if test -f 'kofola/game_init.cpp'; then $(CYGPATH_W) 'kofola/game_init.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_init.cpp'; fi`
  1143. game_logic.o: kofola/game_logic.cpp
  1144. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_logic.o -MD -MP -MF $(DEPDIR)/game_logic.Tpo -c -o game_logic.o `test -f 'kofola/game_logic.cpp' || echo '$(srcdir)/'`kofola/game_logic.cpp
  1145. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_logic.Tpo $(DEPDIR)/game_logic.Po
  1146. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_logic.cpp' object='game_logic.o' libtool=no @AMDEPBACKSLASH@
  1147. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1148. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_logic.o `test -f 'kofola/game_logic.cpp' || echo '$(srcdir)/'`kofola/game_logic.cpp
  1149. game_logic.obj: kofola/game_logic.cpp
  1150. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_logic.obj -MD -MP -MF $(DEPDIR)/game_logic.Tpo -c -o game_logic.obj `if test -f 'kofola/game_logic.cpp'; then $(CYGPATH_W) 'kofola/game_logic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_logic.cpp'; fi`
  1151. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_logic.Tpo $(DEPDIR)/game_logic.Po
  1152. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_logic.cpp' object='game_logic.obj' libtool=no @AMDEPBACKSLASH@
  1153. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1154. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_logic.obj `if test -f 'kofola/game_logic.cpp'; then $(CYGPATH_W) 'kofola/game_logic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_logic.cpp'; fi`
  1155. game_main.o: kofola/game_main.cpp
  1156. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_main.o -MD -MP -MF $(DEPDIR)/game_main.Tpo -c -o game_main.o `test -f 'kofola/game_main.cpp' || echo '$(srcdir)/'`kofola/game_main.cpp
  1157. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_main.Tpo $(DEPDIR)/game_main.Po
  1158. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_main.cpp' object='game_main.o' libtool=no @AMDEPBACKSLASH@
  1159. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1160. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_main.o `test -f 'kofola/game_main.cpp' || echo '$(srcdir)/'`kofola/game_main.cpp
  1161. game_main.obj: kofola/game_main.cpp
  1162. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT game_main.obj -MD -MP -MF $(DEPDIR)/game_main.Tpo -c -o game_main.obj `if test -f 'kofola/game_main.cpp'; then $(CYGPATH_W) 'kofola/game_main.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_main.cpp'; fi`
  1163. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/game_main.Tpo $(DEPDIR)/game_main.Po
  1164. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/game_main.cpp' object='game_main.obj' libtool=no @AMDEPBACKSLASH@
  1165. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1166. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o game_main.obj `if test -f 'kofola/game_main.cpp'; then $(CYGPATH_W) 'kofola/game_main.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/game_main.cpp'; fi`
  1167. grammar.o: kofola/grammar.cpp
  1168. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT grammar.o -MD -MP -MF $(DEPDIR)/grammar.Tpo -c -o grammar.o `test -f 'kofola/grammar.cpp' || echo '$(srcdir)/'`kofola/grammar.cpp
  1169. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/grammar.Tpo $(DEPDIR)/grammar.Po
  1170. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/grammar.cpp' object='grammar.o' libtool=no @AMDEPBACKSLASH@
  1171. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1172. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o grammar.o `test -f 'kofola/grammar.cpp' || echo '$(srcdir)/'`kofola/grammar.cpp
  1173. grammar.obj: kofola/grammar.cpp
  1174. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT grammar.obj -MD -MP -MF $(DEPDIR)/grammar.Tpo -c -o grammar.obj `if test -f 'kofola/grammar.cpp'; then $(CYGPATH_W) 'kofola/grammar.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/grammar.cpp'; fi`
  1175. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/grammar.Tpo $(DEPDIR)/grammar.Po
  1176. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/grammar.cpp' object='grammar.obj' libtool=no @AMDEPBACKSLASH@
  1177. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1178. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o grammar.obj `if test -f 'kofola/grammar.cpp'; then $(CYGPATH_W) 'kofola/grammar.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/grammar.cpp'; fi`
  1179. load_level.o: kofola/load_level.cpp
  1180. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT load_level.o -MD -MP -MF $(DEPDIR)/load_level.Tpo -c -o load_level.o `test -f 'kofola/load_level.cpp' || echo '$(srcdir)/'`kofola/load_level.cpp
  1181. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/load_level.Tpo $(DEPDIR)/load_level.Po
  1182. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/load_level.cpp' object='load_level.o' libtool=no @AMDEPBACKSLASH@
  1183. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1184. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o load_level.o `test -f 'kofola/load_level.cpp' || echo '$(srcdir)/'`kofola/load_level.cpp
  1185. load_level.obj: kofola/load_level.cpp
  1186. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT load_level.obj -MD -MP -MF $(DEPDIR)/load_level.Tpo -c -o load_level.obj `if test -f 'kofola/load_level.cpp'; then $(CYGPATH_W) 'kofola/load_level.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/load_level.cpp'; fi`
  1187. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/load_level.Tpo $(DEPDIR)/load_level.Po
  1188. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/load_level.cpp' object='load_level.obj' libtool=no @AMDEPBACKSLASH@
  1189. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1190. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o load_level.obj `if test -f 'kofola/load_level.cpp'; then $(CYGPATH_W) 'kofola/load_level.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/load_level.cpp'; fi`
  1191. menu_script.o: kofola/menu_script.cpp
  1192. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT menu_script.o -MD -MP -MF $(DEPDIR)/menu_script.Tpo -c -o menu_script.o `test -f 'kofola/menu_script.cpp' || echo '$(srcdir)/'`kofola/menu_script.cpp
  1193. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/menu_script.Tpo $(DEPDIR)/menu_script.Po
  1194. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/menu_script.cpp' object='menu_script.o' libtool=no @AMDEPBACKSLASH@
  1195. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1196. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o menu_script.o `test -f 'kofola/menu_script.cpp' || echo '$(srcdir)/'`kofola/menu_script.cpp
  1197. menu_script.obj: kofola/menu_script.cpp
  1198. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT menu_script.obj -MD -MP -MF $(DEPDIR)/menu_script.Tpo -c -o menu_script.obj `if test -f 'kofola/menu_script.cpp'; then $(CYGPATH_W) 'kofola/menu_script.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/menu_script.cpp'; fi`
  1199. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/menu_script.Tpo $(DEPDIR)/menu_script.Po
  1200. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/menu_script.cpp' object='menu_script.obj' libtool=no @AMDEPBACKSLASH@
  1201. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1202. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o menu_script.obj `if test -f 'kofola/menu_script.cpp'; then $(CYGPATH_W) 'kofola/menu_script.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/menu_script.cpp'; fi`
  1203. profiles.o: kofola/profiles.cpp
  1204. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT profiles.o -MD -MP -MF $(DEPDIR)/profiles.Tpo -c -o profiles.o `test -f 'kofola/profiles.cpp' || echo '$(srcdir)/'`kofola/profiles.cpp
  1205. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/profiles.Tpo $(DEPDIR)/profiles.Po
  1206. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/profiles.cpp' object='profiles.o' libtool=no @AMDEPBACKSLASH@
  1207. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1208. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o profiles.o `test -f 'kofola/profiles.cpp' || echo '$(srcdir)/'`kofola/profiles.cpp
  1209. profiles.obj: kofola/profiles.cpp
  1210. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT profiles.obj -MD -MP -MF $(DEPDIR)/profiles.Tpo -c -o profiles.obj `if test -f 'kofola/profiles.cpp'; then $(CYGPATH_W) 'kofola/profiles.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/profiles.cpp'; fi`
  1211. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/profiles.Tpo $(DEPDIR)/profiles.Po
  1212. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/profiles.cpp' object='profiles.obj' libtool=no @AMDEPBACKSLASH@
  1213. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1214. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o profiles.obj `if test -f 'kofola/profiles.cpp'; then $(CYGPATH_W) 'kofola/profiles.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/profiles.cpp'; fi`
  1215. setup.o: kofola/setup.cpp
  1216. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT setup.o -MD -MP -MF $(DEPDIR)/setup.Tpo -c -o setup.o `test -f 'kofola/setup.cpp' || echo '$(srcdir)/'`kofola/setup.cpp
  1217. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/setup.Tpo $(DEPDIR)/setup.Po
  1218. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/setup.cpp' object='setup.o' libtool=no @AMDEPBACKSLASH@
  1219. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1220. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o setup.o `test -f 'kofola/setup.cpp' || echo '$(srcdir)/'`kofola/setup.cpp
  1221. setup.obj: kofola/setup.cpp
  1222. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT setup.obj -MD -MP -MF $(DEPDIR)/setup.Tpo -c -o setup.obj `if test -f 'kofola/setup.cpp'; then $(CYGPATH_W) 'kofola/setup.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/setup.cpp'; fi`
  1223. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/setup.Tpo $(DEPDIR)/setup.Po
  1224. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/setup.cpp' object='setup.obj' libtool=no @AMDEPBACKSLASH@
  1225. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1226. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o setup.obj `if test -f 'kofola/setup.cpp'; then $(CYGPATH_W) 'kofola/setup.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/setup.cpp'; fi`
  1227. square_cut.o: kofola/square_cut.cpp
  1228. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT square_cut.o -MD -MP -MF $(DEPDIR)/square_cut.Tpo -c -o square_cut.o `test -f 'kofola/square_cut.cpp' || echo '$(srcdir)/'`kofola/square_cut.cpp
  1229. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/square_cut.Tpo $(DEPDIR)/square_cut.Po
  1230. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/square_cut.cpp' object='square_cut.o' libtool=no @AMDEPBACKSLASH@
  1231. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1232. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o square_cut.o `test -f 'kofola/square_cut.cpp' || echo '$(srcdir)/'`kofola/square_cut.cpp
  1233. square_cut.obj: kofola/square_cut.cpp
  1234. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT square_cut.obj -MD -MP -MF $(DEPDIR)/square_cut.Tpo -c -o square_cut.obj `if test -f 'kofola/square_cut.cpp'; then $(CYGPATH_W) 'kofola/square_cut.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/square_cut.cpp'; fi`
  1235. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/square_cut.Tpo $(DEPDIR)/square_cut.Po
  1236. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/square_cut.cpp' object='square_cut.obj' libtool=no @AMDEPBACKSLASH@
  1237. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1238. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o square_cut.obj `if test -f 'kofola/square_cut.cpp'; then $(CYGPATH_W) 'kofola/square_cut.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/square_cut.cpp'; fi`
  1239. trigers.o: kofola/trigers.cpp
  1240. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT trigers.o -MD -MP -MF $(DEPDIR)/trigers.Tpo -c -o trigers.o `test -f 'kofola/trigers.cpp' || echo '$(srcdir)/'`kofola/trigers.cpp
  1241. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/trigers.Tpo $(DEPDIR)/trigers.Po
  1242. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/trigers.cpp' object='trigers.o' libtool=no @AMDEPBACKSLASH@
  1243. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1244. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o trigers.o `test -f 'kofola/trigers.cpp' || echo '$(srcdir)/'`kofola/trigers.cpp
  1245. trigers.obj: kofola/trigers.cpp
  1246. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT trigers.obj -MD -MP -MF $(DEPDIR)/trigers.Tpo -c -o trigers.obj `if test -f 'kofola/trigers.cpp'; then $(CYGPATH_W) 'kofola/trigers.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/trigers.cpp'; fi`
  1247. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/trigers.Tpo $(DEPDIR)/trigers.Po
  1248. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/trigers.cpp' object='trigers.obj' libtool=no @AMDEPBACKSLASH@
  1249. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1250. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o trigers.obj `if test -f 'kofola/trigers.cpp'; then $(CYGPATH_W) 'kofola/trigers.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/trigers.cpp'; fi`
  1251. volume.o: kofola/volume.cpp
  1252. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT volume.o -MD -MP -MF $(DEPDIR)/volume.Tpo -c -o volume.o `test -f 'kofola/volume.cpp' || echo '$(srcdir)/'`kofola/volume.cpp
  1253. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/volume.Tpo $(DEPDIR)/volume.Po
  1254. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/volume.cpp' object='volume.o' libtool=no @AMDEPBACKSLASH@
  1255. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1256. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o volume.o `test -f 'kofola/volume.cpp' || echo '$(srcdir)/'`kofola/volume.cpp
  1257. volume.obj: kofola/volume.cpp
  1258. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT volume.obj -MD -MP -MF $(DEPDIR)/volume.Tpo -c -o volume.obj `if test -f 'kofola/volume.cpp'; then $(CYGPATH_W) 'kofola/volume.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/volume.cpp'; fi`
  1259. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/volume.Tpo $(DEPDIR)/volume.Po
  1260. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/volume.cpp' object='volume.obj' libtool=no @AMDEPBACKSLASH@
  1261. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1262. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o volume.obj `if test -f 'kofola/volume.cpp'; then $(CYGPATH_W) 'kofola/volume.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/volume.cpp'; fi`
  1263. water.o: kofola/water.cpp
  1264. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT water.o -MD -MP -MF $(DEPDIR)/water.Tpo -c -o water.o `test -f 'kofola/water.cpp' || echo '$(srcdir)/'`kofola/water.cpp
  1265. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/water.Tpo $(DEPDIR)/water.Po
  1266. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/water.cpp' object='water.o' libtool=no @AMDEPBACKSLASH@
  1267. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1268. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o water.o `test -f 'kofola/water.cpp' || echo '$(srcdir)/'`kofola/water.cpp
  1269. water.obj: kofola/water.cpp
  1270. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT water.obj -MD -MP -MF $(DEPDIR)/water.Tpo -c -o water.obj `if test -f 'kofola/water.cpp'; then $(CYGPATH_W) 'kofola/water.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/water.cpp'; fi`
  1271. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/water.Tpo $(DEPDIR)/water.Po
  1272. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/water.cpp' object='water.obj' libtool=no @AMDEPBACKSLASH@
  1273. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1274. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o water.obj `if test -f 'kofola/water.cpp'; then $(CYGPATH_W) 'kofola/water.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/water.cpp'; fi`
  1275. 3dinterface.o: komat/3dinterface.cpp
  1276. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dinterface.o -MD -MP -MF $(DEPDIR)/3dinterface.Tpo -c -o 3dinterface.o `test -f 'komat/3dinterface.cpp' || echo '$(srcdir)/'`komat/3dinterface.cpp
  1277. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dinterface.Tpo $(DEPDIR)/3dinterface.Po
  1278. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dinterface.cpp' object='3dinterface.o' libtool=no @AMDEPBACKSLASH@
  1279. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1280. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dinterface.o `test -f 'komat/3dinterface.cpp' || echo '$(srcdir)/'`komat/3dinterface.cpp
  1281. 3dinterface.obj: komat/3dinterface.cpp
  1282. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dinterface.obj -MD -MP -MF $(DEPDIR)/3dinterface.Tpo -c -o 3dinterface.obj `if test -f 'komat/3dinterface.cpp'; then $(CYGPATH_W) 'komat/3dinterface.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dinterface.cpp'; fi`
  1283. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dinterface.Tpo $(DEPDIR)/3dinterface.Po
  1284. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dinterface.cpp' object='3dinterface.obj' libtool=no @AMDEPBACKSLASH@
  1285. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1286. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dinterface.obj `if test -f 'komat/3dinterface.cpp'; then $(CYGPATH_W) 'komat/3dinterface.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dinterface.cpp'; fi`
  1287. Berusky3d.o: komat/Berusky3d.cpp
  1288. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d.o -MD -MP -MF $(DEPDIR)/Berusky3d.Tpo -c -o Berusky3d.o `test -f 'komat/Berusky3d.cpp' || echo '$(srcdir)/'`komat/Berusky3d.cpp
  1289. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d.Tpo $(DEPDIR)/Berusky3d.Po
  1290. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d.cpp' object='Berusky3d.o' libtool=no @AMDEPBACKSLASH@
  1291. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1292. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d.o `test -f 'komat/Berusky3d.cpp' || echo '$(srcdir)/'`komat/Berusky3d.cpp
  1293. Berusky3d.obj: komat/Berusky3d.cpp
  1294. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d.obj -MD -MP -MF $(DEPDIR)/Berusky3d.Tpo -c -o Berusky3d.obj `if test -f 'komat/Berusky3d.cpp'; then $(CYGPATH_W) 'komat/Berusky3d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d.cpp'; fi`
  1295. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d.Tpo $(DEPDIR)/Berusky3d.Po
  1296. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d.cpp' object='Berusky3d.obj' libtool=no @AMDEPBACKSLASH@
  1297. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1298. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d.obj `if test -f 'komat/Berusky3d.cpp'; then $(CYGPATH_W) 'komat/Berusky3d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d.cpp'; fi`
  1299. Berusky3d_castice.o: komat/Berusky3d_castice.cpp
  1300. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_castice.o -MD -MP -MF $(DEPDIR)/Berusky3d_castice.Tpo -c -o Berusky3d_castice.o `test -f 'komat/Berusky3d_castice.cpp' || echo '$(srcdir)/'`komat/Berusky3d_castice.cpp
  1301. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_castice.Tpo $(DEPDIR)/Berusky3d_castice.Po
  1302. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_castice.cpp' object='Berusky3d_castice.o' libtool=no @AMDEPBACKSLASH@
  1303. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1304. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_castice.o `test -f 'komat/Berusky3d_castice.cpp' || echo '$(srcdir)/'`komat/Berusky3d_castice.cpp
  1305. Berusky3d_castice.obj: komat/Berusky3d_castice.cpp
  1306. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_castice.obj -MD -MP -MF $(DEPDIR)/Berusky3d_castice.Tpo -c -o Berusky3d_castice.obj `if test -f 'komat/Berusky3d_castice.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_castice.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_castice.cpp'; fi`
  1307. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_castice.Tpo $(DEPDIR)/Berusky3d_castice.Po
  1308. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_castice.cpp' object='Berusky3d_castice.obj' libtool=no @AMDEPBACKSLASH@
  1309. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1310. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_castice.obj `if test -f 'komat/Berusky3d_castice.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_castice.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_castice.cpp'; fi`
  1311. Berusky3d_ini.o: komat/Berusky3d_ini.cpp
  1312. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_ini.o -MD -MP -MF $(DEPDIR)/Berusky3d_ini.Tpo -c -o Berusky3d_ini.o `test -f 'komat/Berusky3d_ini.cpp' || echo '$(srcdir)/'`komat/Berusky3d_ini.cpp
  1313. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_ini.Tpo $(DEPDIR)/Berusky3d_ini.Po
  1314. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_ini.cpp' object='Berusky3d_ini.o' libtool=no @AMDEPBACKSLASH@
  1315. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1316. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_ini.o `test -f 'komat/Berusky3d_ini.cpp' || echo '$(srcdir)/'`komat/Berusky3d_ini.cpp
  1317. Berusky3d_ini.obj: komat/Berusky3d_ini.cpp
  1318. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_ini.obj -MD -MP -MF $(DEPDIR)/Berusky3d_ini.Tpo -c -o Berusky3d_ini.obj `if test -f 'komat/Berusky3d_ini.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_ini.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_ini.cpp'; fi`
  1319. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_ini.Tpo $(DEPDIR)/Berusky3d_ini.Po
  1320. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_ini.cpp' object='Berusky3d_ini.obj' libtool=no @AMDEPBACKSLASH@
  1321. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1322. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_ini.obj `if test -f 'komat/Berusky3d_ini.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_ini.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_ini.cpp'; fi`
  1323. Berusky3d_kamery.o: komat/Berusky3d_kamery.cpp
  1324. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kamery.o -MD -MP -MF $(DEPDIR)/Berusky3d_kamery.Tpo -c -o Berusky3d_kamery.o `test -f 'komat/Berusky3d_kamery.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kamery.cpp
  1325. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kamery.Tpo $(DEPDIR)/Berusky3d_kamery.Po
  1326. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kamery.cpp' object='Berusky3d_kamery.o' libtool=no @AMDEPBACKSLASH@
  1327. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1328. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kamery.o `test -f 'komat/Berusky3d_kamery.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kamery.cpp
  1329. Berusky3d_kamery.obj: komat/Berusky3d_kamery.cpp
  1330. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kamery.obj -MD -MP -MF $(DEPDIR)/Berusky3d_kamery.Tpo -c -o Berusky3d_kamery.obj `if test -f 'komat/Berusky3d_kamery.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kamery.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kamery.cpp'; fi`
  1331. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kamery.Tpo $(DEPDIR)/Berusky3d_kamery.Po
  1332. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kamery.cpp' object='Berusky3d_kamery.obj' libtool=no @AMDEPBACKSLASH@
  1333. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1334. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kamery.obj `if test -f 'komat/Berusky3d_kamery.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kamery.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kamery.cpp'; fi`
  1335. Berusky3d_kofola2d.o: komat/Berusky3d_kofola2d.cpp
  1336. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kofola2d.o -MD -MP -MF $(DEPDIR)/Berusky3d_kofola2d.Tpo -c -o Berusky3d_kofola2d.o `test -f 'komat/Berusky3d_kofola2d.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kofola2d.cpp
  1337. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kofola2d.Tpo $(DEPDIR)/Berusky3d_kofola2d.Po
  1338. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kofola2d.cpp' object='Berusky3d_kofola2d.o' libtool=no @AMDEPBACKSLASH@
  1339. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1340. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kofola2d.o `test -f 'komat/Berusky3d_kofola2d.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kofola2d.cpp
  1341. Berusky3d_kofola2d.obj: komat/Berusky3d_kofola2d.cpp
  1342. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kofola2d.obj -MD -MP -MF $(DEPDIR)/Berusky3d_kofola2d.Tpo -c -o Berusky3d_kofola2d.obj `if test -f 'komat/Berusky3d_kofola2d.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kofola2d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kofola2d.cpp'; fi`
  1343. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kofola2d.Tpo $(DEPDIR)/Berusky3d_kofola2d.Po
  1344. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kofola2d.cpp' object='Berusky3d_kofola2d.obj' libtool=no @AMDEPBACKSLASH@
  1345. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1346. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kofola2d.obj `if test -f 'komat/Berusky3d_kofola2d.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kofola2d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kofola2d.cpp'; fi`
  1347. Berusky3d_kofola_interface.o: komat/Berusky3d_kofola_interface.cpp
  1348. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kofola_interface.o -MD -MP -MF $(DEPDIR)/Berusky3d_kofola_interface.Tpo -c -o Berusky3d_kofola_interface.o `test -f 'komat/Berusky3d_kofola_interface.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kofola_interface.cpp
  1349. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kofola_interface.Tpo $(DEPDIR)/Berusky3d_kofola_interface.Po
  1350. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kofola_interface.cpp' object='Berusky3d_kofola_interface.o' libtool=no @AMDEPBACKSLASH@
  1351. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1352. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kofola_interface.o `test -f 'komat/Berusky3d_kofola_interface.cpp' || echo '$(srcdir)/'`komat/Berusky3d_kofola_interface.cpp
  1353. Berusky3d_kofola_interface.obj: komat/Berusky3d_kofola_interface.cpp
  1354. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_kofola_interface.obj -MD -MP -MF $(DEPDIR)/Berusky3d_kofola_interface.Tpo -c -o Berusky3d_kofola_interface.obj `if test -f 'komat/Berusky3d_kofola_interface.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kofola_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kofola_interface.cpp'; fi`
  1355. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_kofola_interface.Tpo $(DEPDIR)/Berusky3d_kofola_interface.Po
  1356. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_kofola_interface.cpp' object='Berusky3d_kofola_interface.obj' libtool=no @AMDEPBACKSLASH@
  1357. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1358. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_kofola_interface.obj `if test -f 'komat/Berusky3d_kofola_interface.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_kofola_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_kofola_interface.cpp'; fi`
  1359. Berusky3d_light.o: komat/Berusky3d_light.cpp
  1360. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_light.o -MD -MP -MF $(DEPDIR)/Berusky3d_light.Tpo -c -o Berusky3d_light.o `test -f 'komat/Berusky3d_light.cpp' || echo '$(srcdir)/'`komat/Berusky3d_light.cpp
  1361. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_light.Tpo $(DEPDIR)/Berusky3d_light.Po
  1362. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_light.cpp' object='Berusky3d_light.o' libtool=no @AMDEPBACKSLASH@
  1363. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1364. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_light.o `test -f 'komat/Berusky3d_light.cpp' || echo '$(srcdir)/'`komat/Berusky3d_light.cpp
  1365. Berusky3d_light.obj: komat/Berusky3d_light.cpp
  1366. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_light.obj -MD -MP -MF $(DEPDIR)/Berusky3d_light.Tpo -c -o Berusky3d_light.obj `if test -f 'komat/Berusky3d_light.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_light.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_light.cpp'; fi`
  1367. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_light.Tpo $(DEPDIR)/Berusky3d_light.Po
  1368. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_light.cpp' object='Berusky3d_light.obj' libtool=no @AMDEPBACKSLASH@
  1369. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1370. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_light.obj `if test -f 'komat/Berusky3d_light.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_light.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_light.cpp'; fi`
  1371. Berusky3d_load.o: komat/Berusky3d_load.cpp
  1372. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_load.o -MD -MP -MF $(DEPDIR)/Berusky3d_load.Tpo -c -o Berusky3d_load.o `test -f 'komat/Berusky3d_load.cpp' || echo '$(srcdir)/'`komat/Berusky3d_load.cpp
  1373. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_load.Tpo $(DEPDIR)/Berusky3d_load.Po
  1374. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_load.cpp' object='Berusky3d_load.o' libtool=no @AMDEPBACKSLASH@
  1375. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1376. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_load.o `test -f 'komat/Berusky3d_load.cpp' || echo '$(srcdir)/'`komat/Berusky3d_load.cpp
  1377. Berusky3d_load.obj: komat/Berusky3d_load.cpp
  1378. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_load.obj -MD -MP -MF $(DEPDIR)/Berusky3d_load.Tpo -c -o Berusky3d_load.obj `if test -f 'komat/Berusky3d_load.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_load.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_load.cpp'; fi`
  1379. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_load.Tpo $(DEPDIR)/Berusky3d_load.Po
  1380. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_load.cpp' object='Berusky3d_load.obj' libtool=no @AMDEPBACKSLASH@
  1381. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1382. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_load.obj `if test -f 'komat/Berusky3d_load.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_load.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_load.cpp'; fi`
  1383. Berusky3d_render.o: komat/Berusky3d_render.cpp
  1384. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_render.o -MD -MP -MF $(DEPDIR)/Berusky3d_render.Tpo -c -o Berusky3d_render.o `test -f 'komat/Berusky3d_render.cpp' || echo '$(srcdir)/'`komat/Berusky3d_render.cpp
  1385. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_render.Tpo $(DEPDIR)/Berusky3d_render.Po
  1386. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_render.cpp' object='Berusky3d_render.o' libtool=no @AMDEPBACKSLASH@
  1387. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1388. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_render.o `test -f 'komat/Berusky3d_render.cpp' || echo '$(srcdir)/'`komat/Berusky3d_render.cpp
  1389. Berusky3d_render.obj: komat/Berusky3d_render.cpp
  1390. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_render.obj -MD -MP -MF $(DEPDIR)/Berusky3d_render.Tpo -c -o Berusky3d_render.obj `if test -f 'komat/Berusky3d_render.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_render.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_render.cpp'; fi`
  1391. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_render.Tpo $(DEPDIR)/Berusky3d_render.Po
  1392. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_render.cpp' object='Berusky3d_render.obj' libtool=no @AMDEPBACKSLASH@
  1393. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1394. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_render.obj `if test -f 'komat/Berusky3d_render.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_render.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_render.cpp'; fi`
  1395. Bmp.o: komat/Bmp.cpp
  1396. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Bmp.o -MD -MP -MF $(DEPDIR)/Bmp.Tpo -c -o Bmp.o `test -f 'komat/Bmp.cpp' || echo '$(srcdir)/'`komat/Bmp.cpp
  1397. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Bmp.Tpo $(DEPDIR)/Bmp.Po
  1398. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Bmp.cpp' object='Bmp.o' libtool=no @AMDEPBACKSLASH@
  1399. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1400. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Bmp.o `test -f 'komat/Bmp.cpp' || echo '$(srcdir)/'`komat/Bmp.cpp
  1401. Bmp.obj: komat/Bmp.cpp
  1402. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Bmp.obj -MD -MP -MF $(DEPDIR)/Bmp.Tpo -c -o Bmp.obj `if test -f 'komat/Bmp.cpp'; then $(CYGPATH_W) 'komat/Bmp.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Bmp.cpp'; fi`
  1403. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Bmp.Tpo $(DEPDIR)/Bmp.Po
  1404. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Bmp.cpp' object='Bmp.obj' libtool=no @AMDEPBACKSLASH@
  1405. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1406. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Bmp.obj `if test -f 'komat/Bmp.cpp'; then $(CYGPATH_W) 'komat/Bmp.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Bmp.cpp'; fi`
  1407. Di.o: komat/Di.cpp
  1408. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Di.o -MD -MP -MF $(DEPDIR)/Di.Tpo -c -o Di.o `test -f 'komat/Di.cpp' || echo '$(srcdir)/'`komat/Di.cpp
  1409. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Di.Tpo $(DEPDIR)/Di.Po
  1410. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Di.cpp' object='Di.o' libtool=no @AMDEPBACKSLASH@
  1411. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1412. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Di.o `test -f 'komat/Di.cpp' || echo '$(srcdir)/'`komat/Di.cpp
  1413. Di.obj: komat/Di.cpp
  1414. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Di.obj -MD -MP -MF $(DEPDIR)/Di.Tpo -c -o Di.obj `if test -f 'komat/Di.cpp'; then $(CYGPATH_W) 'komat/Di.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Di.cpp'; fi`
  1415. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Di.Tpo $(DEPDIR)/Di.Po
  1416. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Di.cpp' object='Di.obj' libtool=no @AMDEPBACKSLASH@
  1417. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1418. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Di.obj `if test -f 'komat/Di.cpp'; then $(CYGPATH_W) 'komat/Di.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Di.cpp'; fi`
  1419. Load.o: komat/Load.cpp
  1420. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load.o -MD -MP -MF $(DEPDIR)/Load.Tpo -c -o Load.o `test -f 'komat/Load.cpp' || echo '$(srcdir)/'`komat/Load.cpp
  1421. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load.Tpo $(DEPDIR)/Load.Po
  1422. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load.cpp' object='Load.o' libtool=no @AMDEPBACKSLASH@
  1423. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1424. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load.o `test -f 'komat/Load.cpp' || echo '$(srcdir)/'`komat/Load.cpp
  1425. Load.obj: komat/Load.cpp
  1426. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load.obj -MD -MP -MF $(DEPDIR)/Load.Tpo -c -o Load.obj `if test -f 'komat/Load.cpp'; then $(CYGPATH_W) 'komat/Load.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load.cpp'; fi`
  1427. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load.Tpo $(DEPDIR)/Load.Po
  1428. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load.cpp' object='Load.obj' libtool=no @AMDEPBACKSLASH@
  1429. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1430. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load.obj `if test -f 'komat/Load.cpp'; then $(CYGPATH_W) 'komat/Load.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load.cpp'; fi`
  1431. Load_chunks.o: komat/Load_chunks.cpp
  1432. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load_chunks.o -MD -MP -MF $(DEPDIR)/Load_chunks.Tpo -c -o Load_chunks.o `test -f 'komat/Load_chunks.cpp' || echo '$(srcdir)/'`komat/Load_chunks.cpp
  1433. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load_chunks.Tpo $(DEPDIR)/Load_chunks.Po
  1434. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load_chunks.cpp' object='Load_chunks.o' libtool=no @AMDEPBACKSLASH@
  1435. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1436. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load_chunks.o `test -f 'komat/Load_chunks.cpp' || echo '$(srcdir)/'`komat/Load_chunks.cpp
  1437. Load_chunks.obj: komat/Load_chunks.cpp
  1438. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load_chunks.obj -MD -MP -MF $(DEPDIR)/Load_chunks.Tpo -c -o Load_chunks.obj `if test -f 'komat/Load_chunks.cpp'; then $(CYGPATH_W) 'komat/Load_chunks.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load_chunks.cpp'; fi`
  1439. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load_chunks.Tpo $(DEPDIR)/Load_chunks.Po
  1440. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load_chunks.cpp' object='Load_chunks.obj' libtool=no @AMDEPBACKSLASH@
  1441. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1442. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load_chunks.obj `if test -f 'komat/Load_chunks.cpp'; then $(CYGPATH_W) 'komat/Load_chunks.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load_chunks.cpp'; fi`
  1443. Load_out.o: komat/Load_out.cpp
  1444. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load_out.o -MD -MP -MF $(DEPDIR)/Load_out.Tpo -c -o Load_out.o `test -f 'komat/Load_out.cpp' || echo '$(srcdir)/'`komat/Load_out.cpp
  1445. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load_out.Tpo $(DEPDIR)/Load_out.Po
  1446. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load_out.cpp' object='Load_out.o' libtool=no @AMDEPBACKSLASH@
  1447. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1448. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load_out.o `test -f 'komat/Load_out.cpp' || echo '$(srcdir)/'`komat/Load_out.cpp
  1449. Load_out.obj: komat/Load_out.cpp
  1450. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Load_out.obj -MD -MP -MF $(DEPDIR)/Load_out.Tpo -c -o Load_out.obj `if test -f 'komat/Load_out.cpp'; then $(CYGPATH_W) 'komat/Load_out.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load_out.cpp'; fi`
  1451. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Load_out.Tpo $(DEPDIR)/Load_out.Po
  1452. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Load_out.cpp' object='Load_out.obj' libtool=no @AMDEPBACKSLASH@
  1453. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1454. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Load_out.obj `if test -f 'komat/Load_out.cpp'; then $(CYGPATH_W) 'komat/Load_out.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Load_out.cpp'; fi`
  1455. Tga.o: komat/Tga.cpp
  1456. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Tga.o -MD -MP -MF $(DEPDIR)/Tga.Tpo -c -o Tga.o `test -f 'komat/Tga.cpp' || echo '$(srcdir)/'`komat/Tga.cpp
  1457. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Tga.Tpo $(DEPDIR)/Tga.Po
  1458. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Tga.cpp' object='Tga.o' libtool=no @AMDEPBACKSLASH@
  1459. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1460. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Tga.o `test -f 'komat/Tga.cpp' || echo '$(srcdir)/'`komat/Tga.cpp
  1461. Tga.obj: komat/Tga.cpp
  1462. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Tga.obj -MD -MP -MF $(DEPDIR)/Tga.Tpo -c -o Tga.obj `if test -f 'komat/Tga.cpp'; then $(CYGPATH_W) 'komat/Tga.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Tga.cpp'; fi`
  1463. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Tga.Tpo $(DEPDIR)/Tga.Po
  1464. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Tga.cpp' object='Tga.obj' libtool=no @AMDEPBACKSLASH@
  1465. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1466. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Tga.obj `if test -f 'komat/Tga.cpp'; then $(CYGPATH_W) 'komat/Tga.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Tga.cpp'; fi`
  1467. strip.o: komat/strip.cpp
  1468. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT strip.o -MD -MP -MF $(DEPDIR)/strip.Tpo -c -o strip.o `test -f 'komat/strip.cpp' || echo '$(srcdir)/'`komat/strip.cpp
  1469. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/strip.Tpo $(DEPDIR)/strip.Po
  1470. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/strip.cpp' object='strip.o' libtool=no @AMDEPBACKSLASH@
  1471. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1472. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o strip.o `test -f 'komat/strip.cpp' || echo '$(srcdir)/'`komat/strip.cpp
  1473. strip.obj: komat/strip.cpp
  1474. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT strip.obj -MD -MP -MF $(DEPDIR)/strip.Tpo -c -o strip.obj `if test -f 'komat/strip.cpp'; then $(CYGPATH_W) 'komat/strip.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/strip.cpp'; fi`
  1475. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/strip.Tpo $(DEPDIR)/strip.Po
  1476. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/strip.cpp' object='strip.obj' libtool=no @AMDEPBACKSLASH@
  1477. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1478. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o strip.obj `if test -f 'komat/strip.cpp'; then $(CYGPATH_W) 'komat/strip.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/strip.cpp'; fi`
  1479. compat.o: tmp/compat.cpp
  1480. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compat.o -MD -MP -MF $(DEPDIR)/compat.Tpo -c -o compat.o `test -f 'tmp/compat.cpp' || echo '$(srcdir)/'`tmp/compat.cpp
  1481. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/compat.Tpo $(DEPDIR)/compat.Po
  1482. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tmp/compat.cpp' object='compat.o' libtool=no @AMDEPBACKSLASH@
  1483. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1484. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compat.o `test -f 'tmp/compat.cpp' || echo '$(srcdir)/'`tmp/compat.cpp
  1485. compat.obj: tmp/compat.cpp
  1486. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compat.obj -MD -MP -MF $(DEPDIR)/compat.Tpo -c -o compat.obj `if test -f 'tmp/compat.cpp'; then $(CYGPATH_W) 'tmp/compat.cpp'; else $(CYGPATH_W) '$(srcdir)/tmp/compat.cpp'; fi`
  1487. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/compat.Tpo $(DEPDIR)/compat.Po
  1488. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='tmp/compat.cpp' object='compat.obj' libtool=no @AMDEPBACKSLASH@
  1489. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1490. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compat.obj `if test -f 'tmp/compat.cpp'; then $(CYGPATH_W) 'tmp/compat.cpp'; else $(CYGPATH_W) '$(srcdir)/tmp/compat.cpp'; fi`
  1491. 2D_graphic.o: kofola/2D_graphic.cpp
  1492. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 2D_graphic.o -MD -MP -MF $(DEPDIR)/2D_graphic.Tpo -c -o 2D_graphic.o `test -f 'kofola/2D_graphic.cpp' || echo '$(srcdir)/'`kofola/2D_graphic.cpp
  1493. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/2D_graphic.Tpo $(DEPDIR)/2D_graphic.Po
  1494. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/2D_graphic.cpp' object='2D_graphic.o' libtool=no @AMDEPBACKSLASH@
  1495. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1496. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 2D_graphic.o `test -f 'kofola/2D_graphic.cpp' || echo '$(srcdir)/'`kofola/2D_graphic.cpp
  1497. 2D_graphic.obj: kofola/2D_graphic.cpp
  1498. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 2D_graphic.obj -MD -MP -MF $(DEPDIR)/2D_graphic.Tpo -c -o 2D_graphic.obj `if test -f 'kofola/2D_graphic.cpp'; then $(CYGPATH_W) 'kofola/2D_graphic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/2D_graphic.cpp'; fi`
  1499. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/2D_graphic.Tpo $(DEPDIR)/2D_graphic.Po
  1500. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/2D_graphic.cpp' object='2D_graphic.obj' libtool=no @AMDEPBACKSLASH@
  1501. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1502. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 2D_graphic.obj `if test -f 'kofola/2D_graphic.cpp'; then $(CYGPATH_W) 'kofola/2D_graphic.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/2D_graphic.cpp'; fi`
  1503. aabb.o: age/graph/aabb.cpp
  1504. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT aabb.o -MD -MP -MF $(DEPDIR)/aabb.Tpo -c -o aabb.o `test -f 'age/graph/aabb.cpp' || echo '$(srcdir)/'`age/graph/aabb.cpp
  1505. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/aabb.Tpo $(DEPDIR)/aabb.Po
  1506. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/aabb.cpp' object='aabb.o' libtool=no @AMDEPBACKSLASH@
  1507. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1508. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o aabb.o `test -f 'age/graph/aabb.cpp' || echo '$(srcdir)/'`age/graph/aabb.cpp
  1509. aabb.obj: age/graph/aabb.cpp
  1510. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT aabb.obj -MD -MP -MF $(DEPDIR)/aabb.Tpo -c -o aabb.obj `if test -f 'age/graph/aabb.cpp'; then $(CYGPATH_W) 'age/graph/aabb.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/aabb.cpp'; fi`
  1511. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/aabb.Tpo $(DEPDIR)/aabb.Po
  1512. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/aabb.cpp' object='aabb.obj' libtool=no @AMDEPBACKSLASH@
  1513. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1514. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o aabb.obj `if test -f 'age/graph/aabb.cpp'; then $(CYGPATH_W) 'age/graph/aabb.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/aabb.cpp'; fi`
  1515. age.o: age/graph/age.cpp
  1516. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT age.o -MD -MP -MF $(DEPDIR)/age.Tpo -c -o age.o `test -f 'age/graph/age.cpp' || echo '$(srcdir)/'`age/graph/age.cpp
  1517. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/age.Tpo $(DEPDIR)/age.Po
  1518. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/age.cpp' object='age.o' libtool=no @AMDEPBACKSLASH@
  1519. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1520. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o age.o `test -f 'age/graph/age.cpp' || echo '$(srcdir)/'`age/graph/age.cpp
  1521. age.obj: age/graph/age.cpp
  1522. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT age.obj -MD -MP -MF $(DEPDIR)/age.Tpo -c -o age.obj `if test -f 'age/graph/age.cpp'; then $(CYGPATH_W) 'age/graph/age.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/age.cpp'; fi`
  1523. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/age.Tpo $(DEPDIR)/age.Po
  1524. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/age.cpp' object='age.obj' libtool=no @AMDEPBACKSLASH@
  1525. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1526. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o age.obj `if test -f 'age/graph/age.cpp'; then $(CYGPATH_W) 'age/graph/age.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/age.cpp'; fi`
  1527. alpha.o: age/graph/alpha.cpp
  1528. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT alpha.o -MD -MP -MF $(DEPDIR)/alpha.Tpo -c -o alpha.o `test -f 'age/graph/alpha.cpp' || echo '$(srcdir)/'`age/graph/alpha.cpp
  1529. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/alpha.Tpo $(DEPDIR)/alpha.Po
  1530. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/alpha.cpp' object='alpha.o' libtool=no @AMDEPBACKSLASH@
  1531. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1532. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o alpha.o `test -f 'age/graph/alpha.cpp' || echo '$(srcdir)/'`age/graph/alpha.cpp
  1533. alpha.obj: age/graph/alpha.cpp
  1534. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT alpha.obj -MD -MP -MF $(DEPDIR)/alpha.Tpo -c -o alpha.obj `if test -f 'age/graph/alpha.cpp'; then $(CYGPATH_W) 'age/graph/alpha.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/alpha.cpp'; fi`
  1535. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/alpha.Tpo $(DEPDIR)/alpha.Po
  1536. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/alpha.cpp' object='alpha.obj' libtool=no @AMDEPBACKSLASH@
  1537. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1538. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o alpha.obj `if test -f 'age/graph/alpha.cpp'; then $(CYGPATH_W) 'age/graph/alpha.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/alpha.cpp'; fi`
  1539. animation.o: age/graph/animation.cpp
  1540. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation.o -MD -MP -MF $(DEPDIR)/animation.Tpo -c -o animation.o `test -f 'age/graph/animation.cpp' || echo '$(srcdir)/'`age/graph/animation.cpp
  1541. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation.Tpo $(DEPDIR)/animation.Po
  1542. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation.cpp' object='animation.o' libtool=no @AMDEPBACKSLASH@
  1543. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1544. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation.o `test -f 'age/graph/animation.cpp' || echo '$(srcdir)/'`age/graph/animation.cpp
  1545. animation.obj: age/graph/animation.cpp
  1546. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation.obj -MD -MP -MF $(DEPDIR)/animation.Tpo -c -o animation.obj `if test -f 'age/graph/animation.cpp'; then $(CYGPATH_W) 'age/graph/animation.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation.cpp'; fi`
  1547. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation.Tpo $(DEPDIR)/animation.Po
  1548. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation.cpp' object='animation.obj' libtool=no @AMDEPBACKSLASH@
  1549. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1550. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation.obj `if test -f 'age/graph/animation.cpp'; then $(CYGPATH_W) 'age/graph/animation.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation.cpp'; fi`
  1551. animation_time.o: age/graph/animation_time.cpp
  1552. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_time.o -MD -MP -MF $(DEPDIR)/animation_time.Tpo -c -o animation_time.o `test -f 'age/graph/animation_time.cpp' || echo '$(srcdir)/'`age/graph/animation_time.cpp
  1553. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_time.Tpo $(DEPDIR)/animation_time.Po
  1554. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_time.cpp' object='animation_time.o' libtool=no @AMDEPBACKSLASH@
  1555. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1556. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_time.o `test -f 'age/graph/animation_time.cpp' || echo '$(srcdir)/'`age/graph/animation_time.cpp
  1557. animation_time.obj: age/graph/animation_time.cpp
  1558. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_time.obj -MD -MP -MF $(DEPDIR)/animation_time.Tpo -c -o animation_time.obj `if test -f 'age/graph/animation_time.cpp'; then $(CYGPATH_W) 'age/graph/animation_time.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_time.cpp'; fi`
  1559. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_time.Tpo $(DEPDIR)/animation_time.Po
  1560. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_time.cpp' object='animation_time.obj' libtool=no @AMDEPBACKSLASH@
  1561. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1562. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_time.obj `if test -f 'age/graph/animation_time.cpp'; then $(CYGPATH_W) 'age/graph/animation_time.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_time.cpp'; fi`
  1563. animation_track.o: age/graph/animation_track.cpp
  1564. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track.o -MD -MP -MF $(DEPDIR)/animation_track.Tpo -c -o animation_track.o `test -f 'age/graph/animation_track.cpp' || echo '$(srcdir)/'`age/graph/animation_track.cpp
  1565. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track.Tpo $(DEPDIR)/animation_track.Po
  1566. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track.cpp' object='animation_track.o' libtool=no @AMDEPBACKSLASH@
  1567. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1568. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track.o `test -f 'age/graph/animation_track.cpp' || echo '$(srcdir)/'`age/graph/animation_track.cpp
  1569. animation_track.obj: age/graph/animation_track.cpp
  1570. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track.obj -MD -MP -MF $(DEPDIR)/animation_track.Tpo -c -o animation_track.obj `if test -f 'age/graph/animation_track.cpp'; then $(CYGPATH_W) 'age/graph/animation_track.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track.cpp'; fi`
  1571. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track.Tpo $(DEPDIR)/animation_track.Po
  1572. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track.cpp' object='animation_track.obj' libtool=no @AMDEPBACKSLASH@
  1573. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1574. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track.obj `if test -f 'age/graph/animation_track.cpp'; then $(CYGPATH_W) 'age/graph/animation_track.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track.cpp'; fi`
  1575. animation_track_bezier.o: age/graph/animation_track_bezier.cpp
  1576. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track_bezier.o -MD -MP -MF $(DEPDIR)/animation_track_bezier.Tpo -c -o animation_track_bezier.o `test -f 'age/graph/animation_track_bezier.cpp' || echo '$(srcdir)/'`age/graph/animation_track_bezier.cpp
  1577. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track_bezier.Tpo $(DEPDIR)/animation_track_bezier.Po
  1578. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track_bezier.cpp' object='animation_track_bezier.o' libtool=no @AMDEPBACKSLASH@
  1579. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1580. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track_bezier.o `test -f 'age/graph/animation_track_bezier.cpp' || echo '$(srcdir)/'`age/graph/animation_track_bezier.cpp
  1581. animation_track_bezier.obj: age/graph/animation_track_bezier.cpp
  1582. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track_bezier.obj -MD -MP -MF $(DEPDIR)/animation_track_bezier.Tpo -c -o animation_track_bezier.obj `if test -f 'age/graph/animation_track_bezier.cpp'; then $(CYGPATH_W) 'age/graph/animation_track_bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track_bezier.cpp'; fi`
  1583. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track_bezier.Tpo $(DEPDIR)/animation_track_bezier.Po
  1584. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track_bezier.cpp' object='animation_track_bezier.obj' libtool=no @AMDEPBACKSLASH@
  1585. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1586. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track_bezier.obj `if test -f 'age/graph/animation_track_bezier.cpp'; then $(CYGPATH_W) 'age/graph/animation_track_bezier.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track_bezier.cpp'; fi`
  1587. animation_track_linear.o: age/graph/animation_track_linear.cpp
  1588. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track_linear.o -MD -MP -MF $(DEPDIR)/animation_track_linear.Tpo -c -o animation_track_linear.o `test -f 'age/graph/animation_track_linear.cpp' || echo '$(srcdir)/'`age/graph/animation_track_linear.cpp
  1589. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track_linear.Tpo $(DEPDIR)/animation_track_linear.Po
  1590. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track_linear.cpp' object='animation_track_linear.o' libtool=no @AMDEPBACKSLASH@
  1591. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1592. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track_linear.o `test -f 'age/graph/animation_track_linear.cpp' || echo '$(srcdir)/'`age/graph/animation_track_linear.cpp
  1593. animation_track_linear.obj: age/graph/animation_track_linear.cpp
  1594. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animation_track_linear.obj -MD -MP -MF $(DEPDIR)/animation_track_linear.Tpo -c -o animation_track_linear.obj `if test -f 'age/graph/animation_track_linear.cpp'; then $(CYGPATH_W) 'age/graph/animation_track_linear.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track_linear.cpp'; fi`
  1595. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animation_track_linear.Tpo $(DEPDIR)/animation_track_linear.Po
  1596. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/animation_track_linear.cpp' object='animation_track_linear.obj' libtool=no @AMDEPBACKSLASH@
  1597. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1598. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animation_track_linear.obj `if test -f 'age/graph/animation_track_linear.cpp'; then $(CYGPATH_W) 'age/graph/animation_track_linear.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/animation_track_linear.cpp'; fi`
  1599. bitmap.o: age/graph/bitmap.cpp
  1600. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT bitmap.o -MD -MP -MF $(DEPDIR)/bitmap.Tpo -c -o bitmap.o `test -f 'age/graph/bitmap.cpp' || echo '$(srcdir)/'`age/graph/bitmap.cpp
  1601. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/bitmap.Tpo $(DEPDIR)/bitmap.Po
  1602. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/bitmap.cpp' object='bitmap.o' libtool=no @AMDEPBACKSLASH@
  1603. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1604. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o bitmap.o `test -f 'age/graph/bitmap.cpp' || echo '$(srcdir)/'`age/graph/bitmap.cpp
  1605. bitmap.obj: age/graph/bitmap.cpp
  1606. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT bitmap.obj -MD -MP -MF $(DEPDIR)/bitmap.Tpo -c -o bitmap.obj `if test -f 'age/graph/bitmap.cpp'; then $(CYGPATH_W) 'age/graph/bitmap.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/bitmap.cpp'; fi`
  1607. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/bitmap.Tpo $(DEPDIR)/bitmap.Po
  1608. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/bitmap.cpp' object='bitmap.obj' libtool=no @AMDEPBACKSLASH@
  1609. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1610. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o bitmap.obj `if test -f 'age/graph/bitmap.cpp'; then $(CYGPATH_W) 'age/graph/bitmap.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/bitmap.cpp'; fi`
  1611. box.o: age/graph/box.cpp
  1612. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT box.o -MD -MP -MF $(DEPDIR)/box.Tpo -c -o box.o `test -f 'age/graph/box.cpp' || echo '$(srcdir)/'`age/graph/box.cpp
  1613. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/box.Tpo $(DEPDIR)/box.Po
  1614. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/box.cpp' object='box.o' libtool=no @AMDEPBACKSLASH@
  1615. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1616. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o box.o `test -f 'age/graph/box.cpp' || echo '$(srcdir)/'`age/graph/box.cpp
  1617. box.obj: age/graph/box.cpp
  1618. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT box.obj -MD -MP -MF $(DEPDIR)/box.Tpo -c -o box.obj `if test -f 'age/graph/box.cpp'; then $(CYGPATH_W) 'age/graph/box.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/box.cpp'; fi`
  1619. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/box.Tpo $(DEPDIR)/box.Po
  1620. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/box.cpp' object='box.obj' libtool=no @AMDEPBACKSLASH@
  1621. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1622. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o box.obj `if test -f 'age/graph/box.cpp'; then $(CYGPATH_W) 'age/graph/box.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/box.cpp'; fi`
  1623. camera.o: age/graph/camera.cpp
  1624. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camera.o -MD -MP -MF $(DEPDIR)/camera.Tpo -c -o camera.o `test -f 'age/graph/camera.cpp' || echo '$(srcdir)/'`age/graph/camera.cpp
  1625. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camera.Tpo $(DEPDIR)/camera.Po
  1626. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/camera.cpp' object='camera.o' libtool=no @AMDEPBACKSLASH@
  1627. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1628. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o camera.o `test -f 'age/graph/camera.cpp' || echo '$(srcdir)/'`age/graph/camera.cpp
  1629. camera.obj: age/graph/camera.cpp
  1630. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camera.obj -MD -MP -MF $(DEPDIR)/camera.Tpo -c -o camera.obj `if test -f 'age/graph/camera.cpp'; then $(CYGPATH_W) 'age/graph/camera.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/camera.cpp'; fi`
  1631. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camera.Tpo $(DEPDIR)/camera.Po
  1632. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/camera.cpp' object='camera.obj' libtool=no @AMDEPBACKSLASH@
  1633. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1634. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o camera.obj `if test -f 'age/graph/camera.cpp'; then $(CYGPATH_W) 'age/graph/camera.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/camera.cpp'; fi`
  1635. camera_interface.o: age/graph/camera_interface.cpp
  1636. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camera_interface.o -MD -MP -MF $(DEPDIR)/camera_interface.Tpo -c -o camera_interface.o `test -f 'age/graph/camera_interface.cpp' || echo '$(srcdir)/'`age/graph/camera_interface.cpp
  1637. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camera_interface.Tpo $(DEPDIR)/camera_interface.Po
  1638. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/camera_interface.cpp' object='camera_interface.o' libtool=no @AMDEPBACKSLASH@
  1639. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1640. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o camera_interface.o `test -f 'age/graph/camera_interface.cpp' || echo '$(srcdir)/'`age/graph/camera_interface.cpp
  1641. camera_interface.obj: age/graph/camera_interface.cpp
  1642. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camera_interface.obj -MD -MP -MF $(DEPDIR)/camera_interface.Tpo -c -o camera_interface.obj `if test -f 'age/graph/camera_interface.cpp'; then $(CYGPATH_W) 'age/graph/camera_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/camera_interface.cpp'; fi`
  1643. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camera_interface.Tpo $(DEPDIR)/camera_interface.Po
  1644. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/camera_interface.cpp' object='camera_interface.obj' libtool=no @AMDEPBACKSLASH@
  1645. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1646. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o camera_interface.obj `if test -f 'age/graph/camera_interface.cpp'; then $(CYGPATH_W) 'age/graph/camera_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/camera_interface.cpp'; fi`
  1647. color.o: age/graph/color.cpp
  1648. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT color.o -MD -MP -MF $(DEPDIR)/color.Tpo -c -o color.o `test -f 'age/graph/color.cpp' || echo '$(srcdir)/'`age/graph/color.cpp
  1649. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/color.Tpo $(DEPDIR)/color.Po
  1650. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/color.cpp' object='color.o' libtool=no @AMDEPBACKSLASH@
  1651. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1652. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o color.o `test -f 'age/graph/color.cpp' || echo '$(srcdir)/'`age/graph/color.cpp
  1653. color.obj: age/graph/color.cpp
  1654. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT color.obj -MD -MP -MF $(DEPDIR)/color.Tpo -c -o color.obj `if test -f 'age/graph/color.cpp'; then $(CYGPATH_W) 'age/graph/color.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/color.cpp'; fi`
  1655. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/color.Tpo $(DEPDIR)/color.Po
  1656. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/color.cpp' object='color.obj' libtool=no @AMDEPBACKSLASH@
  1657. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1658. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o color.obj `if test -f 'age/graph/color.cpp'; then $(CYGPATH_W) 'age/graph/color.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/color.cpp'; fi`
  1659. color_hsv.o: age/graph/color_hsv.cpp
  1660. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT color_hsv.o -MD -MP -MF $(DEPDIR)/color_hsv.Tpo -c -o color_hsv.o `test -f 'age/graph/color_hsv.cpp' || echo '$(srcdir)/'`age/graph/color_hsv.cpp
  1661. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/color_hsv.Tpo $(DEPDIR)/color_hsv.Po
  1662. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/color_hsv.cpp' object='color_hsv.o' libtool=no @AMDEPBACKSLASH@
  1663. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1664. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o color_hsv.o `test -f 'age/graph/color_hsv.cpp' || echo '$(srcdir)/'`age/graph/color_hsv.cpp
  1665. color_hsv.obj: age/graph/color_hsv.cpp
  1666. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT color_hsv.obj -MD -MP -MF $(DEPDIR)/color_hsv.Tpo -c -o color_hsv.obj `if test -f 'age/graph/color_hsv.cpp'; then $(CYGPATH_W) 'age/graph/color_hsv.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/color_hsv.cpp'; fi`
  1667. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/color_hsv.Tpo $(DEPDIR)/color_hsv.Po
  1668. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/color_hsv.cpp' object='color_hsv.obj' libtool=no @AMDEPBACKSLASH@
  1669. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1670. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o color_hsv.obj `if test -f 'age/graph/color_hsv.cpp'; then $(CYGPATH_W) 'age/graph/color_hsv.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/color_hsv.cpp'; fi`
  1671. draw.o: age/graph/draw.cpp
  1672. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT draw.o -MD -MP -MF $(DEPDIR)/draw.Tpo -c -o draw.o `test -f 'age/graph/draw.cpp' || echo '$(srcdir)/'`age/graph/draw.cpp
  1673. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/draw.Tpo $(DEPDIR)/draw.Po
  1674. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/draw.cpp' object='draw.o' libtool=no @AMDEPBACKSLASH@
  1675. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1676. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o draw.o `test -f 'age/graph/draw.cpp' || echo '$(srcdir)/'`age/graph/draw.cpp
  1677. draw.obj: age/graph/draw.cpp
  1678. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT draw.obj -MD -MP -MF $(DEPDIR)/draw.Tpo -c -o draw.obj `if test -f 'age/graph/draw.cpp'; then $(CYGPATH_W) 'age/graph/draw.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/draw.cpp'; fi`
  1679. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/draw.Tpo $(DEPDIR)/draw.Po
  1680. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/draw.cpp' object='draw.obj' libtool=no @AMDEPBACKSLASH@
  1681. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1682. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o draw.obj `if test -f 'age/graph/draw.cpp'; then $(CYGPATH_W) 'age/graph/draw.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/draw.cpp'; fi`
  1683. ferguson.o: age/graph/ferguson.cpp
  1684. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ferguson.o -MD -MP -MF $(DEPDIR)/ferguson.Tpo -c -o ferguson.o `test -f 'age/graph/ferguson.cpp' || echo '$(srcdir)/'`age/graph/ferguson.cpp
  1685. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/ferguson.Tpo $(DEPDIR)/ferguson.Po
  1686. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/ferguson.cpp' object='ferguson.o' libtool=no @AMDEPBACKSLASH@
  1687. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1688. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ferguson.o `test -f 'age/graph/ferguson.cpp' || echo '$(srcdir)/'`age/graph/ferguson.cpp
  1689. ferguson.obj: age/graph/ferguson.cpp
  1690. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ferguson.obj -MD -MP -MF $(DEPDIR)/ferguson.Tpo -c -o ferguson.obj `if test -f 'age/graph/ferguson.cpp'; then $(CYGPATH_W) 'age/graph/ferguson.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/ferguson.cpp'; fi`
  1691. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/ferguson.Tpo $(DEPDIR)/ferguson.Po
  1692. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/ferguson.cpp' object='ferguson.obj' libtool=no @AMDEPBACKSLASH@
  1693. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1694. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ferguson.obj `if test -f 'age/graph/ferguson.cpp'; then $(CYGPATH_W) 'age/graph/ferguson.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/ferguson.cpp'; fi`
  1695. gext.o: age/graph/gext.cpp
  1696. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gext.o -MD -MP -MF $(DEPDIR)/gext.Tpo -c -o gext.o `test -f 'age/graph/gext.cpp' || echo '$(srcdir)/'`age/graph/gext.cpp
  1697. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gext.Tpo $(DEPDIR)/gext.Po
  1698. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/gext.cpp' object='gext.o' libtool=no @AMDEPBACKSLASH@
  1699. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1700. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gext.o `test -f 'age/graph/gext.cpp' || echo '$(srcdir)/'`age/graph/gext.cpp
  1701. gext.obj: age/graph/gext.cpp
  1702. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gext.obj -MD -MP -MF $(DEPDIR)/gext.Tpo -c -o gext.obj `if test -f 'age/graph/gext.cpp'; then $(CYGPATH_W) 'age/graph/gext.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/gext.cpp'; fi`
  1703. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gext.Tpo $(DEPDIR)/gext.Po
  1704. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/gext.cpp' object='gext.obj' libtool=no @AMDEPBACKSLASH@
  1705. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1706. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gext.obj `if test -f 'age/graph/gext.cpp'; then $(CYGPATH_W) 'age/graph/gext.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/gext.cpp'; fi`
  1707. glwrapper.o: age/graph/glwrapper.cpp
  1708. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glwrapper.o -MD -MP -MF $(DEPDIR)/glwrapper.Tpo -c -o glwrapper.o `test -f 'age/graph/glwrapper.cpp' || echo '$(srcdir)/'`age/graph/glwrapper.cpp
  1709. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/glwrapper.Tpo $(DEPDIR)/glwrapper.Po
  1710. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/glwrapper.cpp' object='glwrapper.o' libtool=no @AMDEPBACKSLASH@
  1711. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1712. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glwrapper.o `test -f 'age/graph/glwrapper.cpp' || echo '$(srcdir)/'`age/graph/glwrapper.cpp
  1713. glwrapper.obj: age/graph/glwrapper.cpp
  1714. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT glwrapper.obj -MD -MP -MF $(DEPDIR)/glwrapper.Tpo -c -o glwrapper.obj `if test -f 'age/graph/glwrapper.cpp'; then $(CYGPATH_W) 'age/graph/glwrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/glwrapper.cpp'; fi`
  1715. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/glwrapper.Tpo $(DEPDIR)/glwrapper.Po
  1716. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/glwrapper.cpp' object='glwrapper.obj' libtool=no @AMDEPBACKSLASH@
  1717. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1718. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o glwrapper.obj `if test -f 'age/graph/glwrapper.cpp'; then $(CYGPATH_W) 'age/graph/glwrapper.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/glwrapper.cpp'; fi`
  1719. gpipe.o: age/graph/gpipe.cpp
  1720. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gpipe.o -MD -MP -MF $(DEPDIR)/gpipe.Tpo -c -o gpipe.o `test -f 'age/graph/gpipe.cpp' || echo '$(srcdir)/'`age/graph/gpipe.cpp
  1721. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gpipe.Tpo $(DEPDIR)/gpipe.Po
  1722. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/gpipe.cpp' object='gpipe.o' libtool=no @AMDEPBACKSLASH@
  1723. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1724. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gpipe.o `test -f 'age/graph/gpipe.cpp' || echo '$(srcdir)/'`age/graph/gpipe.cpp
  1725. gpipe.obj: age/graph/gpipe.cpp
  1726. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gpipe.obj -MD -MP -MF $(DEPDIR)/gpipe.Tpo -c -o gpipe.obj `if test -f 'age/graph/gpipe.cpp'; then $(CYGPATH_W) 'age/graph/gpipe.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/gpipe.cpp'; fi`
  1727. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gpipe.Tpo $(DEPDIR)/gpipe.Po
  1728. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/gpipe.cpp' object='gpipe.obj' libtool=no @AMDEPBACKSLASH@
  1729. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1730. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gpipe.obj `if test -f 'age/graph/gpipe.cpp'; then $(CYGPATH_W) 'age/graph/gpipe.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/gpipe.cpp'; fi`
  1731. graph3d.o: age/graph/graph3d.cpp
  1732. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT graph3d.o -MD -MP -MF $(DEPDIR)/graph3d.Tpo -c -o graph3d.o `test -f 'age/graph/graph3d.cpp' || echo '$(srcdir)/'`age/graph/graph3d.cpp
  1733. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/graph3d.Tpo $(DEPDIR)/graph3d.Po
  1734. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/graph3d.cpp' object='graph3d.o' libtool=no @AMDEPBACKSLASH@
  1735. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1736. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o graph3d.o `test -f 'age/graph/graph3d.cpp' || echo '$(srcdir)/'`age/graph/graph3d.cpp
  1737. graph3d.obj: age/graph/graph3d.cpp
  1738. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT graph3d.obj -MD -MP -MF $(DEPDIR)/graph3d.Tpo -c -o graph3d.obj `if test -f 'age/graph/graph3d.cpp'; then $(CYGPATH_W) 'age/graph/graph3d.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/graph3d.cpp'; fi`
  1739. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/graph3d.Tpo $(DEPDIR)/graph3d.Po
  1740. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/graph3d.cpp' object='graph3d.obj' libtool=no @AMDEPBACKSLASH@
  1741. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1742. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o graph3d.obj `if test -f 'age/graph/graph3d.cpp'; then $(CYGPATH_W) 'age/graph/graph3d.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/graph3d.cpp'; fi`
  1743. intersect.o: age/graph/intersect.cpp
  1744. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT intersect.o -MD -MP -MF $(DEPDIR)/intersect.Tpo -c -o intersect.o `test -f 'age/graph/intersect.cpp' || echo '$(srcdir)/'`age/graph/intersect.cpp
  1745. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/intersect.Tpo $(DEPDIR)/intersect.Po
  1746. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/intersect.cpp' object='intersect.o' libtool=no @AMDEPBACKSLASH@
  1747. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1748. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o intersect.o `test -f 'age/graph/intersect.cpp' || echo '$(srcdir)/'`age/graph/intersect.cpp
  1749. intersect.obj: age/graph/intersect.cpp
  1750. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT intersect.obj -MD -MP -MF $(DEPDIR)/intersect.Tpo -c -o intersect.obj `if test -f 'age/graph/intersect.cpp'; then $(CYGPATH_W) 'age/graph/intersect.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/intersect.cpp'; fi`
  1751. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/intersect.Tpo $(DEPDIR)/intersect.Po
  1752. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/intersect.cpp' object='intersect.obj' libtool=no @AMDEPBACKSLASH@
  1753. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1754. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o intersect.obj `if test -f 'age/graph/intersect.cpp'; then $(CYGPATH_W) 'age/graph/intersect.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/intersect.cpp'; fi`
  1755. lighting.o: age/graph/lighting.cpp
  1756. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lighting.o -MD -MP -MF $(DEPDIR)/lighting.Tpo -c -o lighting.o `test -f 'age/graph/lighting.cpp' || echo '$(srcdir)/'`age/graph/lighting.cpp
  1757. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/lighting.Tpo $(DEPDIR)/lighting.Po
  1758. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/lighting.cpp' object='lighting.o' libtool=no @AMDEPBACKSLASH@
  1759. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1760. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lighting.o `test -f 'age/graph/lighting.cpp' || echo '$(srcdir)/'`age/graph/lighting.cpp
  1761. lighting.obj: age/graph/lighting.cpp
  1762. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT lighting.obj -MD -MP -MF $(DEPDIR)/lighting.Tpo -c -o lighting.obj `if test -f 'age/graph/lighting.cpp'; then $(CYGPATH_W) 'age/graph/lighting.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/lighting.cpp'; fi`
  1763. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/lighting.Tpo $(DEPDIR)/lighting.Po
  1764. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/lighting.cpp' object='lighting.obj' libtool=no @AMDEPBACKSLASH@
  1765. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1766. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o lighting.obj `if test -f 'age/graph/lighting.cpp'; then $(CYGPATH_W) 'age/graph/lighting.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/lighting.cpp'; fi`
  1767. material.o: age/graph/material.cpp
  1768. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT material.o -MD -MP -MF $(DEPDIR)/material.Tpo -c -o material.o `test -f 'age/graph/material.cpp' || echo '$(srcdir)/'`age/graph/material.cpp
  1769. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/material.Tpo $(DEPDIR)/material.Po
  1770. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/material.cpp' object='material.o' libtool=no @AMDEPBACKSLASH@
  1771. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1772. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o material.o `test -f 'age/graph/material.cpp' || echo '$(srcdir)/'`age/graph/material.cpp
  1773. material.obj: age/graph/material.cpp
  1774. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT material.obj -MD -MP -MF $(DEPDIR)/material.Tpo -c -o material.obj `if test -f 'age/graph/material.cpp'; then $(CYGPATH_W) 'age/graph/material.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/material.cpp'; fi`
  1775. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/material.Tpo $(DEPDIR)/material.Po
  1776. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/material.cpp' object='material.obj' libtool=no @AMDEPBACKSLASH@
  1777. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1778. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o material.obj `if test -f 'age/graph/material.cpp'; then $(CYGPATH_W) 'age/graph/material.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/material.cpp'; fi`
  1779. material_texture.o: age/graph/material_texture.cpp
  1780. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT material_texture.o -MD -MP -MF $(DEPDIR)/material_texture.Tpo -c -o material_texture.o `test -f 'age/graph/material_texture.cpp' || echo '$(srcdir)/'`age/graph/material_texture.cpp
  1781. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/material_texture.Tpo $(DEPDIR)/material_texture.Po
  1782. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/material_texture.cpp' object='material_texture.o' libtool=no @AMDEPBACKSLASH@
  1783. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1784. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o material_texture.o `test -f 'age/graph/material_texture.cpp' || echo '$(srcdir)/'`age/graph/material_texture.cpp
  1785. material_texture.obj: age/graph/material_texture.cpp
  1786. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT material_texture.obj -MD -MP -MF $(DEPDIR)/material_texture.Tpo -c -o material_texture.obj `if test -f 'age/graph/material_texture.cpp'; then $(CYGPATH_W) 'age/graph/material_texture.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/material_texture.cpp'; fi`
  1787. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/material_texture.Tpo $(DEPDIR)/material_texture.Po
  1788. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/material_texture.cpp' object='material_texture.obj' libtool=no @AMDEPBACKSLASH@
  1789. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1790. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o material_texture.obj `if test -f 'age/graph/material_texture.cpp'; then $(CYGPATH_W) 'age/graph/material_texture.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/material_texture.cpp'; fi`
  1791. matrix.o: age/graph/matrix.cpp
  1792. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix.o -MD -MP -MF $(DEPDIR)/matrix.Tpo -c -o matrix.o `test -f 'age/graph/matrix.cpp' || echo '$(srcdir)/'`age/graph/matrix.cpp
  1793. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix.Tpo $(DEPDIR)/matrix.Po
  1794. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix.cpp' object='matrix.o' libtool=no @AMDEPBACKSLASH@
  1795. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1796. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix.o `test -f 'age/graph/matrix.cpp' || echo '$(srcdir)/'`age/graph/matrix.cpp
  1797. matrix.obj: age/graph/matrix.cpp
  1798. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix.obj -MD -MP -MF $(DEPDIR)/matrix.Tpo -c -o matrix.obj `if test -f 'age/graph/matrix.cpp'; then $(CYGPATH_W) 'age/graph/matrix.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix.cpp'; fi`
  1799. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix.Tpo $(DEPDIR)/matrix.Po
  1800. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix.cpp' object='matrix.obj' libtool=no @AMDEPBACKSLASH@
  1801. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1802. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix.obj `if test -f 'age/graph/matrix.cpp'; then $(CYGPATH_W) 'age/graph/matrix.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix.cpp'; fi`
  1803. matrix_animated.o: age/graph/matrix_animated.cpp
  1804. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix_animated.o -MD -MP -MF $(DEPDIR)/matrix_animated.Tpo -c -o matrix_animated.o `test -f 'age/graph/matrix_animated.cpp' || echo '$(srcdir)/'`age/graph/matrix_animated.cpp
  1805. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_animated.Tpo $(DEPDIR)/matrix_animated.Po
  1806. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix_animated.cpp' object='matrix_animated.o' libtool=no @AMDEPBACKSLASH@
  1807. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1808. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix_animated.o `test -f 'age/graph/matrix_animated.cpp' || echo '$(srcdir)/'`age/graph/matrix_animated.cpp
  1809. matrix_animated.obj: age/graph/matrix_animated.cpp
  1810. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix_animated.obj -MD -MP -MF $(DEPDIR)/matrix_animated.Tpo -c -o matrix_animated.obj `if test -f 'age/graph/matrix_animated.cpp'; then $(CYGPATH_W) 'age/graph/matrix_animated.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix_animated.cpp'; fi`
  1811. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_animated.Tpo $(DEPDIR)/matrix_animated.Po
  1812. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix_animated.cpp' object='matrix_animated.obj' libtool=no @AMDEPBACKSLASH@
  1813. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1814. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix_animated.obj `if test -f 'age/graph/matrix_animated.cpp'; then $(CYGPATH_W) 'age/graph/matrix_animated.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix_animated.cpp'; fi`
  1815. matrix_notified.o: age/graph/matrix_notified.cpp
  1816. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix_notified.o -MD -MP -MF $(DEPDIR)/matrix_notified.Tpo -c -o matrix_notified.o `test -f 'age/graph/matrix_notified.cpp' || echo '$(srcdir)/'`age/graph/matrix_notified.cpp
  1817. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_notified.Tpo $(DEPDIR)/matrix_notified.Po
  1818. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix_notified.cpp' object='matrix_notified.o' libtool=no @AMDEPBACKSLASH@
  1819. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1820. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix_notified.o `test -f 'age/graph/matrix_notified.cpp' || echo '$(srcdir)/'`age/graph/matrix_notified.cpp
  1821. matrix_notified.obj: age/graph/matrix_notified.cpp
  1822. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT matrix_notified.obj -MD -MP -MF $(DEPDIR)/matrix_notified.Tpo -c -o matrix_notified.obj `if test -f 'age/graph/matrix_notified.cpp'; then $(CYGPATH_W) 'age/graph/matrix_notified.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix_notified.cpp'; fi`
  1823. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/matrix_notified.Tpo $(DEPDIR)/matrix_notified.Po
  1824. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/matrix_notified.cpp' object='matrix_notified.obj' libtool=no @AMDEPBACKSLASH@
  1825. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1826. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o matrix_notified.obj `if test -f 'age/graph/matrix_notified.cpp'; then $(CYGPATH_W) 'age/graph/matrix_notified.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/matrix_notified.cpp'; fi`
  1827. mesh.o: age/graph/mesh.cpp
  1828. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mesh.o -MD -MP -MF $(DEPDIR)/mesh.Tpo -c -o mesh.o `test -f 'age/graph/mesh.cpp' || echo '$(srcdir)/'`age/graph/mesh.cpp
  1829. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mesh.Tpo $(DEPDIR)/mesh.Po
  1830. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/mesh.cpp' object='mesh.o' libtool=no @AMDEPBACKSLASH@
  1831. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1832. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mesh.o `test -f 'age/graph/mesh.cpp' || echo '$(srcdir)/'`age/graph/mesh.cpp
  1833. mesh.obj: age/graph/mesh.cpp
  1834. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mesh.obj -MD -MP -MF $(DEPDIR)/mesh.Tpo -c -o mesh.obj `if test -f 'age/graph/mesh.cpp'; then $(CYGPATH_W) 'age/graph/mesh.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/mesh.cpp'; fi`
  1835. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mesh.Tpo $(DEPDIR)/mesh.Po
  1836. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/mesh.cpp' object='mesh.obj' libtool=no @AMDEPBACKSLASH@
  1837. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1838. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mesh.obj `if test -f 'age/graph/mesh.cpp'; then $(CYGPATH_W) 'age/graph/mesh.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/mesh.cpp'; fi`
  1839. normals.o: age/graph/normals.cpp
  1840. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT normals.o -MD -MP -MF $(DEPDIR)/normals.Tpo -c -o normals.o `test -f 'age/graph/normals.cpp' || echo '$(srcdir)/'`age/graph/normals.cpp
  1841. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/normals.Tpo $(DEPDIR)/normals.Po
  1842. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/normals.cpp' object='normals.o' libtool=no @AMDEPBACKSLASH@
  1843. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1844. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o normals.o `test -f 'age/graph/normals.cpp' || echo '$(srcdir)/'`age/graph/normals.cpp
  1845. normals.obj: age/graph/normals.cpp
  1846. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT normals.obj -MD -MP -MF $(DEPDIR)/normals.Tpo -c -o normals.obj `if test -f 'age/graph/normals.cpp'; then $(CYGPATH_W) 'age/graph/normals.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/normals.cpp'; fi`
  1847. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/normals.Tpo $(DEPDIR)/normals.Po
  1848. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/normals.cpp' object='normals.obj' libtool=no @AMDEPBACKSLASH@
  1849. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1850. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o normals.obj `if test -f 'age/graph/normals.cpp'; then $(CYGPATH_W) 'age/graph/normals.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/normals.cpp'; fi`
  1851. obb.o: age/graph/obb.cpp
  1852. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT obb.o -MD -MP -MF $(DEPDIR)/obb.Tpo -c -o obb.o `test -f 'age/graph/obb.cpp' || echo '$(srcdir)/'`age/graph/obb.cpp
  1853. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/obb.Tpo $(DEPDIR)/obb.Po
  1854. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/obb.cpp' object='obb.o' libtool=no @AMDEPBACKSLASH@
  1855. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1856. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o obb.o `test -f 'age/graph/obb.cpp' || echo '$(srcdir)/'`age/graph/obb.cpp
  1857. obb.obj: age/graph/obb.cpp
  1858. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT obb.obj -MD -MP -MF $(DEPDIR)/obb.Tpo -c -o obb.obj `if test -f 'age/graph/obb.cpp'; then $(CYGPATH_W) 'age/graph/obb.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/obb.cpp'; fi`
  1859. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/obb.Tpo $(DEPDIR)/obb.Po
  1860. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/obb.cpp' object='obb.obj' libtool=no @AMDEPBACKSLASH@
  1861. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1862. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o obb.obj `if test -f 'age/graph/obb.cpp'; then $(CYGPATH_W) 'age/graph/obb.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/obb.cpp'; fi`
  1863. object_base.o: age/graph/object_base.cpp
  1864. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_base.o -MD -MP -MF $(DEPDIR)/object_base.Tpo -c -o object_base.o `test -f 'age/graph/object_base.cpp' || echo '$(srcdir)/'`age/graph/object_base.cpp
  1865. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_base.Tpo $(DEPDIR)/object_base.Po
  1866. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_base.cpp' object='object_base.o' libtool=no @AMDEPBACKSLASH@
  1867. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1868. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_base.o `test -f 'age/graph/object_base.cpp' || echo '$(srcdir)/'`age/graph/object_base.cpp
  1869. object_base.obj: age/graph/object_base.cpp
  1870. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_base.obj -MD -MP -MF $(DEPDIR)/object_base.Tpo -c -o object_base.obj `if test -f 'age/graph/object_base.cpp'; then $(CYGPATH_W) 'age/graph/object_base.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_base.cpp'; fi`
  1871. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_base.Tpo $(DEPDIR)/object_base.Po
  1872. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_base.cpp' object='object_base.obj' libtool=no @AMDEPBACKSLASH@
  1873. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1874. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_base.obj `if test -f 'age/graph/object_base.cpp'; then $(CYGPATH_W) 'age/graph/object_base.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_base.cpp'; fi`
  1875. object_box.o: age/graph/object_box.cpp
  1876. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_box.o -MD -MP -MF $(DEPDIR)/object_box.Tpo -c -o object_box.o `test -f 'age/graph/object_box.cpp' || echo '$(srcdir)/'`age/graph/object_box.cpp
  1877. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_box.Tpo $(DEPDIR)/object_box.Po
  1878. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_box.cpp' object='object_box.o' libtool=no @AMDEPBACKSLASH@
  1879. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1880. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_box.o `test -f 'age/graph/object_box.cpp' || echo '$(srcdir)/'`age/graph/object_box.cpp
  1881. object_box.obj: age/graph/object_box.cpp
  1882. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_box.obj -MD -MP -MF $(DEPDIR)/object_box.Tpo -c -o object_box.obj `if test -f 'age/graph/object_box.cpp'; then $(CYGPATH_W) 'age/graph/object_box.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_box.cpp'; fi`
  1883. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_box.Tpo $(DEPDIR)/object_box.Po
  1884. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_box.cpp' object='object_box.obj' libtool=no @AMDEPBACKSLASH@
  1885. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1886. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_box.obj `if test -f 'age/graph/object_box.cpp'; then $(CYGPATH_W) 'age/graph/object_box.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_box.cpp'; fi`
  1887. object_geometry.o: age/graph/object_geometry.cpp
  1888. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_geometry.o -MD -MP -MF $(DEPDIR)/object_geometry.Tpo -c -o object_geometry.o `test -f 'age/graph/object_geometry.cpp' || echo '$(srcdir)/'`age/graph/object_geometry.cpp
  1889. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_geometry.Tpo $(DEPDIR)/object_geometry.Po
  1890. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_geometry.cpp' object='object_geometry.o' libtool=no @AMDEPBACKSLASH@
  1891. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1892. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_geometry.o `test -f 'age/graph/object_geometry.cpp' || echo '$(srcdir)/'`age/graph/object_geometry.cpp
  1893. object_geometry.obj: age/graph/object_geometry.cpp
  1894. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_geometry.obj -MD -MP -MF $(DEPDIR)/object_geometry.Tpo -c -o object_geometry.obj `if test -f 'age/graph/object_geometry.cpp'; then $(CYGPATH_W) 'age/graph/object_geometry.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_geometry.cpp'; fi`
  1895. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_geometry.Tpo $(DEPDIR)/object_geometry.Po
  1896. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_geometry.cpp' object='object_geometry.obj' libtool=no @AMDEPBACKSLASH@
  1897. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1898. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_geometry.obj `if test -f 'age/graph/object_geometry.cpp'; then $(CYGPATH_W) 'age/graph/object_geometry.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_geometry.cpp'; fi`
  1899. object_hierarchy.o: age/graph/object_hierarchy.cpp
  1900. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_hierarchy.o -MD -MP -MF $(DEPDIR)/object_hierarchy.Tpo -c -o object_hierarchy.o `test -f 'age/graph/object_hierarchy.cpp' || echo '$(srcdir)/'`age/graph/object_hierarchy.cpp
  1901. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_hierarchy.Tpo $(DEPDIR)/object_hierarchy.Po
  1902. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_hierarchy.cpp' object='object_hierarchy.o' libtool=no @AMDEPBACKSLASH@
  1903. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1904. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_hierarchy.o `test -f 'age/graph/object_hierarchy.cpp' || echo '$(srcdir)/'`age/graph/object_hierarchy.cpp
  1905. object_hierarchy.obj: age/graph/object_hierarchy.cpp
  1906. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_hierarchy.obj -MD -MP -MF $(DEPDIR)/object_hierarchy.Tpo -c -o object_hierarchy.obj `if test -f 'age/graph/object_hierarchy.cpp'; then $(CYGPATH_W) 'age/graph/object_hierarchy.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_hierarchy.cpp'; fi`
  1907. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_hierarchy.Tpo $(DEPDIR)/object_hierarchy.Po
  1908. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_hierarchy.cpp' object='object_hierarchy.obj' libtool=no @AMDEPBACKSLASH@
  1909. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1910. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_hierarchy.obj `if test -f 'age/graph/object_hierarchy.cpp'; then $(CYGPATH_W) 'age/graph/object_hierarchy.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_hierarchy.cpp'; fi`
  1911. object_list.o: age/graph/object_list.cpp
  1912. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_list.o -MD -MP -MF $(DEPDIR)/object_list.Tpo -c -o object_list.o `test -f 'age/graph/object_list.cpp' || echo '$(srcdir)/'`age/graph/object_list.cpp
  1913. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_list.Tpo $(DEPDIR)/object_list.Po
  1914. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_list.cpp' object='object_list.o' libtool=no @AMDEPBACKSLASH@
  1915. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1916. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_list.o `test -f 'age/graph/object_list.cpp' || echo '$(srcdir)/'`age/graph/object_list.cpp
  1917. object_list.obj: age/graph/object_list.cpp
  1918. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_list.obj -MD -MP -MF $(DEPDIR)/object_list.Tpo -c -o object_list.obj `if test -f 'age/graph/object_list.cpp'; then $(CYGPATH_W) 'age/graph/object_list.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_list.cpp'; fi`
  1919. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_list.Tpo $(DEPDIR)/object_list.Po
  1920. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_list.cpp' object='object_list.obj' libtool=no @AMDEPBACKSLASH@
  1921. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1922. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_list.obj `if test -f 'age/graph/object_list.cpp'; then $(CYGPATH_W) 'age/graph/object_list.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_list.cpp'; fi`
  1923. object_render_list.o: age/graph/object_render_list.cpp
  1924. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_render_list.o -MD -MP -MF $(DEPDIR)/object_render_list.Tpo -c -o object_render_list.o `test -f 'age/graph/object_render_list.cpp' || echo '$(srcdir)/'`age/graph/object_render_list.cpp
  1925. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_render_list.Tpo $(DEPDIR)/object_render_list.Po
  1926. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_render_list.cpp' object='object_render_list.o' libtool=no @AMDEPBACKSLASH@
  1927. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1928. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_render_list.o `test -f 'age/graph/object_render_list.cpp' || echo '$(srcdir)/'`age/graph/object_render_list.cpp
  1929. object_render_list.obj: age/graph/object_render_list.cpp
  1930. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_render_list.obj -MD -MP -MF $(DEPDIR)/object_render_list.Tpo -c -o object_render_list.obj `if test -f 'age/graph/object_render_list.cpp'; then $(CYGPATH_W) 'age/graph/object_render_list.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_render_list.cpp'; fi`
  1931. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_render_list.Tpo $(DEPDIR)/object_render_list.Po
  1932. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_render_list.cpp' object='object_render_list.obj' libtool=no @AMDEPBACKSLASH@
  1933. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1934. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_render_list.obj `if test -f 'age/graph/object_render_list.cpp'; then $(CYGPATH_W) 'age/graph/object_render_list.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_render_list.cpp'; fi`
  1935. object_scene.o: age/graph/object_scene.cpp
  1936. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_scene.o -MD -MP -MF $(DEPDIR)/object_scene.Tpo -c -o object_scene.o `test -f 'age/graph/object_scene.cpp' || echo '$(srcdir)/'`age/graph/object_scene.cpp
  1937. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_scene.Tpo $(DEPDIR)/object_scene.Po
  1938. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_scene.cpp' object='object_scene.o' libtool=no @AMDEPBACKSLASH@
  1939. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1940. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_scene.o `test -f 'age/graph/object_scene.cpp' || echo '$(srcdir)/'`age/graph/object_scene.cpp
  1941. object_scene.obj: age/graph/object_scene.cpp
  1942. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_scene.obj -MD -MP -MF $(DEPDIR)/object_scene.Tpo -c -o object_scene.obj `if test -f 'age/graph/object_scene.cpp'; then $(CYGPATH_W) 'age/graph/object_scene.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_scene.cpp'; fi`
  1943. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_scene.Tpo $(DEPDIR)/object_scene.Po
  1944. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_scene.cpp' object='object_scene.obj' libtool=no @AMDEPBACKSLASH@
  1945. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1946. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_scene.obj `if test -f 'age/graph/object_scene.cpp'; then $(CYGPATH_W) 'age/graph/object_scene.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_scene.cpp'; fi`
  1947. object_transformation.o: age/graph/object_transformation.cpp
  1948. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_transformation.o -MD -MP -MF $(DEPDIR)/object_transformation.Tpo -c -o object_transformation.o `test -f 'age/graph/object_transformation.cpp' || echo '$(srcdir)/'`age/graph/object_transformation.cpp
  1949. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_transformation.Tpo $(DEPDIR)/object_transformation.Po
  1950. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_transformation.cpp' object='object_transformation.o' libtool=no @AMDEPBACKSLASH@
  1951. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1952. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_transformation.o `test -f 'age/graph/object_transformation.cpp' || echo '$(srcdir)/'`age/graph/object_transformation.cpp
  1953. object_transformation.obj: age/graph/object_transformation.cpp
  1954. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_transformation.obj -MD -MP -MF $(DEPDIR)/object_transformation.Tpo -c -o object_transformation.obj `if test -f 'age/graph/object_transformation.cpp'; then $(CYGPATH_W) 'age/graph/object_transformation.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_transformation.cpp'; fi`
  1955. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_transformation.Tpo $(DEPDIR)/object_transformation.Po
  1956. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_transformation.cpp' object='object_transformation.obj' libtool=no @AMDEPBACKSLASH@
  1957. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1958. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_transformation.obj `if test -f 'age/graph/object_transformation.cpp'; then $(CYGPATH_W) 'age/graph/object_transformation.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_transformation.cpp'; fi`
  1959. object_world.o: age/graph/object_world.cpp
  1960. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_world.o -MD -MP -MF $(DEPDIR)/object_world.Tpo -c -o object_world.o `test -f 'age/graph/object_world.cpp' || echo '$(srcdir)/'`age/graph/object_world.cpp
  1961. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_world.Tpo $(DEPDIR)/object_world.Po
  1962. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_world.cpp' object='object_world.o' libtool=no @AMDEPBACKSLASH@
  1963. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1964. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_world.o `test -f 'age/graph/object_world.cpp' || echo '$(srcdir)/'`age/graph/object_world.cpp
  1965. object_world.obj: age/graph/object_world.cpp
  1966. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT object_world.obj -MD -MP -MF $(DEPDIR)/object_world.Tpo -c -o object_world.obj `if test -f 'age/graph/object_world.cpp'; then $(CYGPATH_W) 'age/graph/object_world.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_world.cpp'; fi`
  1967. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/object_world.Tpo $(DEPDIR)/object_world.Po
  1968. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/object_world.cpp' object='object_world.obj' libtool=no @AMDEPBACKSLASH@
  1969. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1970. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o object_world.obj `if test -f 'age/graph/object_world.cpp'; then $(CYGPATH_W) 'age/graph/object_world.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/object_world.cpp'; fi`
  1971. polar.o: age/graph/polar.cpp
  1972. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT polar.o -MD -MP -MF $(DEPDIR)/polar.Tpo -c -o polar.o `test -f 'age/graph/polar.cpp' || echo '$(srcdir)/'`age/graph/polar.cpp
  1973. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/polar.Tpo $(DEPDIR)/polar.Po
  1974. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/polar.cpp' object='polar.o' libtool=no @AMDEPBACKSLASH@
  1975. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1976. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o polar.o `test -f 'age/graph/polar.cpp' || echo '$(srcdir)/'`age/graph/polar.cpp
  1977. polar.obj: age/graph/polar.cpp
  1978. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT polar.obj -MD -MP -MF $(DEPDIR)/polar.Tpo -c -o polar.obj `if test -f 'age/graph/polar.cpp'; then $(CYGPATH_W) 'age/graph/polar.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/polar.cpp'; fi`
  1979. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/polar.Tpo $(DEPDIR)/polar.Po
  1980. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/polar.cpp' object='polar.obj' libtool=no @AMDEPBACKSLASH@
  1981. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1982. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o polar.obj `if test -f 'age/graph/polar.cpp'; then $(CYGPATH_W) 'age/graph/polar.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/polar.cpp'; fi`
  1983. print.o: age/graph/print.cpp
  1984. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT print.o -MD -MP -MF $(DEPDIR)/print.Tpo -c -o print.o `test -f 'age/graph/print.cpp' || echo '$(srcdir)/'`age/graph/print.cpp
  1985. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/print.Tpo $(DEPDIR)/print.Po
  1986. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/print.cpp' object='print.o' libtool=no @AMDEPBACKSLASH@
  1987. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1988. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o print.o `test -f 'age/graph/print.cpp' || echo '$(srcdir)/'`age/graph/print.cpp
  1989. print.obj: age/graph/print.cpp
  1990. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT print.obj -MD -MP -MF $(DEPDIR)/print.Tpo -c -o print.obj `if test -f 'age/graph/print.cpp'; then $(CYGPATH_W) 'age/graph/print.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/print.cpp'; fi`
  1991. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/print.Tpo $(DEPDIR)/print.Po
  1992. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/print.cpp' object='print.obj' libtool=no @AMDEPBACKSLASH@
  1993. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  1994. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o print.obj `if test -f 'age/graph/print.cpp'; then $(CYGPATH_W) 'age/graph/print.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/print.cpp'; fi`
  1995. scene.o: age/graph/scene.cpp
  1996. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene.o -MD -MP -MF $(DEPDIR)/scene.Tpo -c -o scene.o `test -f 'age/graph/scene.cpp' || echo '$(srcdir)/'`age/graph/scene.cpp
  1997. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene.Tpo $(DEPDIR)/scene.Po
  1998. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene.cpp' object='scene.o' libtool=no @AMDEPBACKSLASH@
  1999. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2000. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene.o `test -f 'age/graph/scene.cpp' || echo '$(srcdir)/'`age/graph/scene.cpp
  2001. scene.obj: age/graph/scene.cpp
  2002. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene.obj -MD -MP -MF $(DEPDIR)/scene.Tpo -c -o scene.obj `if test -f 'age/graph/scene.cpp'; then $(CYGPATH_W) 'age/graph/scene.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene.cpp'; fi`
  2003. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene.Tpo $(DEPDIR)/scene.Po
  2004. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene.cpp' object='scene.obj' libtool=no @AMDEPBACKSLASH@
  2005. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2006. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene.obj `if test -f 'age/graph/scene.cpp'; then $(CYGPATH_W) 'age/graph/scene.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene.cpp'; fi`
  2007. scene_import_3ds.o: age/graph/scene_import_3ds.cpp
  2008. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_3ds.o -MD -MP -MF $(DEPDIR)/scene_import_3ds.Tpo -c -o scene_import_3ds.o `test -f 'age/graph/scene_import_3ds.cpp' || echo '$(srcdir)/'`age/graph/scene_import_3ds.cpp
  2009. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_3ds.Tpo $(DEPDIR)/scene_import_3ds.Po
  2010. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_3ds.cpp' object='scene_import_3ds.o' libtool=no @AMDEPBACKSLASH@
  2011. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2012. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_3ds.o `test -f 'age/graph/scene_import_3ds.cpp' || echo '$(srcdir)/'`age/graph/scene_import_3ds.cpp
  2013. scene_import_3ds.obj: age/graph/scene_import_3ds.cpp
  2014. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_3ds.obj -MD -MP -MF $(DEPDIR)/scene_import_3ds.Tpo -c -o scene_import_3ds.obj `if test -f 'age/graph/scene_import_3ds.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_3ds.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_3ds.cpp'; fi`
  2015. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_3ds.Tpo $(DEPDIR)/scene_import_3ds.Po
  2016. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_3ds.cpp' object='scene_import_3ds.obj' libtool=no @AMDEPBACKSLASH@
  2017. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2018. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_3ds.obj `if test -f 'age/graph/scene_import_3ds.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_3ds.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_3ds.cpp'; fi`
  2019. scene_import_b2m.o: age/graph/scene_import_b2m.cpp
  2020. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_b2m.o -MD -MP -MF $(DEPDIR)/scene_import_b2m.Tpo -c -o scene_import_b2m.o `test -f 'age/graph/scene_import_b2m.cpp' || echo '$(srcdir)/'`age/graph/scene_import_b2m.cpp
  2021. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_b2m.Tpo $(DEPDIR)/scene_import_b2m.Po
  2022. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_b2m.cpp' object='scene_import_b2m.o' libtool=no @AMDEPBACKSLASH@
  2023. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2024. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_b2m.o `test -f 'age/graph/scene_import_b2m.cpp' || echo '$(srcdir)/'`age/graph/scene_import_b2m.cpp
  2025. scene_import_b2m.obj: age/graph/scene_import_b2m.cpp
  2026. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_b2m.obj -MD -MP -MF $(DEPDIR)/scene_import_b2m.Tpo -c -o scene_import_b2m.obj `if test -f 'age/graph/scene_import_b2m.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_b2m.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_b2m.cpp'; fi`
  2027. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_b2m.Tpo $(DEPDIR)/scene_import_b2m.Po
  2028. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_b2m.cpp' object='scene_import_b2m.obj' libtool=no @AMDEPBACKSLASH@
  2029. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2030. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_b2m.obj `if test -f 'age/graph/scene_import_b2m.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_b2m.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_b2m.cpp'; fi`
  2031. scene_import_txt.o: age/graph/scene_import_txt.cpp
  2032. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_txt.o -MD -MP -MF $(DEPDIR)/scene_import_txt.Tpo -c -o scene_import_txt.o `test -f 'age/graph/scene_import_txt.cpp' || echo '$(srcdir)/'`age/graph/scene_import_txt.cpp
  2033. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_txt.Tpo $(DEPDIR)/scene_import_txt.Po
  2034. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_txt.cpp' object='scene_import_txt.o' libtool=no @AMDEPBACKSLASH@
  2035. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2036. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_txt.o `test -f 'age/graph/scene_import_txt.cpp' || echo '$(srcdir)/'`age/graph/scene_import_txt.cpp
  2037. scene_import_txt.obj: age/graph/scene_import_txt.cpp
  2038. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_import_txt.obj -MD -MP -MF $(DEPDIR)/scene_import_txt.Tpo -c -o scene_import_txt.obj `if test -f 'age/graph/scene_import_txt.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_txt.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_txt.cpp'; fi`
  2039. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_import_txt.Tpo $(DEPDIR)/scene_import_txt.Po
  2040. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_import_txt.cpp' object='scene_import_txt.obj' libtool=no @AMDEPBACKSLASH@
  2041. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2042. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_import_txt.obj `if test -f 'age/graph/scene_import_txt.cpp'; then $(CYGPATH_W) 'age/graph/scene_import_txt.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_import_txt.cpp'; fi`
  2043. scene_load.o: age/graph/scene_load.cpp
  2044. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_load.o -MD -MP -MF $(DEPDIR)/scene_load.Tpo -c -o scene_load.o `test -f 'age/graph/scene_load.cpp' || echo '$(srcdir)/'`age/graph/scene_load.cpp
  2045. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_load.Tpo $(DEPDIR)/scene_load.Po
  2046. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_load.cpp' object='scene_load.o' libtool=no @AMDEPBACKSLASH@
  2047. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2048. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_load.o `test -f 'age/graph/scene_load.cpp' || echo '$(srcdir)/'`age/graph/scene_load.cpp
  2049. scene_load.obj: age/graph/scene_load.cpp
  2050. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT scene_load.obj -MD -MP -MF $(DEPDIR)/scene_load.Tpo -c -o scene_load.obj `if test -f 'age/graph/scene_load.cpp'; then $(CYGPATH_W) 'age/graph/scene_load.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_load.cpp'; fi`
  2051. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/scene_load.Tpo $(DEPDIR)/scene_load.Po
  2052. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/scene_load.cpp' object='scene_load.obj' libtool=no @AMDEPBACKSLASH@
  2053. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2054. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o scene_load.obj `if test -f 'age/graph/scene_load.cpp'; then $(CYGPATH_W) 'age/graph/scene_load.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/scene_load.cpp'; fi`
  2055. selection.o: age/graph/selection.cpp
  2056. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT selection.o -MD -MP -MF $(DEPDIR)/selection.Tpo -c -o selection.o `test -f 'age/graph/selection.cpp' || echo '$(srcdir)/'`age/graph/selection.cpp
  2057. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/selection.Tpo $(DEPDIR)/selection.Po
  2058. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/selection.cpp' object='selection.o' libtool=no @AMDEPBACKSLASH@
  2059. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2060. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o selection.o `test -f 'age/graph/selection.cpp' || echo '$(srcdir)/'`age/graph/selection.cpp
  2061. selection.obj: age/graph/selection.cpp
  2062. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT selection.obj -MD -MP -MF $(DEPDIR)/selection.Tpo -c -o selection.obj `if test -f 'age/graph/selection.cpp'; then $(CYGPATH_W) 'age/graph/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/selection.cpp'; fi`
  2063. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/selection.Tpo $(DEPDIR)/selection.Po
  2064. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/selection.cpp' object='selection.obj' libtool=no @AMDEPBACKSLASH@
  2065. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2066. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o selection.obj `if test -f 'age/graph/selection.cpp'; then $(CYGPATH_W) 'age/graph/selection.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/selection.cpp'; fi`
  2067. surface.o: age/graph/surface.cpp
  2068. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface.o -MD -MP -MF $(DEPDIR)/surface.Tpo -c -o surface.o `test -f 'age/graph/surface.cpp' || echo '$(srcdir)/'`age/graph/surface.cpp
  2069. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface.Tpo $(DEPDIR)/surface.Po
  2070. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface.cpp' object='surface.o' libtool=no @AMDEPBACKSLASH@
  2071. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2072. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface.o `test -f 'age/graph/surface.cpp' || echo '$(srcdir)/'`age/graph/surface.cpp
  2073. surface.obj: age/graph/surface.cpp
  2074. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface.obj -MD -MP -MF $(DEPDIR)/surface.Tpo -c -o surface.obj `if test -f 'age/graph/surface.cpp'; then $(CYGPATH_W) 'age/graph/surface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface.cpp'; fi`
  2075. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface.Tpo $(DEPDIR)/surface.Po
  2076. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface.cpp' object='surface.obj' libtool=no @AMDEPBACKSLASH@
  2077. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2078. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface.obj `if test -f 'age/graph/surface.cpp'; then $(CYGPATH_W) 'age/graph/surface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface.cpp'; fi`
  2079. surface_height.o: age/graph/surface_height.cpp
  2080. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_height.o -MD -MP -MF $(DEPDIR)/surface_height.Tpo -c -o surface_height.o `test -f 'age/graph/surface_height.cpp' || echo '$(srcdir)/'`age/graph/surface_height.cpp
  2081. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_height.Tpo $(DEPDIR)/surface_height.Po
  2082. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_height.cpp' object='surface_height.o' libtool=no @AMDEPBACKSLASH@
  2083. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2084. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_height.o `test -f 'age/graph/surface_height.cpp' || echo '$(srcdir)/'`age/graph/surface_height.cpp
  2085. surface_height.obj: age/graph/surface_height.cpp
  2086. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_height.obj -MD -MP -MF $(DEPDIR)/surface_height.Tpo -c -o surface_height.obj `if test -f 'age/graph/surface_height.cpp'; then $(CYGPATH_W) 'age/graph/surface_height.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_height.cpp'; fi`
  2087. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_height.Tpo $(DEPDIR)/surface_height.Po
  2088. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_height.cpp' object='surface_height.obj' libtool=no @AMDEPBACKSLASH@
  2089. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2090. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_height.obj `if test -f 'age/graph/surface_height.cpp'; then $(CYGPATH_W) 'age/graph/surface_height.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_height.cpp'; fi`
  2091. surface_mask.o: age/graph/surface_mask.cpp
  2092. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_mask.o -MD -MP -MF $(DEPDIR)/surface_mask.Tpo -c -o surface_mask.o `test -f 'age/graph/surface_mask.cpp' || echo '$(srcdir)/'`age/graph/surface_mask.cpp
  2093. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_mask.Tpo $(DEPDIR)/surface_mask.Po
  2094. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_mask.cpp' object='surface_mask.o' libtool=no @AMDEPBACKSLASH@
  2095. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2096. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_mask.o `test -f 'age/graph/surface_mask.cpp' || echo '$(srcdir)/'`age/graph/surface_mask.cpp
  2097. surface_mask.obj: age/graph/surface_mask.cpp
  2098. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_mask.obj -MD -MP -MF $(DEPDIR)/surface_mask.Tpo -c -o surface_mask.obj `if test -f 'age/graph/surface_mask.cpp'; then $(CYGPATH_W) 'age/graph/surface_mask.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_mask.cpp'; fi`
  2099. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_mask.Tpo $(DEPDIR)/surface_mask.Po
  2100. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_mask.cpp' object='surface_mask.obj' libtool=no @AMDEPBACKSLASH@
  2101. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2102. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_mask.obj `if test -f 'age/graph/surface_mask.cpp'; then $(CYGPATH_W) 'age/graph/surface_mask.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_mask.cpp'; fi`
  2103. surface_sdl.o: age/graph/surface_sdl.cpp
  2104. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_sdl.o -MD -MP -MF $(DEPDIR)/surface_sdl.Tpo -c -o surface_sdl.o `test -f 'age/graph/surface_sdl.cpp' || echo '$(srcdir)/'`age/graph/surface_sdl.cpp
  2105. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_sdl.Tpo $(DEPDIR)/surface_sdl.Po
  2106. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_sdl.cpp' object='surface_sdl.o' libtool=no @AMDEPBACKSLASH@
  2107. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2108. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_sdl.o `test -f 'age/graph/surface_sdl.cpp' || echo '$(srcdir)/'`age/graph/surface_sdl.cpp
  2109. surface_sdl.obj: age/graph/surface_sdl.cpp
  2110. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_sdl.obj -MD -MP -MF $(DEPDIR)/surface_sdl.Tpo -c -o surface_sdl.obj `if test -f 'age/graph/surface_sdl.cpp'; then $(CYGPATH_W) 'age/graph/surface_sdl.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_sdl.cpp'; fi`
  2111. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_sdl.Tpo $(DEPDIR)/surface_sdl.Po
  2112. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_sdl.cpp' object='surface_sdl.obj' libtool=no @AMDEPBACKSLASH@
  2113. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2114. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_sdl.obj `if test -f 'age/graph/surface_sdl.cpp'; then $(CYGPATH_W) 'age/graph/surface_sdl.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_sdl.cpp'; fi`
  2115. surface_sw.o: age/graph/surface_sw.cpp
  2116. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_sw.o -MD -MP -MF $(DEPDIR)/surface_sw.Tpo -c -o surface_sw.o `test -f 'age/graph/surface_sw.cpp' || echo '$(srcdir)/'`age/graph/surface_sw.cpp
  2117. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_sw.Tpo $(DEPDIR)/surface_sw.Po
  2118. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_sw.cpp' object='surface_sw.o' libtool=no @AMDEPBACKSLASH@
  2119. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2120. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_sw.o `test -f 'age/graph/surface_sw.cpp' || echo '$(srcdir)/'`age/graph/surface_sw.cpp
  2121. surface_sw.obj: age/graph/surface_sw.cpp
  2122. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT surface_sw.obj -MD -MP -MF $(DEPDIR)/surface_sw.Tpo -c -o surface_sw.obj `if test -f 'age/graph/surface_sw.cpp'; then $(CYGPATH_W) 'age/graph/surface_sw.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_sw.cpp'; fi`
  2123. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/surface_sw.Tpo $(DEPDIR)/surface_sw.Po
  2124. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/surface_sw.cpp' object='surface_sw.obj' libtool=no @AMDEPBACKSLASH@
  2125. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2126. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o surface_sw.obj `if test -f 'age/graph/surface_sw.cpp'; then $(CYGPATH_W) 'age/graph/surface_sw.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/surface_sw.cpp'; fi`
  2127. texture_func.o: age/graph/texture_func.cpp
  2128. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture_func.o -MD -MP -MF $(DEPDIR)/texture_func.Tpo -c -o texture_func.o `test -f 'age/graph/texture_func.cpp' || echo '$(srcdir)/'`age/graph/texture_func.cpp
  2129. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture_func.Tpo $(DEPDIR)/texture_func.Po
  2130. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/texture_func.cpp' object='texture_func.o' libtool=no @AMDEPBACKSLASH@
  2131. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2132. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o texture_func.o `test -f 'age/graph/texture_func.cpp' || echo '$(srcdir)/'`age/graph/texture_func.cpp
  2133. texture_func.obj: age/graph/texture_func.cpp
  2134. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture_func.obj -MD -MP -MF $(DEPDIR)/texture_func.Tpo -c -o texture_func.obj `if test -f 'age/graph/texture_func.cpp'; then $(CYGPATH_W) 'age/graph/texture_func.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/texture_func.cpp'; fi`
  2135. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture_func.Tpo $(DEPDIR)/texture_func.Po
  2136. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/texture_func.cpp' object='texture_func.obj' libtool=no @AMDEPBACKSLASH@
  2137. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2138. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o texture_func.obj `if test -f 'age/graph/texture_func.cpp'; then $(CYGPATH_W) 'age/graph/texture_func.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/texture_func.cpp'; fi`
  2139. texture_unit.o: age/graph/texture_unit.cpp
  2140. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture_unit.o -MD -MP -MF $(DEPDIR)/texture_unit.Tpo -c -o texture_unit.o `test -f 'age/graph/texture_unit.cpp' || echo '$(srcdir)/'`age/graph/texture_unit.cpp
  2141. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture_unit.Tpo $(DEPDIR)/texture_unit.Po
  2142. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/texture_unit.cpp' object='texture_unit.o' libtool=no @AMDEPBACKSLASH@
  2143. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2144. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o texture_unit.o `test -f 'age/graph/texture_unit.cpp' || echo '$(srcdir)/'`age/graph/texture_unit.cpp
  2145. texture_unit.obj: age/graph/texture_unit.cpp
  2146. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture_unit.obj -MD -MP -MF $(DEPDIR)/texture_unit.Tpo -c -o texture_unit.obj `if test -f 'age/graph/texture_unit.cpp'; then $(CYGPATH_W) 'age/graph/texture_unit.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/texture_unit.cpp'; fi`
  2147. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture_unit.Tpo $(DEPDIR)/texture_unit.Po
  2148. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/texture_unit.cpp' object='texture_unit.obj' libtool=no @AMDEPBACKSLASH@
  2149. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2150. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o texture_unit.obj `if test -f 'age/graph/texture_unit.cpp'; then $(CYGPATH_W) 'age/graph/texture_unit.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/texture_unit.cpp'; fi`
  2151. triangle.o: age/graph/triangle.cpp
  2152. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT triangle.o -MD -MP -MF $(DEPDIR)/triangle.Tpo -c -o triangle.o `test -f 'age/graph/triangle.cpp' || echo '$(srcdir)/'`age/graph/triangle.cpp
  2153. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/triangle.Tpo $(DEPDIR)/triangle.Po
  2154. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/triangle.cpp' object='triangle.o' libtool=no @AMDEPBACKSLASH@
  2155. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2156. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o triangle.o `test -f 'age/graph/triangle.cpp' || echo '$(srcdir)/'`age/graph/triangle.cpp
  2157. triangle.obj: age/graph/triangle.cpp
  2158. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT triangle.obj -MD -MP -MF $(DEPDIR)/triangle.Tpo -c -o triangle.obj `if test -f 'age/graph/triangle.cpp'; then $(CYGPATH_W) 'age/graph/triangle.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/triangle.cpp'; fi`
  2159. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/triangle.Tpo $(DEPDIR)/triangle.Po
  2160. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/triangle.cpp' object='triangle.obj' libtool=no @AMDEPBACKSLASH@
  2161. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2162. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o triangle.obj `if test -f 'age/graph/triangle.cpp'; then $(CYGPATH_W) 'age/graph/triangle.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/triangle.cpp'; fi`
  2163. vector.o: age/graph/vector.cpp
  2164. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT vector.o -MD -MP -MF $(DEPDIR)/vector.Tpo -c -o vector.o `test -f 'age/graph/vector.cpp' || echo '$(srcdir)/'`age/graph/vector.cpp
  2165. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/vector.Tpo $(DEPDIR)/vector.Po
  2166. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/vector.cpp' object='vector.o' libtool=no @AMDEPBACKSLASH@
  2167. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2168. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o vector.o `test -f 'age/graph/vector.cpp' || echo '$(srcdir)/'`age/graph/vector.cpp
  2169. vector.obj: age/graph/vector.cpp
  2170. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT vector.obj -MD -MP -MF $(DEPDIR)/vector.Tpo -c -o vector.obj `if test -f 'age/graph/vector.cpp'; then $(CYGPATH_W) 'age/graph/vector.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/vector.cpp'; fi`
  2171. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/vector.Tpo $(DEPDIR)/vector.Po
  2172. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/vector.cpp' object='vector.obj' libtool=no @AMDEPBACKSLASH@
  2173. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2174. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o vector.obj `if test -f 'age/graph/vector.cpp'; then $(CYGPATH_W) 'age/graph/vector.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/vector.cpp'; fi`
  2175. vertex_arrays.o: age/graph/vertex_arrays.cpp
  2176. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT vertex_arrays.o -MD -MP -MF $(DEPDIR)/vertex_arrays.Tpo -c -o vertex_arrays.o `test -f 'age/graph/vertex_arrays.cpp' || echo '$(srcdir)/'`age/graph/vertex_arrays.cpp
  2177. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/vertex_arrays.Tpo $(DEPDIR)/vertex_arrays.Po
  2178. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/vertex_arrays.cpp' object='vertex_arrays.o' libtool=no @AMDEPBACKSLASH@
  2179. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2180. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o vertex_arrays.o `test -f 'age/graph/vertex_arrays.cpp' || echo '$(srcdir)/'`age/graph/vertex_arrays.cpp
  2181. vertex_arrays.obj: age/graph/vertex_arrays.cpp
  2182. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT vertex_arrays.obj -MD -MP -MF $(DEPDIR)/vertex_arrays.Tpo -c -o vertex_arrays.obj `if test -f 'age/graph/vertex_arrays.cpp'; then $(CYGPATH_W) 'age/graph/vertex_arrays.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/vertex_arrays.cpp'; fi`
  2183. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/vertex_arrays.Tpo $(DEPDIR)/vertex_arrays.Po
  2184. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/vertex_arrays.cpp' object='vertex_arrays.obj' libtool=no @AMDEPBACKSLASH@
  2185. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2186. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o vertex_arrays.obj `if test -f 'age/graph/vertex_arrays.cpp'; then $(CYGPATH_W) 'age/graph/vertex_arrays.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/vertex_arrays.cpp'; fi`
  2187. world_interface.o: age/graph/world_interface.cpp
  2188. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT world_interface.o -MD -MP -MF $(DEPDIR)/world_interface.Tpo -c -o world_interface.o `test -f 'age/graph/world_interface.cpp' || echo '$(srcdir)/'`age/graph/world_interface.cpp
  2189. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/world_interface.Tpo $(DEPDIR)/world_interface.Po
  2190. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/world_interface.cpp' object='world_interface.o' libtool=no @AMDEPBACKSLASH@
  2191. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2192. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o world_interface.o `test -f 'age/graph/world_interface.cpp' || echo '$(srcdir)/'`age/graph/world_interface.cpp
  2193. world_interface.obj: age/graph/world_interface.cpp
  2194. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT world_interface.obj -MD -MP -MF $(DEPDIR)/world_interface.Tpo -c -o world_interface.obj `if test -f 'age/graph/world_interface.cpp'; then $(CYGPATH_W) 'age/graph/world_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/world_interface.cpp'; fi`
  2195. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/world_interface.Tpo $(DEPDIR)/world_interface.Po
  2196. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/graph/world_interface.cpp' object='world_interface.obj' libtool=no @AMDEPBACKSLASH@
  2197. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2198. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o world_interface.obj `if test -f 'age/graph/world_interface.cpp'; then $(CYGPATH_W) 'age/graph/world_interface.cpp'; else $(CYGPATH_W) '$(srcdir)/age/graph/world_interface.cpp'; fi`
  2199. age_main.o: age/support/age_main.cpp
  2200. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT age_main.o -MD -MP -MF $(DEPDIR)/age_main.Tpo -c -o age_main.o `test -f 'age/support/age_main.cpp' || echo '$(srcdir)/'`age/support/age_main.cpp
  2201. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/age_main.Tpo $(DEPDIR)/age_main.Po
  2202. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/age_main.cpp' object='age_main.o' libtool=no @AMDEPBACKSLASH@
  2203. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2204. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o age_main.o `test -f 'age/support/age_main.cpp' || echo '$(srcdir)/'`age/support/age_main.cpp
  2205. age_main.obj: age/support/age_main.cpp
  2206. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT age_main.obj -MD -MP -MF $(DEPDIR)/age_main.Tpo -c -o age_main.obj `if test -f 'age/support/age_main.cpp'; then $(CYGPATH_W) 'age/support/age_main.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/age_main.cpp'; fi`
  2207. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/age_main.Tpo $(DEPDIR)/age_main.Po
  2208. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/age_main.cpp' object='age_main.obj' libtool=no @AMDEPBACKSLASH@
  2209. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2210. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o age_main.obj `if test -f 'age/support/age_main.cpp'; then $(CYGPATH_W) 'age/support/age_main.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/age_main.cpp'; fi`
  2211. events.o: age/support/events.cpp
  2212. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT events.o -MD -MP -MF $(DEPDIR)/events.Tpo -c -o events.o `test -f 'age/support/events.cpp' || echo '$(srcdir)/'`age/support/events.cpp
  2213. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/events.Tpo $(DEPDIR)/events.Po
  2214. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/events.cpp' object='events.o' libtool=no @AMDEPBACKSLASH@
  2215. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2216. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o events.o `test -f 'age/support/events.cpp' || echo '$(srcdir)/'`age/support/events.cpp
  2217. events.obj: age/support/events.cpp
  2218. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT events.obj -MD -MP -MF $(DEPDIR)/events.Tpo -c -o events.obj `if test -f 'age/support/events.cpp'; then $(CYGPATH_W) 'age/support/events.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/events.cpp'; fi`
  2219. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/events.Tpo $(DEPDIR)/events.Po
  2220. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/events.cpp' object='events.obj' libtool=no @AMDEPBACKSLASH@
  2221. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2222. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o events.obj `if test -f 'age/support/events.cpp'; then $(CYGPATH_W) 'age/support/events.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/events.cpp'; fi`
  2223. input.o: age/support/input.cpp
  2224. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT input.o -MD -MP -MF $(DEPDIR)/input.Tpo -c -o input.o `test -f 'age/support/input.cpp' || echo '$(srcdir)/'`age/support/input.cpp
  2225. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/input.Tpo $(DEPDIR)/input.Po
  2226. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/input.cpp' object='input.o' libtool=no @AMDEPBACKSLASH@
  2227. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2228. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o input.o `test -f 'age/support/input.cpp' || echo '$(srcdir)/'`age/support/input.cpp
  2229. input.obj: age/support/input.cpp
  2230. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT input.obj -MD -MP -MF $(DEPDIR)/input.Tpo -c -o input.obj `if test -f 'age/support/input.cpp'; then $(CYGPATH_W) 'age/support/input.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/input.cpp'; fi`
  2231. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/input.Tpo $(DEPDIR)/input.Po
  2232. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/input.cpp' object='input.obj' libtool=no @AMDEPBACKSLASH@
  2233. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2234. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o input.obj `if test -f 'age/support/input.cpp'; then $(CYGPATH_W) 'age/support/input.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/input.cpp'; fi`
  2235. timer.o: age/support/timer.cpp
  2236. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT timer.o -MD -MP -MF $(DEPDIR)/timer.Tpo -c -o timer.o `test -f 'age/support/timer.cpp' || echo '$(srcdir)/'`age/support/timer.cpp
  2237. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/timer.Tpo $(DEPDIR)/timer.Po
  2238. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/timer.cpp' object='timer.o' libtool=no @AMDEPBACKSLASH@
  2239. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2240. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o timer.o `test -f 'age/support/timer.cpp' || echo '$(srcdir)/'`age/support/timer.cpp
  2241. timer.obj: age/support/timer.cpp
  2242. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT timer.obj -MD -MP -MF $(DEPDIR)/timer.Tpo -c -o timer.obj `if test -f 'age/support/timer.cpp'; then $(CYGPATH_W) 'age/support/timer.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/timer.cpp'; fi`
  2243. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/timer.Tpo $(DEPDIR)/timer.Po
  2244. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/support/timer.cpp' object='timer.obj' libtool=no @AMDEPBACKSLASH@
  2245. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2246. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o timer.obj `if test -f 'age/support/timer.cpp'; then $(CYGPATH_W) 'age/support/timer.cpp'; else $(CYGPATH_W) '$(srcdir)/age/support/timer.cpp'; fi`
  2247. change.o: age/utils/change.cpp
  2248. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT change.o -MD -MP -MF $(DEPDIR)/change.Tpo -c -o change.o `test -f 'age/utils/change.cpp' || echo '$(srcdir)/'`age/utils/change.cpp
  2249. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/change.Tpo $(DEPDIR)/change.Po
  2250. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/change.cpp' object='change.o' libtool=no @AMDEPBACKSLASH@
  2251. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2252. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o change.o `test -f 'age/utils/change.cpp' || echo '$(srcdir)/'`age/utils/change.cpp
  2253. change.obj: age/utils/change.cpp
  2254. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT change.obj -MD -MP -MF $(DEPDIR)/change.Tpo -c -o change.obj `if test -f 'age/utils/change.cpp'; then $(CYGPATH_W) 'age/utils/change.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/change.cpp'; fi`
  2255. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/change.Tpo $(DEPDIR)/change.Po
  2256. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/change.cpp' object='change.obj' libtool=no @AMDEPBACKSLASH@
  2257. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2258. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o change.obj `if test -f 'age/utils/change.cpp'; then $(CYGPATH_W) 'age/utils/change.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/change.cpp'; fi`
  2259. data_file.o: age/utils/data_file.cpp
  2260. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_file.o -MD -MP -MF $(DEPDIR)/data_file.Tpo -c -o data_file.o `test -f 'age/utils/data_file.cpp' || echo '$(srcdir)/'`age/utils/data_file.cpp
  2261. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/data_file.Tpo $(DEPDIR)/data_file.Po
  2262. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/data_file.cpp' object='data_file.o' libtool=no @AMDEPBACKSLASH@
  2263. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2264. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_file.o `test -f 'age/utils/data_file.cpp' || echo '$(srcdir)/'`age/utils/data_file.cpp
  2265. data_file.obj: age/utils/data_file.cpp
  2266. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT data_file.obj -MD -MP -MF $(DEPDIR)/data_file.Tpo -c -o data_file.obj `if test -f 'age/utils/data_file.cpp'; then $(CYGPATH_W) 'age/utils/data_file.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/data_file.cpp'; fi`
  2267. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/data_file.Tpo $(DEPDIR)/data_file.Po
  2268. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/data_file.cpp' object='data_file.obj' libtool=no @AMDEPBACKSLASH@
  2269. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2270. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o data_file.obj `if test -f 'age/utils/data_file.cpp'; then $(CYGPATH_W) 'age/utils/data_file.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/data_file.cpp'; fi`
  2271. ini.o: age/utils/ini.cpp
  2272. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ini.o -MD -MP -MF $(DEPDIR)/ini.Tpo -c -o ini.o `test -f 'age/utils/ini.cpp' || echo '$(srcdir)/'`age/utils/ini.cpp
  2273. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/ini.Tpo $(DEPDIR)/ini.Po
  2274. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/ini.cpp' object='ini.o' libtool=no @AMDEPBACKSLASH@
  2275. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2276. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ini.o `test -f 'age/utils/ini.cpp' || echo '$(srcdir)/'`age/utils/ini.cpp
  2277. ini.obj: age/utils/ini.cpp
  2278. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ini.obj -MD -MP -MF $(DEPDIR)/ini.Tpo -c -o ini.obj `if test -f 'age/utils/ini.cpp'; then $(CYGPATH_W) 'age/utils/ini.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/ini.cpp'; fi`
  2279. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/ini.Tpo $(DEPDIR)/ini.Po
  2280. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/ini.cpp' object='ini.obj' libtool=no @AMDEPBACKSLASH@
  2281. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2282. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ini.obj `if test -f 'age/utils/ini.cpp'; then $(CYGPATH_W) 'age/utils/ini.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/ini.cpp'; fi`
  2283. log.o: age/utils/log.cpp
  2284. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT log.o -MD -MP -MF $(DEPDIR)/log.Tpo -c -o log.o `test -f 'age/utils/log.cpp' || echo '$(srcdir)/'`age/utils/log.cpp
  2285. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/log.Tpo $(DEPDIR)/log.Po
  2286. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/log.cpp' object='log.o' libtool=no @AMDEPBACKSLASH@
  2287. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2288. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.o `test -f 'age/utils/log.cpp' || echo '$(srcdir)/'`age/utils/log.cpp
  2289. log.obj: age/utils/log.cpp
  2290. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT log.obj -MD -MP -MF $(DEPDIR)/log.Tpo -c -o log.obj `if test -f 'age/utils/log.cpp'; then $(CYGPATH_W) 'age/utils/log.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/log.cpp'; fi`
  2291. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/log.Tpo $(DEPDIR)/log.Po
  2292. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/log.cpp' object='log.obj' libtool=no @AMDEPBACKSLASH@
  2293. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2294. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o log.obj `if test -f 'age/utils/log.cpp'; then $(CYGPATH_W) 'age/utils/log.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/log.cpp'; fi`
  2295. mem_alloc.o: age/utils/mem_alloc.cpp
  2296. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mem_alloc.o -MD -MP -MF $(DEPDIR)/mem_alloc.Tpo -c -o mem_alloc.o `test -f 'age/utils/mem_alloc.cpp' || echo '$(srcdir)/'`age/utils/mem_alloc.cpp
  2297. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mem_alloc.Tpo $(DEPDIR)/mem_alloc.Po
  2298. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/mem_alloc.cpp' object='mem_alloc.o' libtool=no @AMDEPBACKSLASH@
  2299. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2300. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mem_alloc.o `test -f 'age/utils/mem_alloc.cpp' || echo '$(srcdir)/'`age/utils/mem_alloc.cpp
  2301. mem_alloc.obj: age/utils/mem_alloc.cpp
  2302. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mem_alloc.obj -MD -MP -MF $(DEPDIR)/mem_alloc.Tpo -c -o mem_alloc.obj `if test -f 'age/utils/mem_alloc.cpp'; then $(CYGPATH_W) 'age/utils/mem_alloc.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/mem_alloc.cpp'; fi`
  2303. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mem_alloc.Tpo $(DEPDIR)/mem_alloc.Po
  2304. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/mem_alloc.cpp' object='mem_alloc.obj' libtool=no @AMDEPBACKSLASH@
  2305. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2306. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mem_alloc.obj `if test -f 'age/utils/mem_alloc.cpp'; then $(CYGPATH_W) 'age/utils/mem_alloc.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/mem_alloc.cpp'; fi`
  2307. mtree.o: age/utils/mtree.cpp
  2308. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mtree.o -MD -MP -MF $(DEPDIR)/mtree.Tpo -c -o mtree.o `test -f 'age/utils/mtree.cpp' || echo '$(srcdir)/'`age/utils/mtree.cpp
  2309. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mtree.Tpo $(DEPDIR)/mtree.Po
  2310. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/mtree.cpp' object='mtree.o' libtool=no @AMDEPBACKSLASH@
  2311. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2312. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mtree.o `test -f 'age/utils/mtree.cpp' || echo '$(srcdir)/'`age/utils/mtree.cpp
  2313. mtree.obj: age/utils/mtree.cpp
  2314. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mtree.obj -MD -MP -MF $(DEPDIR)/mtree.Tpo -c -o mtree.obj `if test -f 'age/utils/mtree.cpp'; then $(CYGPATH_W) 'age/utils/mtree.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/mtree.cpp'; fi`
  2315. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/mtree.Tpo $(DEPDIR)/mtree.Po
  2316. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/mtree.cpp' object='mtree.obj' libtool=no @AMDEPBACKSLASH@
  2317. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2318. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mtree.obj `if test -f 'age/utils/mtree.cpp'; then $(CYGPATH_W) 'age/utils/mtree.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/mtree.cpp'; fi`
  2319. utils.o: age/utils/utils.cpp
  2320. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT utils.o -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.o `test -f 'age/utils/utils.cpp' || echo '$(srcdir)/'`age/utils/utils.cpp
  2321. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po
  2322. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/utils.cpp' object='utils.o' libtool=no @AMDEPBACKSLASH@
  2323. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2324. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o utils.o `test -f 'age/utils/utils.cpp' || echo '$(srcdir)/'`age/utils/utils.cpp
  2325. utils.obj: age/utils/utils.cpp
  2326. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT utils.obj -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.obj `if test -f 'age/utils/utils.cpp'; then $(CYGPATH_W) 'age/utils/utils.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/utils.cpp'; fi`
  2327. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po
  2328. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='age/utils/utils.cpp' object='utils.obj' libtool=no @AMDEPBACKSLASH@
  2329. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2330. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o utils.obj `if test -f 'age/utils/utils.cpp'; then $(CYGPATH_W) 'age/utils/utils.cpp'; else $(CYGPATH_W) '$(srcdir)/age/utils/utils.cpp'; fi`
  2331. animationk.o: kofola/animationk.cpp
  2332. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animationk.o -MD -MP -MF $(DEPDIR)/animationk.Tpo -c -o animationk.o `test -f 'kofola/animationk.cpp' || echo '$(srcdir)/'`kofola/animationk.cpp
  2333. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animationk.Tpo $(DEPDIR)/animationk.Po
  2334. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/animationk.cpp' object='animationk.o' libtool=no @AMDEPBACKSLASH@
  2335. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2336. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animationk.o `test -f 'kofola/animationk.cpp' || echo '$(srcdir)/'`kofola/animationk.cpp
  2337. animationk.obj: kofola/animationk.cpp
  2338. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT animationk.obj -MD -MP -MF $(DEPDIR)/animationk.Tpo -c -o animationk.obj `if test -f 'kofola/animationk.cpp'; then $(CYGPATH_W) 'kofola/animationk.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/animationk.cpp'; fi`
  2339. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/animationk.Tpo $(DEPDIR)/animationk.Po
  2340. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='kofola/animationk.cpp' object='animationk.obj' libtool=no @AMDEPBACKSLASH@
  2341. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2342. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o animationk.obj `if test -f 'kofola/animationk.cpp'; then $(CYGPATH_W) 'kofola/animationk.cpp'; else $(CYGPATH_W) '$(srcdir)/kofola/animationk.cpp'; fi`
  2343. generator_random.o: generator/generator_random.cpp
  2344. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT generator_random.o -MD -MP -MF $(DEPDIR)/generator_random.Tpo -c -o generator_random.o `test -f 'generator/generator_random.cpp' || echo '$(srcdir)/'`generator/generator_random.cpp
  2345. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/generator_random.Tpo $(DEPDIR)/generator_random.Po
  2346. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='generator/generator_random.cpp' object='generator_random.o' libtool=no @AMDEPBACKSLASH@
  2347. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2348. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o generator_random.o `test -f 'generator/generator_random.cpp' || echo '$(srcdir)/'`generator/generator_random.cpp
  2349. generator_random.obj: generator/generator_random.cpp
  2350. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT generator_random.obj -MD -MP -MF $(DEPDIR)/generator_random.Tpo -c -o generator_random.obj `if test -f 'generator/generator_random.cpp'; then $(CYGPATH_W) 'generator/generator_random.cpp'; else $(CYGPATH_W) '$(srcdir)/generator/generator_random.cpp'; fi`
  2351. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/generator_random.Tpo $(DEPDIR)/generator_random.Po
  2352. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='generator/generator_random.cpp' object='generator_random.obj' libtool=no @AMDEPBACKSLASH@
  2353. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2354. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o generator_random.obj `if test -f 'generator/generator_random.cpp'; then $(CYGPATH_W) 'generator/generator_random.cpp'; else $(CYGPATH_W) '$(srcdir)/generator/generator_random.cpp'; fi`
  2355. Ddx.o: komat/Ddx.cpp
  2356. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Ddx.o -MD -MP -MF $(DEPDIR)/Ddx.Tpo -c -o Ddx.o `test -f 'komat/Ddx.cpp' || echo '$(srcdir)/'`komat/Ddx.cpp
  2357. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Ddx.Tpo $(DEPDIR)/Ddx.Po
  2358. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Ddx.cpp' object='Ddx.o' libtool=no @AMDEPBACKSLASH@
  2359. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2360. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Ddx.o `test -f 'komat/Ddx.cpp' || echo '$(srcdir)/'`komat/Ddx.cpp
  2361. Ddx.obj: komat/Ddx.cpp
  2362. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Ddx.obj -MD -MP -MF $(DEPDIR)/Ddx.Tpo -c -o Ddx.obj `if test -f 'komat/Ddx.cpp'; then $(CYGPATH_W) 'komat/Ddx.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Ddx.cpp'; fi`
  2363. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Ddx.Tpo $(DEPDIR)/Ddx.Po
  2364. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Ddx.cpp' object='Ddx.obj' libtool=no @AMDEPBACKSLASH@
  2365. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2366. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Ddx.obj `if test -f 'komat/Ddx.cpp'; then $(CYGPATH_W) 'komat/Ddx.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Ddx.cpp'; fi`
  2367. kfile.o: komat/kfile.cpp
  2368. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT kfile.o -MD -MP -MF $(DEPDIR)/kfile.Tpo -c -o kfile.o `test -f 'komat/kfile.cpp' || echo '$(srcdir)/'`komat/kfile.cpp
  2369. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/kfile.Tpo $(DEPDIR)/kfile.Po
  2370. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/kfile.cpp' object='kfile.o' libtool=no @AMDEPBACKSLASH@
  2371. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2372. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o kfile.o `test -f 'komat/kfile.cpp' || echo '$(srcdir)/'`komat/kfile.cpp
  2373. kfile.obj: komat/kfile.cpp
  2374. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT kfile.obj -MD -MP -MF $(DEPDIR)/kfile.Tpo -c -o kfile.obj `if test -f 'komat/kfile.cpp'; then $(CYGPATH_W) 'komat/kfile.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/kfile.cpp'; fi`
  2375. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/kfile.Tpo $(DEPDIR)/kfile.Po
  2376. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/kfile.cpp' object='kfile.obj' libtool=no @AMDEPBACKSLASH@
  2377. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2378. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o kfile.obj `if test -f 'komat/kfile.cpp'; then $(CYGPATH_W) 'komat/kfile.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/kfile.cpp'; fi`
  2379. Berusky3d_animace.o: komat/Berusky3d_animace.cpp
  2380. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_animace.o -MD -MP -MF $(DEPDIR)/Berusky3d_animace.Tpo -c -o Berusky3d_animace.o `test -f 'komat/Berusky3d_animace.cpp' || echo '$(srcdir)/'`komat/Berusky3d_animace.cpp
  2381. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_animace.Tpo $(DEPDIR)/Berusky3d_animace.Po
  2382. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_animace.cpp' object='Berusky3d_animace.o' libtool=no @AMDEPBACKSLASH@
  2383. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2384. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_animace.o `test -f 'komat/Berusky3d_animace.cpp' || echo '$(srcdir)/'`komat/Berusky3d_animace.cpp
  2385. Berusky3d_animace.obj: komat/Berusky3d_animace.cpp
  2386. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Berusky3d_animace.obj -MD -MP -MF $(DEPDIR)/Berusky3d_animace.Tpo -c -o Berusky3d_animace.obj `if test -f 'komat/Berusky3d_animace.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_animace.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_animace.cpp'; fi`
  2387. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Berusky3d_animace.Tpo $(DEPDIR)/Berusky3d_animace.Po
  2388. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Berusky3d_animace.cpp' object='Berusky3d_animace.obj' libtool=no @AMDEPBACKSLASH@
  2389. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2390. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Berusky3d_animace.obj `if test -f 'komat/Berusky3d_animace.cpp'; then $(CYGPATH_W) 'komat/Berusky3d_animace.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Berusky3d_animace.cpp'; fi`
  2391. 3dmath.o: komat/3dmath.cpp
  2392. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dmath.o -MD -MP -MF $(DEPDIR)/3dmath.Tpo -c -o 3dmath.o `test -f 'komat/3dmath.cpp' || echo '$(srcdir)/'`komat/3dmath.cpp
  2393. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dmath.Tpo $(DEPDIR)/3dmath.Po
  2394. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dmath.cpp' object='3dmath.o' libtool=no @AMDEPBACKSLASH@
  2395. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2396. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dmath.o `test -f 'komat/3dmath.cpp' || echo '$(srcdir)/'`komat/3dmath.cpp
  2397. 3dmath.obj: komat/3dmath.cpp
  2398. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dmath.obj -MD -MP -MF $(DEPDIR)/3dmath.Tpo -c -o 3dmath.obj `if test -f 'komat/3dmath.cpp'; then $(CYGPATH_W) 'komat/3dmath.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dmath.cpp'; fi`
  2399. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dmath.Tpo $(DEPDIR)/3dmath.Po
  2400. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dmath.cpp' object='3dmath.obj' libtool=no @AMDEPBACKSLASH@
  2401. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2402. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dmath.obj `if test -f 'komat/3dmath.cpp'; then $(CYGPATH_W) 'komat/3dmath.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dmath.cpp'; fi`
  2403. 3dproject.o: komat/3dproject.cpp
  2404. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dproject.o -MD -MP -MF $(DEPDIR)/3dproject.Tpo -c -o 3dproject.o `test -f 'komat/3dproject.cpp' || echo '$(srcdir)/'`komat/3dproject.cpp
  2405. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dproject.Tpo $(DEPDIR)/3dproject.Po
  2406. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dproject.cpp' object='3dproject.o' libtool=no @AMDEPBACKSLASH@
  2407. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2408. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dproject.o `test -f 'komat/3dproject.cpp' || echo '$(srcdir)/'`komat/3dproject.cpp
  2409. 3dproject.obj: komat/3dproject.cpp
  2410. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT 3dproject.obj -MD -MP -MF $(DEPDIR)/3dproject.Tpo -c -o 3dproject.obj `if test -f 'komat/3dproject.cpp'; then $(CYGPATH_W) 'komat/3dproject.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dproject.cpp'; fi`
  2411. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/3dproject.Tpo $(DEPDIR)/3dproject.Po
  2412. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/3dproject.cpp' object='3dproject.obj' libtool=no @AMDEPBACKSLASH@
  2413. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2414. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o 3dproject.obj `if test -f 'komat/3dproject.cpp'; then $(CYGPATH_W) 'komat/3dproject.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/3dproject.cpp'; fi`
  2415. Mat3d.o: komat/Mat3d.cpp
  2416. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Mat3d.o -MD -MP -MF $(DEPDIR)/Mat3d.Tpo -c -o Mat3d.o `test -f 'komat/Mat3d.cpp' || echo '$(srcdir)/'`komat/Mat3d.cpp
  2417. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Mat3d.Tpo $(DEPDIR)/Mat3d.Po
  2418. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Mat3d.cpp' object='Mat3d.o' libtool=no @AMDEPBACKSLASH@
  2419. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2420. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Mat3d.o `test -f 'komat/Mat3d.cpp' || echo '$(srcdir)/'`komat/Mat3d.cpp
  2421. Mat3d.obj: komat/Mat3d.cpp
  2422. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Mat3d.obj -MD -MP -MF $(DEPDIR)/Mat3d.Tpo -c -o Mat3d.obj `if test -f 'komat/Mat3d.cpp'; then $(CYGPATH_W) 'komat/Mat3d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Mat3d.cpp'; fi`
  2423. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Mat3d.Tpo $(DEPDIR)/Mat3d.Po
  2424. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Mat3d.cpp' object='Mat3d.obj' libtool=no @AMDEPBACKSLASH@
  2425. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2426. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Mat3d.obj `if test -f 'komat/Mat3d.cpp'; then $(CYGPATH_W) 'komat/Mat3d.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Mat3d.cpp'; fi`
  2427. Keyframe.o: komat/Keyframe.cpp
  2428. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Keyframe.o -MD -MP -MF $(DEPDIR)/Keyframe.Tpo -c -o Keyframe.o `test -f 'komat/Keyframe.cpp' || echo '$(srcdir)/'`komat/Keyframe.cpp
  2429. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Keyframe.Tpo $(DEPDIR)/Keyframe.Po
  2430. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Keyframe.cpp' object='Keyframe.o' libtool=no @AMDEPBACKSLASH@
  2431. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2432. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Keyframe.o `test -f 'komat/Keyframe.cpp' || echo '$(srcdir)/'`komat/Keyframe.cpp
  2433. Keyframe.obj: komat/Keyframe.cpp
  2434. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Keyframe.obj -MD -MP -MF $(DEPDIR)/Keyframe.Tpo -c -o Keyframe.obj `if test -f 'komat/Keyframe.cpp'; then $(CYGPATH_W) 'komat/Keyframe.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Keyframe.cpp'; fi`
  2435. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Keyframe.Tpo $(DEPDIR)/Keyframe.Po
  2436. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Keyframe.cpp' object='Keyframe.obj' libtool=no @AMDEPBACKSLASH@
  2437. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2438. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Keyframe.obj `if test -f 'komat/Keyframe.cpp'; then $(CYGPATH_W) 'komat/Keyframe.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Keyframe.cpp'; fi`
  2439. Texture.o: komat/Texture.cpp
  2440. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Texture.o -MD -MP -MF $(DEPDIR)/Texture.Tpo -c -o Texture.o `test -f 'komat/Texture.cpp' || echo '$(srcdir)/'`komat/Texture.cpp
  2441. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Texture.Tpo $(DEPDIR)/Texture.Po
  2442. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Texture.cpp' object='Texture.o' libtool=no @AMDEPBACKSLASH@
  2443. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2444. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Texture.o `test -f 'komat/Texture.cpp' || echo '$(srcdir)/'`komat/Texture.cpp
  2445. Texture.obj: komat/Texture.cpp
  2446. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Texture.obj -MD -MP -MF $(DEPDIR)/Texture.Tpo -c -o Texture.obj `if test -f 'komat/Texture.cpp'; then $(CYGPATH_W) 'komat/Texture.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Texture.cpp'; fi`
  2447. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Texture.Tpo $(DEPDIR)/Texture.Po
  2448. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Texture.cpp' object='Texture.obj' libtool=no @AMDEPBACKSLASH@
  2449. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2450. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Texture.obj `if test -f 'komat/Texture.cpp'; then $(CYGPATH_W) 'komat/Texture.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Texture.cpp'; fi`
  2451. Texture_import.o: komat/Texture_import.cpp
  2452. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Texture_import.o -MD -MP -MF $(DEPDIR)/Texture_import.Tpo -c -o Texture_import.o `test -f 'komat/Texture_import.cpp' || echo '$(srcdir)/'`komat/Texture_import.cpp
  2453. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Texture_import.Tpo $(DEPDIR)/Texture_import.Po
  2454. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Texture_import.cpp' object='Texture_import.o' libtool=no @AMDEPBACKSLASH@
  2455. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2456. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Texture_import.o `test -f 'komat/Texture_import.cpp' || echo '$(srcdir)/'`komat/Texture_import.cpp
  2457. Texture_import.obj: komat/Texture_import.cpp
  2458. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Texture_import.obj -MD -MP -MF $(DEPDIR)/Texture_import.Tpo -c -o Texture_import.obj `if test -f 'komat/Texture_import.cpp'; then $(CYGPATH_W) 'komat/Texture_import.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Texture_import.cpp'; fi`
  2459. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Texture_import.Tpo $(DEPDIR)/Texture_import.Po
  2460. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Texture_import.cpp' object='Texture_import.obj' libtool=no @AMDEPBACKSLASH@
  2461. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2462. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Texture_import.obj `if test -f 'komat/Texture_import.cpp'; then $(CYGPATH_W) 'komat/Texture_import.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Texture_import.cpp'; fi`
  2463. obbo.o: komat/obbo.cpp
  2464. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT obbo.o -MD -MP -MF $(DEPDIR)/obbo.Tpo -c -o obbo.o `test -f 'komat/obbo.cpp' || echo '$(srcdir)/'`komat/obbo.cpp
  2465. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/obbo.Tpo $(DEPDIR)/obbo.Po
  2466. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/obbo.cpp' object='obbo.o' libtool=no @AMDEPBACKSLASH@
  2467. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2468. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o obbo.o `test -f 'komat/obbo.cpp' || echo '$(srcdir)/'`komat/obbo.cpp
  2469. obbo.obj: komat/obbo.cpp
  2470. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT obbo.obj -MD -MP -MF $(DEPDIR)/obbo.Tpo -c -o obbo.obj `if test -f 'komat/obbo.cpp'; then $(CYGPATH_W) 'komat/obbo.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/obbo.cpp'; fi`
  2471. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/obbo.Tpo $(DEPDIR)/obbo.Po
  2472. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/obbo.cpp' object='obbo.obj' libtool=no @AMDEPBACKSLASH@
  2473. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2474. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o obbo.obj `if test -f 'komat/obbo.cpp'; then $(CYGPATH_W) 'komat/obbo.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/obbo.cpp'; fi`
  2475. Kdtree.o: komat/Kdtree.cpp
  2476. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Kdtree.o -MD -MP -MF $(DEPDIR)/Kdtree.Tpo -c -o Kdtree.o `test -f 'komat/Kdtree.cpp' || echo '$(srcdir)/'`komat/Kdtree.cpp
  2477. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Kdtree.Tpo $(DEPDIR)/Kdtree.Po
  2478. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Kdtree.cpp' object='Kdtree.o' libtool=no @AMDEPBACKSLASH@
  2479. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2480. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Kdtree.o `test -f 'komat/Kdtree.cpp' || echo '$(srcdir)/'`komat/Kdtree.cpp
  2481. Kdtree.obj: komat/Kdtree.cpp
  2482. @am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Kdtree.obj -MD -MP -MF $(DEPDIR)/Kdtree.Tpo -c -o Kdtree.obj `if test -f 'komat/Kdtree.cpp'; then $(CYGPATH_W) 'komat/Kdtree.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Kdtree.cpp'; fi`
  2483. @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/Kdtree.Tpo $(DEPDIR)/Kdtree.Po
  2484. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='komat/Kdtree.cpp' object='Kdtree.obj' libtool=no @AMDEPBACKSLASH@
  2485. @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  2486. @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Kdtree.obj `if test -f 'komat/Kdtree.cpp'; then $(CYGPATH_W) 'komat/Kdtree.cpp'; else $(CYGPATH_W) '$(srcdir)/komat/Kdtree.cpp'; fi`
  2487. mostlyclean-libtool:
  2488. -rm -f *.lo
  2489. clean-libtool:
  2490. -rm -rf .libs _libs
  2491. ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
  2492. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  2493. unique=`for i in $$list; do \
  2494. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2495. done | \
  2496. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2497. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2498. mkid -fID $$unique
  2499. tags: TAGS
  2500. TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  2501. $(TAGS_FILES) $(LISP)
  2502. set x; \
  2503. here=`pwd`; \
  2504. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  2505. unique=`for i in $$list; do \
  2506. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2507. done | \
  2508. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2509. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2510. shift; \
  2511. if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
  2512. test -n "$$unique" || unique=$$empty_fix; \
  2513. if test $$# -gt 0; then \
  2514. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  2515. "$$@" $$unique; \
  2516. else \
  2517. $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
  2518. $$unique; \
  2519. fi; \
  2520. fi
  2521. ctags: CTAGS
  2522. CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
  2523. $(TAGS_FILES) $(LISP)
  2524. list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
  2525. unique=`for i in $$list; do \
  2526. if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  2527. done | \
  2528. $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
  2529. END { if (nonempty) { for (i in files) print i; }; }'`; \
  2530. test -z "$(CTAGS_ARGS)$$unique" \
  2531. || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
  2532. $$unique
  2533. GTAGS:
  2534. here=`$(am__cd) $(top_builddir) && pwd` \
  2535. && $(am__cd) $(top_srcdir) \
  2536. && gtags -i $(GTAGS_ARGS) "$$here"
  2537. distclean-tags:
  2538. -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
  2539. distdir: $(DISTFILES)
  2540. @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  2541. topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  2542. list='$(DISTFILES)'; \
  2543. dist_files=`for file in $$list; do echo $$file; done | \
  2544. sed -e "s|^$$srcdirstrip/||;t" \
  2545. -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
  2546. case $$dist_files in \
  2547. */*) $(MKDIR_P) `echo "$$dist_files" | \
  2548. sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
  2549. sort -u` ;; \
  2550. esac; \
  2551. for file in $$dist_files; do \
  2552. if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  2553. if test -d $$d/$$file; then \
  2554. dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
  2555. if test -d "$(distdir)/$$file"; then \
  2556. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  2557. fi; \
  2558. if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
  2559. cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
  2560. find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
  2561. fi; \
  2562. cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
  2563. else \
  2564. test -f "$(distdir)/$$file" \
  2565. || cp -p $$d/$$file "$(distdir)/$$file" \
  2566. || exit 1; \
  2567. fi; \
  2568. done
  2569. check-am: all-am
  2570. check: check-am
  2571. all-am: Makefile $(PROGRAMS)
  2572. installdirs:
  2573. for dir in "$(DESTDIR)$(bindir)"; do \
  2574. test -z "$$dir" || $(MKDIR_P) "$$dir"; \
  2575. done
  2576. install: install-am
  2577. install-exec: install-exec-am
  2578. install-data: install-data-am
  2579. uninstall: uninstall-am
  2580. install-am: all-am
  2581. @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  2582. installcheck: installcheck-am
  2583. install-strip:
  2584. $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  2585. install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
  2586. `test -z '$(STRIP)' || \
  2587. echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  2588. mostlyclean-generic:
  2589. clean-generic:
  2590. distclean-generic:
  2591. -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
  2592. -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
  2593. maintainer-clean-generic:
  2594. @echo "This command is intended for maintainers to use"
  2595. @echo "it deletes files that may require special tools to rebuild."
  2596. clean: clean-am
  2597. clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
  2598. distclean: distclean-am
  2599. -rm -rf ./$(DEPDIR)
  2600. -rm -f Makefile
  2601. distclean-am: clean-am distclean-compile distclean-generic \
  2602. distclean-tags
  2603. dvi: dvi-am
  2604. dvi-am:
  2605. html: html-am
  2606. html-am:
  2607. info: info-am
  2608. info-am:
  2609. install-data-am:
  2610. install-dvi: install-dvi-am
  2611. install-dvi-am:
  2612. install-exec-am: install-binPROGRAMS
  2613. install-html: install-html-am
  2614. install-html-am:
  2615. install-info: install-info-am
  2616. install-info-am:
  2617. install-man:
  2618. install-pdf: install-pdf-am
  2619. install-pdf-am:
  2620. install-ps: install-ps-am
  2621. install-ps-am:
  2622. installcheck-am:
  2623. maintainer-clean: maintainer-clean-am
  2624. -rm -rf ./$(DEPDIR)
  2625. -rm -f Makefile
  2626. maintainer-clean-am: distclean-am maintainer-clean-generic
  2627. mostlyclean: mostlyclean-am
  2628. mostlyclean-am: mostlyclean-compile mostlyclean-generic \
  2629. mostlyclean-libtool
  2630. pdf: pdf-am
  2631. pdf-am:
  2632. ps: ps-am
  2633. ps-am:
  2634. uninstall-am: uninstall-binPROGRAMS
  2635. .MAKE: install-am install-strip
  2636. .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
  2637. clean-generic clean-libtool ctags distclean distclean-compile \
  2638. distclean-generic distclean-libtool distclean-tags distdir dvi \
  2639. dvi-am html html-am info info-am install install-am \
  2640. install-binPROGRAMS install-data install-data-am install-dvi \
  2641. install-dvi-am install-exec install-exec-am install-html \
  2642. install-html-am install-info install-info-am install-man \
  2643. install-pdf install-pdf-am install-ps install-ps-am \
  2644. install-strip installcheck installcheck-am installdirs \
  2645. maintainer-clean maintainer-clean-generic mostlyclean \
  2646. mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
  2647. pdf pdf-am ps ps-am tags uninstall uninstall-am \
  2648. uninstall-binPROGRAMS
  2649. # Tell versions [3.59,3.63) of GNU make to not export all variables.
  2650. # Otherwise a system limit (for SysV at least) may be exceeded.
  2651. .NOEXPORT: