pyEQL 1.4.0rc9__cp310-cp310-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (491) hide show
  1. pyEQL/__init__.py +50 -0
  2. pyEQL/_phreeqc.cpython-310-darwin.so +0 -0
  3. pyEQL/activity_correction.py +879 -0
  4. pyEQL/database/geothermal.dat +5693 -0
  5. pyEQL/database/llnl.dat +19305 -0
  6. pyEQL/database/phreeqc_license.txt +54 -0
  7. pyEQL/database/pyeql_db.json +35607 -0
  8. pyEQL/engines.py +1153 -0
  9. pyEQL/equilibrium.py +227 -0
  10. pyEQL/functions.py +281 -0
  11. pyEQL/phreeqc/__init__.py +5 -0
  12. pyEQL/phreeqc/bindings.cpp +84 -0
  13. pyEQL/phreeqc/core.py +239 -0
  14. pyEQL/phreeqc/database/Amm.dat +1968 -0
  15. pyEQL/phreeqc/database/CMakeLists.txt +32 -0
  16. pyEQL/phreeqc/database/ColdChem.dat +267 -0
  17. pyEQL/phreeqc/database/Concrete_PHR.dat +158 -0
  18. pyEQL/phreeqc/database/Concrete_PZ.dat +195 -0
  19. pyEQL/phreeqc/database/Kinec.v2.dat +12039 -0
  20. pyEQL/phreeqc/database/Kinec_v3.dat +12159 -0
  21. pyEQL/phreeqc/database/Makefile.am +28 -0
  22. pyEQL/phreeqc/database/Makefile.in +530 -0
  23. pyEQL/phreeqc/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  24. pyEQL/phreeqc/database/Tipping_Hurley.dat +4137 -0
  25. pyEQL/phreeqc/database/__init__.py +0 -0
  26. pyEQL/phreeqc/database/core10.dat +6824 -0
  27. pyEQL/phreeqc/database/frezchem.dat +634 -0
  28. pyEQL/phreeqc/database/iso.dat +7235 -0
  29. pyEQL/phreeqc/database/llnl.dat +19310 -0
  30. pyEQL/phreeqc/database/minteq.dat +5654 -0
  31. pyEQL/phreeqc/database/minteq.v4.dat +13212 -0
  32. pyEQL/phreeqc/database/phreeqc.dat +1972 -0
  33. pyEQL/phreeqc/database/phreeqc_rates.dat +3158 -0
  34. pyEQL/phreeqc/database/pitzer.dat +1044 -0
  35. pyEQL/phreeqc/database/sit.dat +14348 -0
  36. pyEQL/phreeqc/database/wateq4f.dat +4036 -0
  37. pyEQL/phreeqc/ext/README.md +10 -0
  38. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/CMakeLists.txt +476 -0
  39. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/INSTALL +302 -0
  40. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqc.rc +61 -0
  41. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqcConfig.cmake.in +4 -0
  42. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.am +8 -0
  43. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.in +816 -0
  44. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/aclocal.m4 +1217 -0
  45. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/CTestScript.cmake +167 -0
  46. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/CSelectedOutput.cpp.o +0 -0
  47. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqc.cpp.o +0 -0
  48. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqcLib.cpp.o +0 -0
  49. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqc_interface_F.cpp.o +0 -0
  50. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/Var.c.o +0 -0
  51. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Dictionary.cpp.o +0 -0
  52. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ExchComp.cxx.o +0 -0
  53. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Exchange.cxx.o +0 -0
  54. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/GasComp.cxx.o +0 -0
  55. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/GasPhase.cxx.o +0 -0
  56. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ISolution.cxx.o +0 -0
  57. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ISolutionComp.cxx.o +0 -0
  58. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/KineticsComp.cxx.o +0 -0
  59. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/NameDouble.cxx.o +0 -0
  60. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/NumKeyword.cxx.o +0 -0
  61. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PBasic.cpp.o +0 -0
  62. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PHRQ_io_output.cpp.o +0 -0
  63. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PPassemblage.cxx.o +0 -0
  64. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PPassemblageComp.cxx.o +0 -0
  65. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Phreeqc.cpp.o +0 -0
  66. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp.o +0 -0
  67. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Pressure.cxx.o +0 -0
  68. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Reaction.cxx.o +0 -0
  69. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ReadClass.cxx.o +0 -0
  70. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SS.cxx.o +0 -0
  71. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SSassemblage.cxx.o +0 -0
  72. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SScomp.cxx.o +0 -0
  73. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SelectedOutput.cpp.o +0 -0
  74. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Serializer.cxx.o +0 -0
  75. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Solution.cxx.o +0 -0
  76. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SolutionIsotope.cxx.o +0 -0
  77. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/StorageBin.cxx.o +0 -0
  78. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/StorageBinList.cpp.o +0 -0
  79. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Surface.cxx.o +0 -0
  80. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SurfaceCharge.cxx.o +0 -0
  81. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SurfaceComp.cxx.o +0 -0
  82. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/System.cxx.o +0 -0
  83. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Temperature.cxx.o +0 -0
  84. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Use.cpp.o +0 -0
  85. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/UserPunch.cpp.o +0 -0
  86. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/advection.cpp.o +0 -0
  87. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/basicsubs.cpp.o +0 -0
  88. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cl1.cpp.o +0 -0
  89. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/PHRQ_base.cxx.o +0 -0
  90. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/PHRQ_io.cpp.o +0 -0
  91. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/Parser.cxx.o +0 -0
  92. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/Utils.cxx.o +0 -0
  93. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cvdense.cpp.o +0 -0
  94. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cvode.cpp.o +0 -0
  95. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cxxKinetics.cxx.o +0 -0
  96. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cxxMix.cxx.o +0 -0
  97. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/dense.cpp.o +0 -0
  98. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/dumper.cpp.o +0 -0
  99. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/gases.cpp.o +0 -0
  100. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/input.cpp.o +0 -0
  101. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/integrate.cpp.o +0 -0
  102. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/inverse.cpp.o +0 -0
  103. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/isotopes.cpp.o +0 -0
  104. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/kinetics.cpp.o +0 -0
  105. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/mainsubs.cpp.o +0 -0
  106. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/model.cpp.o +0 -0
  107. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/nvector.cpp.o +0 -0
  108. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/nvector_serial.cpp.o +0 -0
  109. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/parse.cpp.o +0 -0
  110. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/phqalloc.cpp.o +0 -0
  111. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/pitzer.cpp.o +0 -0
  112. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/pitzer_structures.cpp.o +0 -0
  113. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/prep.cpp.o +0 -0
  114. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/print.cpp.o +0 -0
  115. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/read.cpp.o +0 -0
  116. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/readtr.cpp.o +0 -0
  117. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/runner.cpp.o +0 -0
  118. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/sit.cpp.o +0 -0
  119. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/smalldense.cpp.o +0 -0
  120. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/spread.cpp.o +0 -0
  121. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/step.cpp.o +0 -0
  122. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/structures.cpp.o +0 -0
  123. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/sundialsmath.cpp.o +0 -0
  124. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/tally.cpp.o +0 -0
  125. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/tidy.cpp.o +0 -0
  126. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/transport.cpp.o +0 -0
  127. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/utilities.cpp.o +0 -0
  128. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CTestTestfile.cmake +6 -0
  129. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/DartConfiguration.tcl +109 -0
  130. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/cmake_install.cmake +45 -0
  131. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/libIPhreeqc.a +0 -0
  132. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ar-lib +270 -0
  133. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/compile +347 -0
  134. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.guess +1441 -0
  135. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.sub +1813 -0
  136. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/depcomp +791 -0
  137. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/install-sh +508 -0
  138. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ltmain.sh +11156 -0
  139. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/missing +215 -0
  140. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/test-driver +148 -0
  141. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure +23867 -0
  142. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure.ac +136 -0
  143. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Amm.dat +1968 -0
  144. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/CMakeLists.txt +32 -0
  145. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/ColdChem.dat +267 -0
  146. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PHR.dat +158 -0
  147. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PZ.dat +195 -0
  148. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec.v2.dat +12039 -0
  149. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec_v3.dat +12159 -0
  150. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.am +28 -0
  151. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.in +530 -0
  152. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  153. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Tipping_Hurley.dat +4137 -0
  154. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/core10.dat +6824 -0
  155. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/frezchem.dat +634 -0
  156. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/iso.dat +7235 -0
  157. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/llnl.dat +19310 -0
  158. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.dat +5654 -0
  159. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.v4.dat +13212 -0
  160. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc.dat +1972 -0
  161. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc_rates.dat +3158 -0
  162. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/pitzer.dat +1044 -0
  163. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/sit.dat +14348 -0
  164. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/wateq4f.dat +4036 -0
  165. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/CMakeLists.txt +35 -0
  166. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/IPhreeqc.pdf +0 -0
  167. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.am +24 -0
  168. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.in +545 -0
  169. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/NOTICE +51 -0
  170. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_2_1999_manual.pdf +0 -0
  171. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_3_2013_manual.pdf +0 -0
  172. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/README +428 -0
  173. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/RELEASE +7294 -0
  174. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h.html +5096 -0
  175. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h_source.html +389 -0
  176. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp.html +83 -0
  177. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp_source.html +478 -0
  178. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h.html +318 -0
  179. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h_source.html +200 -0
  180. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bc_s.png +0 -0
  181. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bdwn.png +0 -0
  182. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.html +2274 -0
  183. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.png +0 -0
  184. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.html +69 -0
  185. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.png +0 -0
  186. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/closed.png +0 -0
  187. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +68 -0
  188. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.css +1440 -0
  189. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.png +0 -0
  190. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dynsections.js +97 -0
  191. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2blank.png +0 -0
  192. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2doc.png +0 -0
  193. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderclosed.png +0 -0
  194. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderopen.png +0 -0
  195. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2lastnode.png +0 -0
  196. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2link.png +0 -0
  197. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mlastnode.png +0 -0
  198. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mnode.png +0 -0
  199. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2node.png +0 -0
  200. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2plastnode.png +0 -0
  201. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2pnode.png +0 -0
  202. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2splitbar.png +0 -0
  203. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2vertline.png +0 -0
  204. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/index.html +58 -0
  205. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/jquery.js +31 -0
  206. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_f.png +0 -0
  207. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_g.png +0 -0
  208. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_h.png +0 -0
  209. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/open.png +0 -0
  210. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/structVAR.html +143 -0
  211. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_off.png +0 -0
  212. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_on.png +0 -0
  213. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_a.png +0 -0
  214. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_b.png +0 -0
  215. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_h.png +0 -0
  216. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_s.png +0 -0
  217. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tabs.css +60 -0
  218. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/phreeqc3.chm +0 -0
  219. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/CMakeLists.txt +11 -0
  220. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.am +88 -0
  221. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.in +696 -0
  222. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/CMakeLists.txt +1 -0
  223. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt +35 -0
  224. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt.in +21 -0
  225. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/README.txt +44 -0
  226. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/advect.c +101 -0
  227. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/ic +17 -0
  228. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/phreeqc.dat +1579 -0
  229. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/CMakeLists.txt +10 -0
  230. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/README.txt +3 -0
  231. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/CMakeLists.txt +9 -0
  232. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/phreeqc.dat +1582 -0
  233. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/runphreeqc.xls +0 -0
  234. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/withcallback.xls +0 -0
  235. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/CMakeLists.txt +11 -0
  236. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/Gypsum.py +52 -0
  237. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/parallel_advect.py +465 -0
  238. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/phreeqc.dat +1582 -0
  239. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/pitzer.dat +790 -0
  240. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/wateq4f.dat +3846 -0
  241. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/CMakeLists.txt +1 -0
  242. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt +35 -0
  243. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt.in +20 -0
  244. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/README.txt +45 -0
  245. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/advect.cpp +110 -0
  246. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/ic +17 -0
  247. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/phreeqc.dat +1579 -0
  248. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/CMakeLists.txt +1 -0
  249. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt +44 -0
  250. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt.in +24 -0
  251. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/README.txt +45 -0
  252. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/advect.F90 +102 -0
  253. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/ic +17 -0
  254. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/phreeqc.dat +1579 -0
  255. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt +26 -0
  256. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt.in +20 -0
  257. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/README.txt +37 -0
  258. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/ex2 +26 -0
  259. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/main.cpp +20 -0
  260. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/phreeqc.dat +1837 -0
  261. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/post-install.cmake.in +7 -0
  262. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/CMakeLists.txt +185 -0
  263. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.cpp +171 -0
  264. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.h +34 -0
  265. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.am +18 -0
  266. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.in +466 -0
  267. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestCVar.cpp +9 -0
  268. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqc.cpp +4901 -0
  269. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqcLib.cpp +4644 -0
  270. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestSelectedOutput.cpp +669 -0
  271. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestVar.cpp +10 -0
  272. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/conv_fail.in +11 -0
  273. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/dump +42 -0
  274. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/iso.dat +7231 -0
  275. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/kinn20140218 +349 -0
  276. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/missing_e.dat +1556 -0
  277. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch +105 -0
  278. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch_no_set +102 -0
  279. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.90a6449 +1935 -0
  280. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.old +1556 -0
  281. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/libtool.m4 +8388 -0
  282. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltoptions.m4 +437 -0
  283. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltsugar.m4 +124 -0
  284. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltversion.m4 +23 -0
  285. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/lt~obsolete.m4 +99 -0
  286. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/resource.h +14 -0
  287. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.cpp +401 -0
  288. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.hxx +77 -0
  289. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CVar.hxx +162 -0
  290. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Debug.h +12 -0
  291. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/ErrorReporter.hxx +70 -0
  292. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.cpp +1889 -0
  293. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f.inc +91 -0
  294. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f90.inc +603 -0
  295. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.h +2182 -0
  296. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.hpp +1027 -0
  297. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcCallbacks.h +19 -0
  298. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcF.f +653 -0
  299. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcLib.cpp +1098 -0
  300. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface.F90 +1283 -0
  301. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.cpp +535 -0
  302. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.h +162 -0
  303. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.am +210 -0
  304. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.in +1294 -0
  305. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/README.Fortran +17 -0
  306. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.c +84 -0
  307. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.h +152 -0
  308. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Version.h +36 -0
  309. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fimpl.h +282 -0
  310. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.cpp +646 -0
  311. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.h +163 -0
  312. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap1.cpp +24 -0
  313. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap2.cpp +24 -0
  314. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap3.cpp +24 -0
  315. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap4.cpp +24 -0
  316. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap5.cpp +24 -0
  317. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap6.cpp +25 -0
  318. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap7.cpp +25 -0
  319. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap8.cpp +24 -0
  320. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.cpp +225 -0
  321. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.h +59 -0
  322. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.cpp +1382 -0
  323. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.h +444 -0
  324. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.cpp +42 -0
  325. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.h +79 -0
  326. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.cpp +41 -0
  327. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.h +28 -0
  328. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.cxx +398 -0
  329. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.h +117 -0
  330. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.cxx +466 -0
  331. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.h +74 -0
  332. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.h +1184 -0
  333. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.resX +36 -0
  334. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.cxx +265 -0
  335. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.h +59 -0
  336. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.cxx +659 -0
  337. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.h +103 -0
  338. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.cxx +40 -0
  339. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.h +53 -0
  340. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.cxx +202 -0
  341. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.h +138 -0
  342. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.cxx +318 -0
  343. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.h +81 -0
  344. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NA.h +1 -0
  345. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.cxx +537 -0
  346. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.h +66 -0
  347. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.cxx +190 -0
  348. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.h +67 -0
  349. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.cpp +8350 -0
  350. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.h +572 -0
  351. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PHRQ_io_output.cpp +411 -0
  352. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.cxx +375 -0
  353. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.h +70 -0
  354. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.cxx +441 -0
  355. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.h +83 -0
  356. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.cpp +2087 -0
  357. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.h +2164 -0
  358. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp +242 -0
  359. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.h +104 -0
  360. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.cxx +417 -0
  361. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.h +43 -0
  362. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.cxx +284 -0
  363. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.h +57 -0
  364. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ReadClass.cxx +1150 -0
  365. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.cxx +609 -0
  366. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.h +128 -0
  367. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.cxx +317 -0
  368. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.h +59 -0
  369. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.cxx +297 -0
  370. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.h +66 -0
  371. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.cpp +115 -0
  372. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.h +209 -0
  373. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.cxx +213 -0
  374. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.h +42 -0
  375. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.cxx +1795 -0
  376. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.h +154 -0
  377. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.cxx +333 -0
  378. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.h +85 -0
  379. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.cxx +1507 -0
  380. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.h +141 -0
  381. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.cpp +358 -0
  382. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.h +81 -0
  383. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.cxx +837 -0
  384. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.h +108 -0
  385. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.cxx +617 -0
  386. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.h +137 -0
  387. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.cxx +509 -0
  388. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.h +70 -0
  389. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.cxx +103 -0
  390. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.h +89 -0
  391. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.cxx +423 -0
  392. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.h +42 -0
  393. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.cpp +78 -0
  394. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.h +159 -0
  395. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.cpp +32 -0
  396. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.h +39 -0
  397. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ZedGraph.dll +0 -0
  398. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/advection.cpp +140 -0
  399. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/basicsubs.cpp +4333 -0
  400. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cl1.cpp +881 -0
  401. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.cxx +117 -0
  402. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.h +48 -0
  403. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_exports.h +20 -0
  404. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.cpp +914 -0
  405. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.h +207 -0
  406. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.cxx +1331 -0
  407. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.h +310 -0
  408. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.cxx +263 -0
  409. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.h +29 -0
  410. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/phrqtype.h +18 -0
  411. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.cpp +566 -0
  412. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.h +267 -0
  413. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.cpp +3939 -0
  414. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.h +940 -0
  415. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.cxx +617 -0
  416. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.h +78 -0
  417. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.cxx +154 -0
  418. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.h +58 -0
  419. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.cpp +175 -0
  420. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.h +341 -0
  421. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.cpp +277 -0
  422. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.h +60 -0
  423. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/gases.cpp +748 -0
  424. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/global_structures.h +1672 -0
  425. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/input.cpp +133 -0
  426. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/integrate.cpp +1219 -0
  427. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/inverse.cpp +5135 -0
  428. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/isotopes.cpp +1813 -0
  429. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/kinetics.cpp +3180 -0
  430. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/mainsubs.cpp +2320 -0
  431. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/model.cpp +5843 -0
  432. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.cpp +272 -0
  433. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.h +485 -0
  434. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.cpp +1032 -0
  435. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.h +369 -0
  436. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/parse.cpp +1044 -0
  437. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.cpp +316 -0
  438. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.h +47 -0
  439. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer.cpp +2709 -0
  440. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer_structures.cpp +225 -0
  441. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/prep.cpp +6267 -0
  442. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/print.cpp +3673 -0
  443. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/read.cpp +10245 -0
  444. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/readtr.cpp +1495 -0
  445. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.cpp +158 -0
  446. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.h +33 -0
  447. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sit.cpp +1684 -0
  448. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.cpp +324 -0
  449. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.h +261 -0
  450. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/spread.cpp +1309 -0
  451. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/step.cpp +1566 -0
  452. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/structures.cpp +3381 -0
  453. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.cpp +133 -0
  454. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.h +162 -0
  455. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialstypes.h +183 -0
  456. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tally.cpp +1288 -0
  457. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tidy.cpp +5600 -0
  458. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/transport.cpp +6403 -0
  459. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/utilities.cpp +1339 -0
  460. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/thread.h +64 -0
  461. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/CMakeLists.txt +133 -0
  462. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.am +45 -0
  463. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.in +1128 -0
  464. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/ex2.in +26 -0
  465. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main.f90 +31 -0
  466. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main77.f +6 -0
  467. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main_fortran.cxx +8 -0
  468. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/phreeqc.dat.in +1556 -0
  469. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_c.c +148 -0
  470. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_cxx.cxx +152 -0
  471. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_f90.F90 +328 -0
  472. pyEQL/phreeqc/iphreeqc_wrapper.cpp +75 -0
  473. pyEQL/phreeqc/solution.py +74 -0
  474. pyEQL/phreeqc/var.py +50 -0
  475. pyEQL/presets/Ringers lactate.yaml +20 -0
  476. pyEQL/presets/__init__.py +17 -0
  477. pyEQL/presets/normal saline.yaml +17 -0
  478. pyEQL/presets/rainwater.yaml +17 -0
  479. pyEQL/presets/seawater.yaml +29 -0
  480. pyEQL/presets/urine.yaml +26 -0
  481. pyEQL/presets/wastewater.yaml +21 -0
  482. pyEQL/py.typed +0 -0
  483. pyEQL/salt_ion_match.py +112 -0
  484. pyEQL/solute.py +163 -0
  485. pyEQL/solution.py +2714 -0
  486. pyEQL/utils.py +237 -0
  487. pyeql-1.4.0rc9.dist-info/METADATA +130 -0
  488. pyeql-1.4.0rc9.dist-info/RECORD +491 -0
  489. pyeql-1.4.0rc9.dist-info/WHEEL +6 -0
  490. pyeql-1.4.0rc9.dist-info/licenses/AUTHORS.md +21 -0
  491. pyeql-1.4.0rc9.dist-info/licenses/LICENSE.txt +20 -0
@@ -0,0 +1,816 @@
1
+ # Makefile.in generated by automake 1.15 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2014 Free Software Foundation, Inc.
5
+
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
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+ VPATH = @srcdir@
17
+ am__is_gnu_make = { \
18
+ if test -z '$(MAKELEVEL)'; then \
19
+ false; \
20
+ elif test -n '$(MAKE_HOST)'; then \
21
+ true; \
22
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
23
+ true; \
24
+ else \
25
+ false; \
26
+ fi; \
27
+ }
28
+ am__make_running_with_option = \
29
+ case $${target_option-} in \
30
+ ?) ;; \
31
+ *) echo "am__make_running_with_option: internal error: invalid" \
32
+ "target option '$${target_option-}' specified" >&2; \
33
+ exit 1;; \
34
+ esac; \
35
+ has_opt=no; \
36
+ sane_makeflags=$$MAKEFLAGS; \
37
+ if $(am__is_gnu_make); then \
38
+ sane_makeflags=$$MFLAGS; \
39
+ else \
40
+ case $$MAKEFLAGS in \
41
+ *\\[\ \ ]*) \
42
+ bs=\\; \
43
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
44
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
45
+ esac; \
46
+ fi; \
47
+ skip_next=no; \
48
+ strip_trailopt () \
49
+ { \
50
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
51
+ }; \
52
+ for flg in $$sane_makeflags; do \
53
+ test $$skip_next = yes && { skip_next=no; continue; }; \
54
+ case $$flg in \
55
+ *=*|--*) continue;; \
56
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
57
+ -*I?*) strip_trailopt 'I';; \
58
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
59
+ -*O?*) strip_trailopt 'O';; \
60
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
61
+ -*l?*) strip_trailopt 'l';; \
62
+ -[dEDm]) skip_next=yes;; \
63
+ -[JT]) skip_next=yes;; \
64
+ esac; \
65
+ case $$flg in \
66
+ *$$target_option*) has_opt=yes; break;; \
67
+ esac; \
68
+ done; \
69
+ test $$has_opt = yes
70
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
71
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
72
+ pkgdatadir = $(datadir)/@PACKAGE@
73
+ pkgincludedir = $(includedir)/@PACKAGE@
74
+ pkglibdir = $(libdir)/@PACKAGE@
75
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
76
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
77
+ install_sh_DATA = $(install_sh) -c -m 644
78
+ install_sh_PROGRAM = $(install_sh) -c
79
+ install_sh_SCRIPT = $(install_sh) -c
80
+ INSTALL_HEADER = $(INSTALL_DATA)
81
+ transform = $(program_transform_name)
82
+ NORMAL_INSTALL = :
83
+ PRE_INSTALL = :
84
+ POST_INSTALL = :
85
+ NORMAL_UNINSTALL = :
86
+ PRE_UNINSTALL = :
87
+ POST_UNINSTALL = :
88
+ build_triplet = @build@
89
+ host_triplet = @host@
90
+ subdir = .
91
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
92
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
93
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
94
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
95
+ $(top_srcdir)/configure.ac
96
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
97
+ $(ACLOCAL_M4)
98
+ DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
99
+ $(am__configure_deps) $(am__DIST_COMMON)
100
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
101
+ configure.lineno config.status.lineno
102
+ mkinstalldirs = $(install_sh) -d
103
+ CONFIG_CLEAN_FILES =
104
+ CONFIG_CLEAN_VPATH_FILES =
105
+ AM_V_P = $(am__v_P_@AM_V@)
106
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
107
+ am__v_P_0 = false
108
+ am__v_P_1 = :
109
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
110
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
111
+ am__v_GEN_0 = @echo " GEN " $@;
112
+ am__v_GEN_1 =
113
+ AM_V_at = $(am__v_at_@AM_V@)
114
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
115
+ am__v_at_0 = @
116
+ am__v_at_1 =
117
+ SOURCES =
118
+ DIST_SOURCES =
119
+ RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
120
+ ctags-recursive dvi-recursive html-recursive info-recursive \
121
+ install-data-recursive install-dvi-recursive \
122
+ install-exec-recursive install-html-recursive \
123
+ install-info-recursive install-pdf-recursive \
124
+ install-ps-recursive install-recursive installcheck-recursive \
125
+ installdirs-recursive pdf-recursive ps-recursive \
126
+ tags-recursive uninstall-recursive
127
+ am__can_run_installinfo = \
128
+ case $$AM_UPDATE_INFO_DIR in \
129
+ n|no|NO) false;; \
130
+ *) (install-info --version) >/dev/null 2>&1;; \
131
+ esac
132
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
133
+ distclean-recursive maintainer-clean-recursive
134
+ am__recursive_targets = \
135
+ $(RECURSIVE_TARGETS) \
136
+ $(RECURSIVE_CLEAN_TARGETS) \
137
+ $(am__extra_recursive_targets)
138
+ AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
139
+ cscope distdir dist dist-all distcheck
140
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
141
+ # Read a list of newline-separated strings from the standard input,
142
+ # and print each of them once, without duplicates. Input order is
143
+ # *not* preserved.
144
+ am__uniquify_input = $(AWK) '\
145
+ BEGIN { nonempty = 0; } \
146
+ { items[$$0] = 1; nonempty = 1; } \
147
+ END { if (nonempty) { for (i in items) print i; }; } \
148
+ '
149
+ # Make sure the list of sources is unique. This is necessary because,
150
+ # e.g., the same source file might be shared among _SOURCES variables
151
+ # for different programs/libraries.
152
+ am__define_uniq_tagged_files = \
153
+ list='$(am__tagged_files)'; \
154
+ unique=`for i in $$list; do \
155
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
156
+ done | $(am__uniquify_input)`
157
+ ETAGS = etags
158
+ CTAGS = ctags
159
+ CSCOPE = cscope
160
+ DIST_SUBDIRS = $(SUBDIRS)
161
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/ar-lib \
162
+ $(top_srcdir)/config/compile $(top_srcdir)/config/config.guess \
163
+ $(top_srcdir)/config/config.sub \
164
+ $(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \
165
+ $(top_srcdir)/config/missing INSTALL config/ar-lib \
166
+ config/compile config/config.guess config/config.sub \
167
+ config/install-sh config/ltmain.sh config/missing
168
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
169
+ distdir = $(PACKAGE)-$(VERSION)
170
+ top_distdir = $(distdir)
171
+ am__remove_distdir = \
172
+ if test -d "$(distdir)"; then \
173
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
174
+ && rm -rf "$(distdir)" \
175
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
176
+ else :; fi
177
+ am__post_remove_distdir = $(am__remove_distdir)
178
+ am__relativize = \
179
+ dir0=`pwd`; \
180
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
181
+ sed_rest='s,^[^/]*/*,,'; \
182
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
183
+ sed_butlast='s,/*[^/]*$$,,'; \
184
+ while test -n "$$dir1"; do \
185
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
186
+ if test "$$first" != "."; then \
187
+ if test "$$first" = ".."; then \
188
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
189
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
190
+ else \
191
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
192
+ if test "$$first2" = "$$first"; then \
193
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
194
+ else \
195
+ dir2="../$$dir2"; \
196
+ fi; \
197
+ dir0="$$dir0"/"$$first"; \
198
+ fi; \
199
+ fi; \
200
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
201
+ done; \
202
+ reldir="$$dir2"
203
+ DIST_ARCHIVES = $(distdir).tar.gz
204
+ GZIP_ENV = --best
205
+ DIST_TARGETS = dist-gzip
206
+ distuninstallcheck_listfiles = find . -type f -print
207
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
208
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
209
+ distcleancheck_listfiles = find . -type f -print
210
+ ACLOCAL = @ACLOCAL@
211
+ AMTAR = @AMTAR@
212
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
213
+ AR = @AR@
214
+ AUTOCONF = @AUTOCONF@
215
+ AUTOHEADER = @AUTOHEADER@
216
+ AUTOMAKE = @AUTOMAKE@
217
+ AWK = @AWK@
218
+ CC = @CC@
219
+ CCDEPMODE = @CCDEPMODE@
220
+ CFLAGS = @CFLAGS@
221
+ CPP = @CPP@
222
+ CPPFLAGS = @CPPFLAGS@
223
+ CXX = @CXX@
224
+ CXXCPP = @CXXCPP@
225
+ CXXDEPMODE = @CXXDEPMODE@
226
+ CXXFLAGS = @CXXFLAGS@
227
+ CYGPATH_W = @CYGPATH_W@
228
+ DEFS = @DEFS@
229
+ DEPDIR = @DEPDIR@
230
+ DLLTOOL = @DLLTOOL@
231
+ DSYMUTIL = @DSYMUTIL@
232
+ DUMPBIN = @DUMPBIN@
233
+ ECHO_C = @ECHO_C@
234
+ ECHO_N = @ECHO_N@
235
+ ECHO_T = @ECHO_T@
236
+ EGREP = @EGREP@
237
+ EXEEXT = @EXEEXT@
238
+ F77 = @F77@
239
+ FC = @FC@
240
+ FCFLAGS = @FCFLAGS@
241
+ FCLIBS = @FCLIBS@
242
+ FC_MODEXT = @FC_MODEXT@
243
+ FFLAGS = @FFLAGS@
244
+ FGREP = @FGREP@
245
+ GREP = @GREP@
246
+ INSTALL = @INSTALL@
247
+ INSTALL_DATA = @INSTALL_DATA@
248
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
249
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
250
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
251
+ LD = @LD@
252
+ LDFLAGS = @LDFLAGS@
253
+ LIBOBJS = @LIBOBJS@
254
+ LIBS = @LIBS@
255
+ LIBTOOL = @LIBTOOL@
256
+ LIPO = @LIPO@
257
+ LN_S = @LN_S@
258
+ LTLIBOBJS = @LTLIBOBJS@
259
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
260
+ MAKEINFO = @MAKEINFO@
261
+ MANIFEST_TOOL = @MANIFEST_TOOL@
262
+ MKDIR_P = @MKDIR_P@
263
+ NM = @NM@
264
+ NMEDIT = @NMEDIT@
265
+ OBJDUMP = @OBJDUMP@
266
+ OBJEXT = @OBJEXT@
267
+ OTOOL = @OTOOL@
268
+ OTOOL64 = @OTOOL64@
269
+ PACKAGE = @PACKAGE@
270
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
271
+ PACKAGE_NAME = @PACKAGE_NAME@
272
+ PACKAGE_STRING = @PACKAGE_STRING@
273
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
274
+ PACKAGE_URL = @PACKAGE_URL@
275
+ PACKAGE_VERSION = @PACKAGE_VERSION@
276
+ PATH_SEPARATOR = @PATH_SEPARATOR@
277
+ POW_LIB = @POW_LIB@
278
+ RANLIB = @RANLIB@
279
+ SED = @SED@
280
+ SET_MAKE = @SET_MAKE@
281
+ SHELL = @SHELL@
282
+ STRIP = @STRIP@
283
+ VERSION = @VERSION@
284
+ abs_builddir = @abs_builddir@
285
+ abs_srcdir = @abs_srcdir@
286
+ abs_top_builddir = @abs_top_builddir@
287
+ abs_top_srcdir = @abs_top_srcdir@
288
+ ac_ct_AR = @ac_ct_AR@
289
+ ac_ct_CC = @ac_ct_CC@
290
+ ac_ct_CXX = @ac_ct_CXX@
291
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
292
+ ac_ct_FC = @ac_ct_FC@
293
+ am__include = @am__include@
294
+ am__leading_dot = @am__leading_dot@
295
+ am__quote = @am__quote@
296
+ am__tar = @am__tar@
297
+ am__untar = @am__untar@
298
+ bindir = @bindir@
299
+ build = @build@
300
+ build_alias = @build_alias@
301
+ build_cpu = @build_cpu@
302
+ build_os = @build_os@
303
+ build_vendor = @build_vendor@
304
+ builddir = @builddir@
305
+ datadir = @datadir@
306
+ datarootdir = @datarootdir@
307
+ docdir = @docdir@
308
+ dvidir = @dvidir@
309
+ exec_prefix = @exec_prefix@
310
+ host = @host@
311
+ host_alias = @host_alias@
312
+ host_cpu = @host_cpu@
313
+ host_os = @host_os@
314
+ host_vendor = @host_vendor@
315
+ htmldir = @htmldir@
316
+ includedir = @includedir@
317
+ infodir = @infodir@
318
+ install_sh = @install_sh@
319
+ libdir = @libdir@
320
+ libexecdir = @libexecdir@
321
+ localedir = @localedir@
322
+ localstatedir = @localstatedir@
323
+ mandir = @mandir@
324
+ mkdir_p = @mkdir_p@
325
+ oldincludedir = @oldincludedir@
326
+ pdfdir = @pdfdir@
327
+ prefix = @prefix@
328
+ program_transform_name = @program_transform_name@
329
+ psdir = @psdir@
330
+ runstatedir = @runstatedir@
331
+ sbindir = @sbindir@
332
+ sharedstatedir = @sharedstatedir@
333
+ srcdir = @srcdir@
334
+ sysconfdir = @sysconfdir@
335
+ target_alias = @target_alias@
336
+ top_build_prefix = @top_build_prefix@
337
+ top_builddir = @top_builddir@
338
+ top_srcdir = @top_srcdir@
339
+ ACLOCAL_AMFLAGS = -I m4
340
+ EXTRA_DIST = \
341
+ CMakeLists.txt\
342
+ INSTALL\
343
+ IPhreeqcConfig.cmake.in\
344
+ IPhreeqc.rc\
345
+ resource.h
346
+
347
+ SUBDIRS = src tests examples doc database gtest
348
+ all: all-recursive
349
+
350
+ .SUFFIXES:
351
+ am--refresh: Makefile
352
+ @:
353
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
354
+ @for dep in $?; do \
355
+ case '$(am__configure_deps)' in \
356
+ *$$dep*) \
357
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
358
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
359
+ && exit 0; \
360
+ exit 1;; \
361
+ esac; \
362
+ done; \
363
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
364
+ $(am__cd) $(top_srcdir) && \
365
+ $(AUTOMAKE) --foreign Makefile
366
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
367
+ @case '$?' in \
368
+ *config.status*) \
369
+ echo ' $(SHELL) ./config.status'; \
370
+ $(SHELL) ./config.status;; \
371
+ *) \
372
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
373
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
374
+ esac;
375
+
376
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
377
+ $(SHELL) ./config.status --recheck
378
+
379
+ $(top_srcdir)/configure: $(am__configure_deps)
380
+ $(am__cd) $(srcdir) && $(AUTOCONF)
381
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
382
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
383
+ $(am__aclocal_m4_deps):
384
+
385
+ mostlyclean-libtool:
386
+ -rm -f *.lo
387
+
388
+ clean-libtool:
389
+ -rm -rf .libs _libs
390
+
391
+ distclean-libtool:
392
+ -rm -f libtool config.lt
393
+
394
+ # This directory's subdirectories are mostly independent; you can cd
395
+ # into them and run 'make' without going through this Makefile.
396
+ # To change the values of 'make' variables: instead of editing Makefiles,
397
+ # (1) if the variable is set in 'config.status', edit 'config.status'
398
+ # (which will cause the Makefiles to be regenerated when you run 'make');
399
+ # (2) otherwise, pass the desired values on the 'make' command line.
400
+ $(am__recursive_targets):
401
+ @fail=; \
402
+ if $(am__make_keepgoing); then \
403
+ failcom='fail=yes'; \
404
+ else \
405
+ failcom='exit 1'; \
406
+ fi; \
407
+ dot_seen=no; \
408
+ target=`echo $@ | sed s/-recursive//`; \
409
+ case "$@" in \
410
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
411
+ *) list='$(SUBDIRS)' ;; \
412
+ esac; \
413
+ for subdir in $$list; do \
414
+ echo "Making $$target in $$subdir"; \
415
+ if test "$$subdir" = "."; then \
416
+ dot_seen=yes; \
417
+ local_target="$$target-am"; \
418
+ else \
419
+ local_target="$$target"; \
420
+ fi; \
421
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
422
+ || eval $$failcom; \
423
+ done; \
424
+ if test "$$dot_seen" = "no"; then \
425
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
426
+ fi; test -z "$$fail"
427
+
428
+ ID: $(am__tagged_files)
429
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
430
+ tags: tags-recursive
431
+ TAGS: tags
432
+
433
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
434
+ set x; \
435
+ here=`pwd`; \
436
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
437
+ include_option=--etags-include; \
438
+ empty_fix=.; \
439
+ else \
440
+ include_option=--include; \
441
+ empty_fix=; \
442
+ fi; \
443
+ list='$(SUBDIRS)'; for subdir in $$list; do \
444
+ if test "$$subdir" = .; then :; else \
445
+ test ! -f $$subdir/TAGS || \
446
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
447
+ fi; \
448
+ done; \
449
+ $(am__define_uniq_tagged_files); \
450
+ shift; \
451
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
452
+ test -n "$$unique" || unique=$$empty_fix; \
453
+ if test $$# -gt 0; then \
454
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
455
+ "$$@" $$unique; \
456
+ else \
457
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
458
+ $$unique; \
459
+ fi; \
460
+ fi
461
+ ctags: ctags-recursive
462
+
463
+ CTAGS: ctags
464
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
465
+ $(am__define_uniq_tagged_files); \
466
+ test -z "$(CTAGS_ARGS)$$unique" \
467
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
468
+ $$unique
469
+
470
+ GTAGS:
471
+ here=`$(am__cd) $(top_builddir) && pwd` \
472
+ && $(am__cd) $(top_srcdir) \
473
+ && gtags -i $(GTAGS_ARGS) "$$here"
474
+ cscope: cscope.files
475
+ test ! -s cscope.files \
476
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
477
+ clean-cscope:
478
+ -rm -f cscope.files
479
+ cscope.files: clean-cscope cscopelist
480
+ cscopelist: cscopelist-recursive
481
+
482
+ cscopelist-am: $(am__tagged_files)
483
+ list='$(am__tagged_files)'; \
484
+ case "$(srcdir)" in \
485
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
486
+ *) sdir=$(subdir)/$(srcdir) ;; \
487
+ esac; \
488
+ for i in $$list; do \
489
+ if test -f "$$i"; then \
490
+ echo "$(subdir)/$$i"; \
491
+ else \
492
+ echo "$$sdir/$$i"; \
493
+ fi; \
494
+ done >> $(top_builddir)/cscope.files
495
+
496
+ distclean-tags:
497
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
498
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
499
+
500
+ distdir: $(DISTFILES)
501
+ $(am__remove_distdir)
502
+ test -d "$(distdir)" || mkdir "$(distdir)"
503
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
504
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
505
+ list='$(DISTFILES)'; \
506
+ dist_files=`for file in $$list; do echo $$file; done | \
507
+ sed -e "s|^$$srcdirstrip/||;t" \
508
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
509
+ case $$dist_files in \
510
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
511
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
512
+ sort -u` ;; \
513
+ esac; \
514
+ for file in $$dist_files; do \
515
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
516
+ if test -d $$d/$$file; then \
517
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
518
+ if test -d "$(distdir)/$$file"; then \
519
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
520
+ fi; \
521
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
522
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
523
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
524
+ fi; \
525
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
526
+ else \
527
+ test -f "$(distdir)/$$file" \
528
+ || cp -p $$d/$$file "$(distdir)/$$file" \
529
+ || exit 1; \
530
+ fi; \
531
+ done
532
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
533
+ if test "$$subdir" = .; then :; else \
534
+ $(am__make_dryrun) \
535
+ || test -d "$(distdir)/$$subdir" \
536
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
537
+ || exit 1; \
538
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
539
+ $(am__relativize); \
540
+ new_distdir=$$reldir; \
541
+ dir1=$$subdir; dir2="$(top_distdir)"; \
542
+ $(am__relativize); \
543
+ new_top_distdir=$$reldir; \
544
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
545
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
546
+ ($(am__cd) $$subdir && \
547
+ $(MAKE) $(AM_MAKEFLAGS) \
548
+ top_distdir="$$new_top_distdir" \
549
+ distdir="$$new_distdir" \
550
+ am__remove_distdir=: \
551
+ am__skip_length_check=: \
552
+ am__skip_mode_fix=: \
553
+ distdir) \
554
+ || exit 1; \
555
+ fi; \
556
+ done
557
+ -test -n "$(am__skip_mode_fix)" \
558
+ || find "$(distdir)" -type d ! -perm -755 \
559
+ -exec chmod u+rwx,go+rx {} \; -o \
560
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
561
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
562
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
563
+ || chmod -R a+r "$(distdir)"
564
+ dist-gzip: distdir
565
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
566
+ $(am__post_remove_distdir)
567
+
568
+ dist-bzip2: distdir
569
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
570
+ $(am__post_remove_distdir)
571
+
572
+ dist-lzip: distdir
573
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
574
+ $(am__post_remove_distdir)
575
+
576
+ dist-xz: distdir
577
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
578
+ $(am__post_remove_distdir)
579
+
580
+ dist-tarZ: distdir
581
+ @echo WARNING: "Support for distribution archives compressed with" \
582
+ "legacy program 'compress' is deprecated." >&2
583
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
584
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
585
+ $(am__post_remove_distdir)
586
+
587
+ dist-shar: distdir
588
+ @echo WARNING: "Support for shar distribution archives is" \
589
+ "deprecated." >&2
590
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
591
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
592
+ $(am__post_remove_distdir)
593
+
594
+ dist-zip: distdir
595
+ -rm -f $(distdir).zip
596
+ zip -rq $(distdir).zip $(distdir)
597
+ $(am__post_remove_distdir)
598
+
599
+ dist dist-all:
600
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
601
+ $(am__post_remove_distdir)
602
+
603
+ # This target untars the dist file and tries a VPATH configuration. Then
604
+ # it guarantees that the distribution is self-contained by making another
605
+ # tarfile.
606
+ distcheck: dist
607
+ case '$(DIST_ARCHIVES)' in \
608
+ *.tar.gz*) \
609
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
610
+ *.tar.bz2*) \
611
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
612
+ *.tar.lz*) \
613
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
614
+ *.tar.xz*) \
615
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
616
+ *.tar.Z*) \
617
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
618
+ *.shar.gz*) \
619
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
620
+ *.zip*) \
621
+ unzip $(distdir).zip ;;\
622
+ esac
623
+ chmod -R a-w $(distdir)
624
+ chmod u+w $(distdir)
625
+ mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
626
+ chmod a-w $(distdir)
627
+ test -d $(distdir)/_build || exit 0; \
628
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
629
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
630
+ && am__cwd=`pwd` \
631
+ && $(am__cd) $(distdir)/_build/sub \
632
+ && ../../configure \
633
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
634
+ $(DISTCHECK_CONFIGURE_FLAGS) \
635
+ --srcdir=../.. --prefix="$$dc_install_base" \
636
+ && $(MAKE) $(AM_MAKEFLAGS) \
637
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
638
+ && $(MAKE) $(AM_MAKEFLAGS) check \
639
+ && $(MAKE) $(AM_MAKEFLAGS) install \
640
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
641
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
642
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
643
+ distuninstallcheck \
644
+ && chmod -R a-w "$$dc_install_base" \
645
+ && ({ \
646
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
647
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
648
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
649
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
650
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
651
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
652
+ && rm -rf "$$dc_destdir" \
653
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
654
+ && rm -rf $(DIST_ARCHIVES) \
655
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
656
+ && cd "$$am__cwd" \
657
+ || exit 1
658
+ $(am__post_remove_distdir)
659
+ @(echo "$(distdir) archives ready for distribution: "; \
660
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
661
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
662
+ distuninstallcheck:
663
+ @test -n '$(distuninstallcheck_dir)' || { \
664
+ echo 'ERROR: trying to run $@ with an empty' \
665
+ '$$(distuninstallcheck_dir)' >&2; \
666
+ exit 1; \
667
+ }; \
668
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
669
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
670
+ exit 1; \
671
+ }; \
672
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
673
+ || { echo "ERROR: files left after uninstall:" ; \
674
+ if test -n "$(DESTDIR)"; then \
675
+ echo " (check DESTDIR support)"; \
676
+ fi ; \
677
+ $(distuninstallcheck_listfiles) ; \
678
+ exit 1; } >&2
679
+ distcleancheck: distclean
680
+ @if test '$(srcdir)' = . ; then \
681
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
682
+ exit 1 ; \
683
+ fi
684
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
685
+ || { echo "ERROR: files left in build directory after distclean:" ; \
686
+ $(distcleancheck_listfiles) ; \
687
+ exit 1; } >&2
688
+ check-am: all-am
689
+ check: check-recursive
690
+ all-am: Makefile
691
+ installdirs: installdirs-recursive
692
+ installdirs-am:
693
+ install: install-recursive
694
+ install-exec: install-exec-recursive
695
+ install-data: install-data-recursive
696
+ uninstall: uninstall-recursive
697
+
698
+ install-am: all-am
699
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
700
+
701
+ installcheck: installcheck-recursive
702
+ install-strip:
703
+ if test -z '$(STRIP)'; then \
704
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
705
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
706
+ install; \
707
+ else \
708
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
709
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
710
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
711
+ fi
712
+ mostlyclean-generic:
713
+
714
+ clean-generic:
715
+
716
+ distclean-generic:
717
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
718
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
719
+
720
+ maintainer-clean-generic:
721
+ @echo "This command is intended for maintainers to use"
722
+ @echo "it deletes files that may require special tools to rebuild."
723
+ clean: clean-recursive
724
+
725
+ clean-am: clean-generic clean-libtool mostlyclean-am
726
+
727
+ distclean: distclean-recursive
728
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
729
+ -rm -f Makefile
730
+ distclean-am: clean-am distclean-generic distclean-libtool \
731
+ distclean-tags
732
+
733
+ dvi: dvi-recursive
734
+
735
+ dvi-am:
736
+
737
+ html: html-recursive
738
+
739
+ html-am:
740
+
741
+ info: info-recursive
742
+
743
+ info-am:
744
+
745
+ install-data-am:
746
+
747
+ install-dvi: install-dvi-recursive
748
+
749
+ install-dvi-am:
750
+
751
+ install-exec-am:
752
+
753
+ install-html: install-html-recursive
754
+
755
+ install-html-am:
756
+
757
+ install-info: install-info-recursive
758
+
759
+ install-info-am:
760
+
761
+ install-man:
762
+
763
+ install-pdf: install-pdf-recursive
764
+
765
+ install-pdf-am:
766
+
767
+ install-ps: install-ps-recursive
768
+
769
+ install-ps-am:
770
+
771
+ installcheck-am:
772
+
773
+ maintainer-clean: maintainer-clean-recursive
774
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
775
+ -rm -rf $(top_srcdir)/autom4te.cache
776
+ -rm -f Makefile
777
+ maintainer-clean-am: distclean-am maintainer-clean-generic
778
+
779
+ mostlyclean: mostlyclean-recursive
780
+
781
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
782
+
783
+ pdf: pdf-recursive
784
+
785
+ pdf-am:
786
+
787
+ ps: ps-recursive
788
+
789
+ ps-am:
790
+
791
+ uninstall-am:
792
+
793
+ .MAKE: $(am__recursive_targets) install-am install-strip
794
+
795
+ .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
796
+ am--refresh check check-am clean clean-cscope clean-generic \
797
+ clean-libtool cscope cscopelist-am ctags ctags-am dist \
798
+ dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
799
+ dist-xz dist-zip distcheck distclean distclean-generic \
800
+ distclean-libtool distclean-tags distcleancheck distdir \
801
+ distuninstallcheck dvi dvi-am html html-am info info-am \
802
+ install install-am install-data install-data-am install-dvi \
803
+ install-dvi-am install-exec install-exec-am install-html \
804
+ install-html-am install-info install-info-am install-man \
805
+ install-pdf install-pdf-am install-ps install-ps-am \
806
+ install-strip installcheck installcheck-am installdirs \
807
+ installdirs-am maintainer-clean maintainer-clean-generic \
808
+ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
809
+ ps ps-am tags tags-am uninstall uninstall-am
810
+
811
+ .PRECIOUS: Makefile
812
+
813
+
814
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
815
+ # Otherwise a system limit (for SysV at least) may be exceeded.
816
+ .NOEXPORT: