pyEQL 1.4.0rc9__cp311-cp311-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-311-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,1128 @@
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
+ TESTS = test_c$(EXEEXT) test_cxx$(EXEEXT) $(am__EXEEXT_1)
91
+ check_PROGRAMS = test_c$(EXEEXT) test_cxx$(EXEEXT) $(am__EXEEXT_1)
92
+ @BUILD_FORTRAN_TRUE@am__append_1 = test_f90
93
+ @BUILD_FORTRAN_TRUE@am__append_2 = test_f90
94
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@am__append_3 = $(top_srcdir)/src/IPhreeqc_interface.F90
95
+ subdir = tests
96
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
97
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
98
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
99
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
100
+ $(top_srcdir)/configure.ac
101
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
102
+ $(ACLOCAL_M4)
103
+ DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
104
+ mkinstalldirs = $(install_sh) -d
105
+ CONFIG_CLEAN_FILES = phreeqc.dat ex2
106
+ CONFIG_CLEAN_VPATH_FILES =
107
+ @BUILD_FORTRAN_TRUE@am__EXEEXT_1 = test_f90$(EXEEXT)
108
+ am_test_c_OBJECTS = test_c.$(OBJEXT)
109
+ test_c_OBJECTS = $(am_test_c_OBJECTS)
110
+ test_c_DEPENDENCIES = $(top_builddir)/src/libiphreeqc.la
111
+ am_test_cxx_OBJECTS = test_cxx.$(OBJEXT)
112
+ test_cxx_OBJECTS = $(am_test_cxx_OBJECTS)
113
+ test_cxx_DEPENDENCIES = $(top_builddir)/src/libiphreeqc.la
114
+ AM_V_lt = $(am__v_lt_@AM_V@)
115
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
116
+ am__v_lt_0 = --silent
117
+ am__v_lt_1 =
118
+ am__test_f90_SOURCES_DIST = test_f90.F90 main_fortran.cxx \
119
+ $(top_srcdir)/src/IPhreeqc_interface.F90
120
+ am__dirstamp = $(am__leading_dot)dirstamp
121
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@am__objects_1 = $(top_srcdir)/src/IPhreeqc_interface.$(OBJEXT)
122
+ @BUILD_FORTRAN_TRUE@am_test_f90_OBJECTS = test_f90.$(OBJEXT) \
123
+ @BUILD_FORTRAN_TRUE@ main_fortran.$(OBJEXT) $(am__objects_1)
124
+ test_f90_OBJECTS = $(am_test_f90_OBJECTS)
125
+ am__DEPENDENCIES_1 =
126
+ @BUILD_FORTRAN_TRUE@test_f90_DEPENDENCIES = \
127
+ @BUILD_FORTRAN_TRUE@ $(top_builddir)/src/libiphreeqc.la \
128
+ @BUILD_FORTRAN_TRUE@ $(am__DEPENDENCIES_1)
129
+ AM_V_P = $(am__v_P_@AM_V@)
130
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
131
+ am__v_P_0 = false
132
+ am__v_P_1 = :
133
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
134
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
135
+ am__v_GEN_0 = @echo " GEN " $@;
136
+ am__v_GEN_1 =
137
+ AM_V_at = $(am__v_at_@AM_V@)
138
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
139
+ am__v_at_0 = @
140
+ am__v_at_1 =
141
+ DEFAULT_INCLUDES = -I.@am__isrc@
142
+ depcomp = $(SHELL) $(top_srcdir)/config/depcomp
143
+ am__depfiles_maybe = depfiles
144
+ am__mv = mv -f
145
+ PPFCCOMPILE = $(FC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
146
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_FCFLAGS) $(FCFLAGS)
147
+ LTPPFCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
148
+ $(LIBTOOLFLAGS) --mode=compile $(FC) $(DEFS) \
149
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
150
+ $(AM_FCFLAGS) $(FCFLAGS)
151
+ AM_V_PPFC = $(am__v_PPFC_@AM_V@)
152
+ am__v_PPFC_ = $(am__v_PPFC_@AM_DEFAULT_V@)
153
+ am__v_PPFC_0 = @echo " PPFC " $@;
154
+ am__v_PPFC_1 =
155
+ FCLD = $(FC)
156
+ FCLINK = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
157
+ $(LIBTOOLFLAGS) --mode=link $(FCLD) $(AM_FCFLAGS) $(FCFLAGS) \
158
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
159
+ AM_V_FCLD = $(am__v_FCLD_@AM_V@)
160
+ am__v_FCLD_ = $(am__v_FCLD_@AM_DEFAULT_V@)
161
+ am__v_FCLD_0 = @echo " FCLD " $@;
162
+ am__v_FCLD_1 =
163
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
164
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
165
+ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
166
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
167
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
168
+ $(AM_CFLAGS) $(CFLAGS)
169
+ AM_V_CC = $(am__v_CC_@AM_V@)
170
+ am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
171
+ am__v_CC_0 = @echo " CC " $@;
172
+ am__v_CC_1 =
173
+ CCLD = $(CC)
174
+ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
175
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
176
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
177
+ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
178
+ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
179
+ am__v_CCLD_0 = @echo " CCLD " $@;
180
+ am__v_CCLD_1 =
181
+ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
182
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
183
+ LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
184
+ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
185
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
186
+ $(AM_CXXFLAGS) $(CXXFLAGS)
187
+ AM_V_CXX = $(am__v_CXX_@AM_V@)
188
+ am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
189
+ am__v_CXX_0 = @echo " CXX " $@;
190
+ am__v_CXX_1 =
191
+ CXXLD = $(CXX)
192
+ CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
193
+ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
194
+ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
195
+ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
196
+ am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
197
+ am__v_CXXLD_0 = @echo " CXXLD " $@;
198
+ am__v_CXXLD_1 =
199
+ SOURCES = $(test_c_SOURCES) $(test_cxx_SOURCES) $(test_f90_SOURCES)
200
+ DIST_SOURCES = $(test_c_SOURCES) $(test_cxx_SOURCES) \
201
+ $(am__test_f90_SOURCES_DIST)
202
+ am__can_run_installinfo = \
203
+ case $$AM_UPDATE_INFO_DIR in \
204
+ n|no|NO) false;; \
205
+ *) (install-info --version) >/dev/null 2>&1;; \
206
+ esac
207
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
208
+ # Read a list of newline-separated strings from the standard input,
209
+ # and print each of them once, without duplicates. Input order is
210
+ # *not* preserved.
211
+ am__uniquify_input = $(AWK) '\
212
+ BEGIN { nonempty = 0; } \
213
+ { items[$$0] = 1; nonempty = 1; } \
214
+ END { if (nonempty) { for (i in items) print i; }; } \
215
+ '
216
+ # Make sure the list of sources is unique. This is necessary because,
217
+ # e.g., the same source file might be shared among _SOURCES variables
218
+ # for different programs/libraries.
219
+ am__define_uniq_tagged_files = \
220
+ list='$(am__tagged_files)'; \
221
+ unique=`for i in $$list; do \
222
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
223
+ done | $(am__uniquify_input)`
224
+ ETAGS = etags
225
+ CTAGS = ctags
226
+ am__tty_colors_dummy = \
227
+ mgn= red= grn= lgn= blu= brg= std=; \
228
+ am__color_tests=no
229
+ am__tty_colors = { \
230
+ $(am__tty_colors_dummy); \
231
+ if test "X$(AM_COLOR_TESTS)" = Xno; then \
232
+ am__color_tests=no; \
233
+ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
234
+ am__color_tests=yes; \
235
+ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
236
+ am__color_tests=yes; \
237
+ fi; \
238
+ if test $$am__color_tests = yes; then \
239
+ red=''; \
240
+ grn=''; \
241
+ lgn=''; \
242
+ blu=''; \
243
+ mgn=''; \
244
+ brg=''; \
245
+ std=''; \
246
+ fi; \
247
+ }
248
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
249
+ am__vpath_adj = case $$p in \
250
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
251
+ *) f=$$p;; \
252
+ esac;
253
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
254
+ am__install_max = 40
255
+ am__nobase_strip_setup = \
256
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
257
+ am__nobase_strip = \
258
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
259
+ am__nobase_list = $(am__nobase_strip_setup); \
260
+ for p in $$list; do echo "$$p $$p"; done | \
261
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
262
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
263
+ if (++n[$$2] == $(am__install_max)) \
264
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
265
+ END { for (dir in files) print dir, files[dir] }'
266
+ am__base_list = \
267
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
268
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
269
+ am__uninstall_files_from_dir = { \
270
+ test -z "$$files" \
271
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
272
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
273
+ $(am__cd) "$$dir" && rm -f $$files; }; \
274
+ }
275
+ am__recheck_rx = ^[ ]*:recheck:[ ]*
276
+ am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
277
+ am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
278
+ # A command that, given a newline-separated list of test names on the
279
+ # standard input, print the name of the tests that are to be re-run
280
+ # upon "make recheck".
281
+ am__list_recheck_tests = $(AWK) '{ \
282
+ recheck = 1; \
283
+ while ((rc = (getline line < ($$0 ".trs"))) != 0) \
284
+ { \
285
+ if (rc < 0) \
286
+ { \
287
+ if ((getline line2 < ($$0 ".log")) < 0) \
288
+ recheck = 0; \
289
+ break; \
290
+ } \
291
+ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
292
+ { \
293
+ recheck = 0; \
294
+ break; \
295
+ } \
296
+ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
297
+ { \
298
+ break; \
299
+ } \
300
+ }; \
301
+ if (recheck) \
302
+ print $$0; \
303
+ close ($$0 ".trs"); \
304
+ close ($$0 ".log"); \
305
+ }'
306
+ # A command that, given a newline-separated list of test names on the
307
+ # standard input, create the global log from their .trs and .log files.
308
+ am__create_global_log = $(AWK) ' \
309
+ function fatal(msg) \
310
+ { \
311
+ print "fatal: making $@: " msg | "cat >&2"; \
312
+ exit 1; \
313
+ } \
314
+ function rst_section(header) \
315
+ { \
316
+ print header; \
317
+ len = length(header); \
318
+ for (i = 1; i <= len; i = i + 1) \
319
+ printf "="; \
320
+ printf "\n\n"; \
321
+ } \
322
+ { \
323
+ copy_in_global_log = 1; \
324
+ global_test_result = "RUN"; \
325
+ while ((rc = (getline line < ($$0 ".trs"))) != 0) \
326
+ { \
327
+ if (rc < 0) \
328
+ fatal("failed to read from " $$0 ".trs"); \
329
+ if (line ~ /$(am__global_test_result_rx)/) \
330
+ { \
331
+ sub("$(am__global_test_result_rx)", "", line); \
332
+ sub("[ ]*$$", "", line); \
333
+ global_test_result = line; \
334
+ } \
335
+ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
336
+ copy_in_global_log = 0; \
337
+ }; \
338
+ if (copy_in_global_log) \
339
+ { \
340
+ rst_section(global_test_result ": " $$0); \
341
+ while ((rc = (getline line < ($$0 ".log"))) != 0) \
342
+ { \
343
+ if (rc < 0) \
344
+ fatal("failed to read from " $$0 ".log"); \
345
+ print line; \
346
+ }; \
347
+ printf "\n"; \
348
+ }; \
349
+ close ($$0 ".trs"); \
350
+ close ($$0 ".log"); \
351
+ }'
352
+ # Restructured Text title.
353
+ am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
354
+ # Solaris 10 'make', and several other traditional 'make' implementations,
355
+ # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
356
+ # by disabling -e (using the XSI extension "set +e") if it's set.
357
+ am__sh_e_setup = case $$- in *e*) set +e;; esac
358
+ # Default flags passed to test drivers.
359
+ am__common_driver_flags = \
360
+ --color-tests "$$am__color_tests" \
361
+ --enable-hard-errors "$$am__enable_hard_errors" \
362
+ --expect-failure "$$am__expect_failure"
363
+ # To be inserted before the command running the test. Creates the
364
+ # directory for the log if needed. Stores in $dir the directory
365
+ # containing $f, in $tst the test, in $log the log. Executes the
366
+ # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
367
+ # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
368
+ # will run the test scripts (or their associated LOG_COMPILER, if
369
+ # thy have one).
370
+ am__check_pre = \
371
+ $(am__sh_e_setup); \
372
+ $(am__vpath_adj_setup) $(am__vpath_adj) \
373
+ $(am__tty_colors); \
374
+ srcdir=$(srcdir); export srcdir; \
375
+ case "$@" in \
376
+ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
377
+ *) am__odir=.;; \
378
+ esac; \
379
+ test "x$$am__odir" = x"." || test -d "$$am__odir" \
380
+ || $(MKDIR_P) "$$am__odir" || exit $$?; \
381
+ if test -f "./$$f"; then dir=./; \
382
+ elif test -f "$$f"; then dir=; \
383
+ else dir="$(srcdir)/"; fi; \
384
+ tst=$$dir$$f; log='$@'; \
385
+ if test -n '$(DISABLE_HARD_ERRORS)'; then \
386
+ am__enable_hard_errors=no; \
387
+ else \
388
+ am__enable_hard_errors=yes; \
389
+ fi; \
390
+ case " $(XFAIL_TESTS) " in \
391
+ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
392
+ am__expect_failure=yes;; \
393
+ *) \
394
+ am__expect_failure=no;; \
395
+ esac; \
396
+ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
397
+ # A shell command to get the names of the tests scripts with any registered
398
+ # extension removed (i.e., equivalently, the names of the test logs, with
399
+ # the '.log' extension removed). The result is saved in the shell variable
400
+ # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
401
+ # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
402
+ # since that might cause problem with VPATH rewrites for suffix-less tests.
403
+ # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
404
+ am__set_TESTS_bases = \
405
+ bases='$(TEST_LOGS)'; \
406
+ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
407
+ bases=`echo $$bases`
408
+ RECHECK_LOGS = $(TEST_LOGS)
409
+ AM_RECURSIVE_TARGETS = check recheck
410
+ TEST_SUITE_LOG = test-suite.log
411
+ TEST_EXTENSIONS = @EXEEXT@ .test
412
+ LOG_DRIVER = $(SHELL) $(top_srcdir)/config/test-driver
413
+ LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
414
+ am__set_b = \
415
+ case '$@' in \
416
+ */*) \
417
+ case '$*' in \
418
+ */*) b='$*';; \
419
+ *) b=`echo '$@' | sed 's/\.log$$//'`; \
420
+ esac;; \
421
+ *) \
422
+ b='$*';; \
423
+ esac
424
+ am__test_logs1 = $(TESTS:=.log)
425
+ am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
426
+ TEST_LOGS = $(am__test_logs2:.test.log=.log)
427
+ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/config/test-driver
428
+ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
429
+ $(TEST_LOG_FLAGS)
430
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/ex2.in \
431
+ $(srcdir)/phreeqc.dat.in $(top_srcdir)/config/depcomp \
432
+ $(top_srcdir)/config/test-driver
433
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
434
+ ACLOCAL = @ACLOCAL@
435
+ AMTAR = @AMTAR@
436
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
437
+ AR = @AR@
438
+ AUTOCONF = @AUTOCONF@
439
+ AUTOHEADER = @AUTOHEADER@
440
+ AUTOMAKE = @AUTOMAKE@
441
+ AWK = @AWK@
442
+ CC = @CC@
443
+ CCDEPMODE = @CCDEPMODE@
444
+ CFLAGS = @CFLAGS@
445
+ CPP = @CPP@
446
+ CPPFLAGS = @CPPFLAGS@
447
+ CXX = @CXX@
448
+ CXXCPP = @CXXCPP@
449
+ CXXDEPMODE = @CXXDEPMODE@
450
+ CXXFLAGS = @CXXFLAGS@
451
+ CYGPATH_W = @CYGPATH_W@
452
+ DEFS = @DEFS@
453
+ DEPDIR = @DEPDIR@
454
+ DLLTOOL = @DLLTOOL@
455
+ DSYMUTIL = @DSYMUTIL@
456
+ DUMPBIN = @DUMPBIN@
457
+ ECHO_C = @ECHO_C@
458
+ ECHO_N = @ECHO_N@
459
+ ECHO_T = @ECHO_T@
460
+ EGREP = @EGREP@
461
+ EXEEXT = @EXEEXT@
462
+ F77 = @F77@
463
+ FC = @FC@
464
+ FCFLAGS = @FCFLAGS@
465
+ FCLIBS = @FCLIBS@
466
+ FC_MODEXT = @FC_MODEXT@
467
+ FFLAGS = @FFLAGS@
468
+ FGREP = @FGREP@
469
+ GREP = @GREP@
470
+ INSTALL = @INSTALL@
471
+ INSTALL_DATA = @INSTALL_DATA@
472
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
473
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
474
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
475
+ LD = @LD@
476
+ LDFLAGS = @LDFLAGS@
477
+ LIBOBJS = @LIBOBJS@
478
+ LIBS = @LIBS@
479
+ LIBTOOL = @LIBTOOL@
480
+ LIPO = @LIPO@
481
+ LN_S = @LN_S@
482
+ LTLIBOBJS = @LTLIBOBJS@
483
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
484
+ MAKEINFO = @MAKEINFO@
485
+ MANIFEST_TOOL = @MANIFEST_TOOL@
486
+ MKDIR_P = @MKDIR_P@
487
+ NM = @NM@
488
+ NMEDIT = @NMEDIT@
489
+ OBJDUMP = @OBJDUMP@
490
+ OBJEXT = @OBJEXT@
491
+ OTOOL = @OTOOL@
492
+ OTOOL64 = @OTOOL64@
493
+ PACKAGE = @PACKAGE@
494
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
495
+ PACKAGE_NAME = @PACKAGE_NAME@
496
+ PACKAGE_STRING = @PACKAGE_STRING@
497
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
498
+ PACKAGE_URL = @PACKAGE_URL@
499
+ PACKAGE_VERSION = @PACKAGE_VERSION@
500
+ PATH_SEPARATOR = @PATH_SEPARATOR@
501
+ POW_LIB = @POW_LIB@
502
+ RANLIB = @RANLIB@
503
+ SED = @SED@
504
+ SET_MAKE = @SET_MAKE@
505
+ SHELL = @SHELL@
506
+ STRIP = @STRIP@
507
+ VERSION = @VERSION@
508
+ abs_builddir = @abs_builddir@
509
+ abs_srcdir = @abs_srcdir@
510
+ abs_top_builddir = @abs_top_builddir@
511
+ abs_top_srcdir = @abs_top_srcdir@
512
+ ac_ct_AR = @ac_ct_AR@
513
+ ac_ct_CC = @ac_ct_CC@
514
+ ac_ct_CXX = @ac_ct_CXX@
515
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
516
+ ac_ct_FC = @ac_ct_FC@
517
+ am__include = @am__include@
518
+ am__leading_dot = @am__leading_dot@
519
+ am__quote = @am__quote@
520
+ am__tar = @am__tar@
521
+ am__untar = @am__untar@
522
+ bindir = @bindir@
523
+ build = @build@
524
+ build_alias = @build_alias@
525
+ build_cpu = @build_cpu@
526
+ build_os = @build_os@
527
+ build_vendor = @build_vendor@
528
+ builddir = @builddir@
529
+ datadir = @datadir@
530
+ datarootdir = @datarootdir@
531
+ docdir = @docdir@
532
+ dvidir = @dvidir@
533
+ exec_prefix = @exec_prefix@
534
+ host = @host@
535
+ host_alias = @host_alias@
536
+ host_cpu = @host_cpu@
537
+ host_os = @host_os@
538
+ host_vendor = @host_vendor@
539
+ htmldir = @htmldir@
540
+ includedir = @includedir@
541
+ infodir = @infodir@
542
+ install_sh = @install_sh@
543
+ libdir = @libdir@
544
+ libexecdir = @libexecdir@
545
+ localedir = @localedir@
546
+ localstatedir = @localstatedir@
547
+ mandir = @mandir@
548
+ mkdir_p = @mkdir_p@
549
+ oldincludedir = @oldincludedir@
550
+ pdfdir = @pdfdir@
551
+ prefix = @prefix@
552
+ program_transform_name = @program_transform_name@
553
+ psdir = @psdir@
554
+ runstatedir = @runstatedir@
555
+ sbindir = @sbindir@
556
+ sharedstatedir = @sharedstatedir@
557
+ srcdir = @srcdir@
558
+ sysconfdir = @sysconfdir@
559
+ target_alias = @target_alias@
560
+ top_build_prefix = @top_build_prefix@
561
+ top_builddir = @top_builddir@
562
+ top_srcdir = @top_srcdir@
563
+ EXTRA_DIST = CMakeLists.txt main77.f main.f90
564
+ AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/phreeqcpp -I$(top_srcdir)/src/phreeqcpp/common -I$(top_srcdir)/src/phreeqcpp/PhreeqcKeywords
565
+ AM_FCFLAGS = -I$(top_srcdir)/src
566
+ AM_FFLAGS = -I$(top_srcdir)/src
567
+ test_c_SOURCES = test_c.c
568
+ test_c_LDADD = $(top_builddir)/src/libiphreeqc.la
569
+ test_c_LINK = $(CXXLINK)
570
+ test_cxx_SOURCES = test_cxx.cxx
571
+ test_cxx_LDADD = $(top_builddir)/src/libiphreeqc.la
572
+ CLEANFILES = \
573
+ XYZ\
574
+ phreeqc.0.log\
575
+ phreeqc.0.err
576
+
577
+ @BUILD_FORTRAN_TRUE@test_f90_SOURCES = test_f90.F90 main_fortran.cxx \
578
+ @BUILD_FORTRAN_TRUE@ $(am__append_3)
579
+ @BUILD_FORTRAN_TRUE@test_f90_LDADD = $(top_builddir)/src/libiphreeqc.la $(FCLIBS)
580
+ all: all-am
581
+
582
+ .SUFFIXES:
583
+ .SUFFIXES: .F90 .c .cxx .lo .log .o .obj .test .test$(EXEEXT) .trs
584
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
585
+ @for dep in $?; do \
586
+ case '$(am__configure_deps)' in \
587
+ *$$dep*) \
588
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
589
+ && { if test -f $@; then exit 0; else break; fi; }; \
590
+ exit 1;; \
591
+ esac; \
592
+ done; \
593
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tests/Makefile'; \
594
+ $(am__cd) $(top_srcdir) && \
595
+ $(AUTOMAKE) --foreign tests/Makefile
596
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
597
+ @case '$?' in \
598
+ *config.status*) \
599
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
600
+ *) \
601
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
602
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
603
+ esac;
604
+
605
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
606
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
607
+
608
+ $(top_srcdir)/configure: $(am__configure_deps)
609
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
610
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
611
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
612
+ $(am__aclocal_m4_deps):
613
+ phreeqc.dat: $(top_builddir)/config.status $(srcdir)/phreeqc.dat.in
614
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
615
+ ex2: $(top_builddir)/config.status $(srcdir)/ex2.in
616
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
617
+
618
+ clean-checkPROGRAMS:
619
+ @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
620
+ echo " rm -f" $$list; \
621
+ rm -f $$list || exit $$?; \
622
+ test -n "$(EXEEXT)" || exit 0; \
623
+ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
624
+ echo " rm -f" $$list; \
625
+ rm -f $$list
626
+
627
+ test_c$(EXEEXT): $(test_c_OBJECTS) $(test_c_DEPENDENCIES) $(EXTRA_test_c_DEPENDENCIES)
628
+ @rm -f test_c$(EXEEXT)
629
+ $(AM_V_GEN)$(test_c_LINK) $(test_c_OBJECTS) $(test_c_LDADD) $(LIBS)
630
+
631
+ test_cxx$(EXEEXT): $(test_cxx_OBJECTS) $(test_cxx_DEPENDENCIES) $(EXTRA_test_cxx_DEPENDENCIES)
632
+ @rm -f test_cxx$(EXEEXT)
633
+ $(AM_V_CXXLD)$(CXXLINK) $(test_cxx_OBJECTS) $(test_cxx_LDADD) $(LIBS)
634
+ $(top_srcdir)/src/$(am__dirstamp):
635
+ @$(MKDIR_P) $(top_srcdir)/src
636
+ @: > $(top_srcdir)/src/$(am__dirstamp)
637
+ $(top_srcdir)/src/$(DEPDIR)/$(am__dirstamp):
638
+ @$(MKDIR_P) $(top_srcdir)/src/$(DEPDIR)
639
+ @: > $(top_srcdir)/src/$(DEPDIR)/$(am__dirstamp)
640
+ $(top_srcdir)/src/IPhreeqc_interface.$(OBJEXT): \
641
+ $(top_srcdir)/src/$(am__dirstamp) \
642
+ $(top_srcdir)/src/$(DEPDIR)/$(am__dirstamp)
643
+
644
+ test_f90$(EXEEXT): $(test_f90_OBJECTS) $(test_f90_DEPENDENCIES) $(EXTRA_test_f90_DEPENDENCIES)
645
+ @rm -f test_f90$(EXEEXT)
646
+ $(AM_V_CXXLD)$(CXXLINK) $(test_f90_OBJECTS) $(test_f90_LDADD) $(LIBS)
647
+
648
+ mostlyclean-compile:
649
+ -rm -f *.$(OBJEXT)
650
+ -rm -f $(top_srcdir)/src/*.$(OBJEXT)
651
+
652
+ distclean-compile:
653
+ -rm -f *.tab.c
654
+
655
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main_fortran.Po@am__quote@
656
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_c.Po@am__quote@
657
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_cxx.Po@am__quote@
658
+
659
+ .F90.o:
660
+ $(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ $<
661
+
662
+ .F90.obj:
663
+ $(AM_V_PPFC)$(PPFCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
664
+
665
+ .F90.lo:
666
+ $(AM_V_PPFC)$(LTPPFCCOMPILE) -c -o $@ $<
667
+
668
+ .c.o:
669
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
670
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
671
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
672
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
673
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
674
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
675
+
676
+ .c.obj:
677
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
678
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
679
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
680
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
681
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
682
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
683
+
684
+ .c.lo:
685
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
686
+ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
687
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
688
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
689
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
690
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
691
+
692
+ .cxx.o:
693
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
694
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
695
+ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
696
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
697
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
698
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
699
+
700
+ .cxx.obj:
701
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
702
+ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
703
+ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
704
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
705
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
706
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
707
+
708
+ .cxx.lo:
709
+ @am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
710
+ @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
711
+ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
712
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
713
+ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
714
+ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
715
+
716
+ mostlyclean-libtool:
717
+ -rm -f *.lo
718
+
719
+ clean-libtool:
720
+ -rm -rf .libs _libs
721
+
722
+ ID: $(am__tagged_files)
723
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
724
+ tags: tags-am
725
+ TAGS: tags
726
+
727
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
728
+ set x; \
729
+ here=`pwd`; \
730
+ $(am__define_uniq_tagged_files); \
731
+ shift; \
732
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
733
+ test -n "$$unique" || unique=$$empty_fix; \
734
+ if test $$# -gt 0; then \
735
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
736
+ "$$@" $$unique; \
737
+ else \
738
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
739
+ $$unique; \
740
+ fi; \
741
+ fi
742
+ ctags: ctags-am
743
+
744
+ CTAGS: ctags
745
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
746
+ $(am__define_uniq_tagged_files); \
747
+ test -z "$(CTAGS_ARGS)$$unique" \
748
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
749
+ $$unique
750
+
751
+ GTAGS:
752
+ here=`$(am__cd) $(top_builddir) && pwd` \
753
+ && $(am__cd) $(top_srcdir) \
754
+ && gtags -i $(GTAGS_ARGS) "$$here"
755
+ cscopelist: cscopelist-am
756
+
757
+ cscopelist-am: $(am__tagged_files)
758
+ list='$(am__tagged_files)'; \
759
+ case "$(srcdir)" in \
760
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
761
+ *) sdir=$(subdir)/$(srcdir) ;; \
762
+ esac; \
763
+ for i in $$list; do \
764
+ if test -f "$$i"; then \
765
+ echo "$(subdir)/$$i"; \
766
+ else \
767
+ echo "$$sdir/$$i"; \
768
+ fi; \
769
+ done >> $(top_builddir)/cscope.files
770
+
771
+ distclean-tags:
772
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
773
+
774
+ # Recover from deleted '.trs' file; this should ensure that
775
+ # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
776
+ # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
777
+ # to avoid problems with "make -n".
778
+ .log.trs:
779
+ rm -f $< $@
780
+ $(MAKE) $(AM_MAKEFLAGS) $<
781
+
782
+ # Leading 'am--fnord' is there to ensure the list of targets does not
783
+ # expand to empty, as could happen e.g. with make check TESTS=''.
784
+ am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
785
+ am--force-recheck:
786
+ @:
787
+
788
+ $(TEST_SUITE_LOG): $(TEST_LOGS)
789
+ @$(am__set_TESTS_bases); \
790
+ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
791
+ redo_bases=`for i in $$bases; do \
792
+ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
793
+ done`; \
794
+ if test -n "$$redo_bases"; then \
795
+ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
796
+ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
797
+ if $(am__make_dryrun); then :; else \
798
+ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
799
+ fi; \
800
+ fi; \
801
+ if test -n "$$am__remaking_logs"; then \
802
+ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
803
+ "recursion detected" >&2; \
804
+ elif test -n "$$redo_logs"; then \
805
+ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
806
+ fi; \
807
+ if $(am__make_dryrun); then :; else \
808
+ st=0; \
809
+ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
810
+ for i in $$redo_bases; do \
811
+ test -f $$i.trs && test -r $$i.trs \
812
+ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
813
+ test -f $$i.log && test -r $$i.log \
814
+ || { echo "$$errmsg $$i.log" >&2; st=1; }; \
815
+ done; \
816
+ test $$st -eq 0 || exit 1; \
817
+ fi
818
+ @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
819
+ ws='[ ]'; \
820
+ results=`for b in $$bases; do echo $$b.trs; done`; \
821
+ test -n "$$results" || results=/dev/null; \
822
+ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
823
+ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
824
+ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
825
+ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
826
+ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
827
+ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
828
+ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
829
+ if test `expr $$fail + $$xpass + $$error` -eq 0; then \
830
+ success=true; \
831
+ else \
832
+ success=false; \
833
+ fi; \
834
+ br='==================='; br=$$br$$br$$br$$br; \
835
+ result_count () \
836
+ { \
837
+ if test x"$$1" = x"--maybe-color"; then \
838
+ maybe_colorize=yes; \
839
+ elif test x"$$1" = x"--no-color"; then \
840
+ maybe_colorize=no; \
841
+ else \
842
+ echo "$@: invalid 'result_count' usage" >&2; exit 4; \
843
+ fi; \
844
+ shift; \
845
+ desc=$$1 count=$$2; \
846
+ if test $$maybe_colorize = yes && test $$count -gt 0; then \
847
+ color_start=$$3 color_end=$$std; \
848
+ else \
849
+ color_start= color_end=; \
850
+ fi; \
851
+ echo "$${color_start}# $$desc $$count$${color_end}"; \
852
+ }; \
853
+ create_testsuite_report () \
854
+ { \
855
+ result_count $$1 "TOTAL:" $$all "$$brg"; \
856
+ result_count $$1 "PASS: " $$pass "$$grn"; \
857
+ result_count $$1 "SKIP: " $$skip "$$blu"; \
858
+ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
859
+ result_count $$1 "FAIL: " $$fail "$$red"; \
860
+ result_count $$1 "XPASS:" $$xpass "$$red"; \
861
+ result_count $$1 "ERROR:" $$error "$$mgn"; \
862
+ }; \
863
+ { \
864
+ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
865
+ $(am__rst_title); \
866
+ create_testsuite_report --no-color; \
867
+ echo; \
868
+ echo ".. contents:: :depth: 2"; \
869
+ echo; \
870
+ for b in $$bases; do echo $$b; done \
871
+ | $(am__create_global_log); \
872
+ } >$(TEST_SUITE_LOG).tmp || exit 1; \
873
+ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
874
+ if $$success; then \
875
+ col="$$grn"; \
876
+ else \
877
+ col="$$red"; \
878
+ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
879
+ fi; \
880
+ echo "$${col}$$br$${std}"; \
881
+ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
882
+ echo "$${col}$$br$${std}"; \
883
+ create_testsuite_report --maybe-color; \
884
+ echo "$$col$$br$$std"; \
885
+ if $$success; then :; else \
886
+ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
887
+ if test -n "$(PACKAGE_BUGREPORT)"; then \
888
+ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
889
+ fi; \
890
+ echo "$$col$$br$$std"; \
891
+ fi; \
892
+ $$success || exit 1
893
+
894
+ check-TESTS:
895
+ @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
896
+ @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
897
+ @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
898
+ @set +e; $(am__set_TESTS_bases); \
899
+ log_list=`for i in $$bases; do echo $$i.log; done`; \
900
+ trs_list=`for i in $$bases; do echo $$i.trs; done`; \
901
+ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
902
+ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
903
+ exit $$?;
904
+ recheck: all $(check_PROGRAMS)
905
+ @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
906
+ @set +e; $(am__set_TESTS_bases); \
907
+ bases=`for i in $$bases; do echo $$i; done \
908
+ | $(am__list_recheck_tests)` || exit 1; \
909
+ log_list=`for i in $$bases; do echo $$i.log; done`; \
910
+ log_list=`echo $$log_list`; \
911
+ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
912
+ am__force_recheck=am--force-recheck \
913
+ TEST_LOGS="$$log_list"; \
914
+ exit $$?
915
+ test_c.log: test_c$(EXEEXT)
916
+ @p='test_c$(EXEEXT)'; \
917
+ b='test_c'; \
918
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
919
+ --log-file $$b.log --trs-file $$b.trs \
920
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
921
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
922
+ test_cxx.log: test_cxx$(EXEEXT)
923
+ @p='test_cxx$(EXEEXT)'; \
924
+ b='test_cxx'; \
925
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
926
+ --log-file $$b.log --trs-file $$b.trs \
927
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
928
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
929
+ test_f90.log: test_f90$(EXEEXT)
930
+ @p='test_f90$(EXEEXT)'; \
931
+ b='test_f90'; \
932
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
933
+ --log-file $$b.log --trs-file $$b.trs \
934
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
935
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
936
+ .test.log:
937
+ @p='$<'; \
938
+ $(am__set_b); \
939
+ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
940
+ --log-file $$b.log --trs-file $$b.trs \
941
+ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
942
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
943
+ @am__EXEEXT_TRUE@.test$(EXEEXT).log:
944
+ @am__EXEEXT_TRUE@ @p='$<'; \
945
+ @am__EXEEXT_TRUE@ $(am__set_b); \
946
+ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
947
+ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
948
+ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
949
+ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
950
+
951
+ distdir: $(DISTFILES)
952
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
953
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
954
+ list='$(DISTFILES)'; \
955
+ dist_files=`for file in $$list; do echo $$file; done | \
956
+ sed -e "s|^$$srcdirstrip/||;t" \
957
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
958
+ case $$dist_files in \
959
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
960
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
961
+ sort -u` ;; \
962
+ esac; \
963
+ for file in $$dist_files; do \
964
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
965
+ if test -d $$d/$$file; then \
966
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
967
+ if test -d "$(distdir)/$$file"; then \
968
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
969
+ fi; \
970
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
971
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
972
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
973
+ fi; \
974
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
975
+ else \
976
+ test -f "$(distdir)/$$file" \
977
+ || cp -p $$d/$$file "$(distdir)/$$file" \
978
+ || exit 1; \
979
+ fi; \
980
+ done
981
+ check-am: all-am
982
+ $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
983
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
984
+ check: check-am
985
+ all-am: Makefile
986
+ installdirs:
987
+ install: install-am
988
+ install-exec: install-exec-am
989
+ install-data: install-data-am
990
+ uninstall: uninstall-am
991
+
992
+ install-am: all-am
993
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
994
+
995
+ installcheck: installcheck-am
996
+ install-strip:
997
+ if test -z '$(STRIP)'; then \
998
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
999
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1000
+ install; \
1001
+ else \
1002
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1003
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1004
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1005
+ fi
1006
+ mostlyclean-generic:
1007
+ -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1008
+ -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1009
+ -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1010
+
1011
+ clean-generic:
1012
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1013
+
1014
+ distclean-generic:
1015
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1016
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1017
+ -test -z "$(top_srcdir)/src/$(DEPDIR)/$(am__dirstamp)" || rm -f $(top_srcdir)/src/$(DEPDIR)/$(am__dirstamp)
1018
+ -test -z "$(top_srcdir)/src/$(am__dirstamp)" || rm -f $(top_srcdir)/src/$(am__dirstamp)
1019
+
1020
+ maintainer-clean-generic:
1021
+ @echo "This command is intended for maintainers to use"
1022
+ @echo "it deletes files that may require special tools to rebuild."
1023
+ @BUILD_FORTRAN_FALSE@mostlyclean-local:
1024
+ clean: clean-am
1025
+
1026
+ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
1027
+ mostlyclean-am
1028
+
1029
+ distclean: distclean-am
1030
+ -rm -rf ./$(DEPDIR)
1031
+ -rm -f Makefile
1032
+ distclean-am: clean-am distclean-compile distclean-generic \
1033
+ distclean-tags
1034
+
1035
+ dvi: dvi-am
1036
+
1037
+ dvi-am:
1038
+
1039
+ html: html-am
1040
+
1041
+ html-am:
1042
+
1043
+ info: info-am
1044
+
1045
+ info-am:
1046
+
1047
+ install-data-am:
1048
+
1049
+ install-dvi: install-dvi-am
1050
+
1051
+ install-dvi-am:
1052
+
1053
+ install-exec-am:
1054
+
1055
+ install-html: install-html-am
1056
+
1057
+ install-html-am:
1058
+
1059
+ install-info: install-info-am
1060
+
1061
+ install-info-am:
1062
+
1063
+ install-man:
1064
+
1065
+ install-pdf: install-pdf-am
1066
+
1067
+ install-pdf-am:
1068
+
1069
+ install-ps: install-ps-am
1070
+
1071
+ install-ps-am:
1072
+
1073
+ installcheck-am:
1074
+
1075
+ maintainer-clean: maintainer-clean-am
1076
+ -rm -rf ./$(DEPDIR)
1077
+ -rm -f Makefile
1078
+ maintainer-clean-am: distclean-am maintainer-clean-generic
1079
+
1080
+ mostlyclean: mostlyclean-am
1081
+
1082
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1083
+ mostlyclean-libtool mostlyclean-local
1084
+
1085
+ pdf: pdf-am
1086
+
1087
+ pdf-am:
1088
+
1089
+ ps: ps-am
1090
+
1091
+ ps-am:
1092
+
1093
+ uninstall-am:
1094
+
1095
+ .MAKE: check-am install-am install-strip
1096
+
1097
+ .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1098
+ clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
1099
+ ctags ctags-am distclean distclean-compile distclean-generic \
1100
+ distclean-libtool distclean-tags distdir dvi dvi-am html \
1101
+ html-am info info-am install install-am install-data \
1102
+ install-data-am install-dvi install-dvi-am install-exec \
1103
+ install-exec-am install-html install-html-am install-info \
1104
+ install-info-am install-man install-pdf install-pdf-am \
1105
+ install-ps install-ps-am install-strip installcheck \
1106
+ installcheck-am installdirs maintainer-clean \
1107
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
1108
+ mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
1109
+ pdf-am ps ps-am recheck tags tags-am uninstall uninstall-am
1110
+
1111
+ .PRECIOUS: Makefile
1112
+
1113
+
1114
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@test_f90.$(OBJEXT) : test_f90.F90 IPhreeqc_interface.$(OBJEXT)
1115
+
1116
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@IPhreeqc_interface.$(OBJEXT) : $(srcdir)/IPhreeqc_interface.F90
1117
+
1118
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@$(srcdir)/IPhreeqc_interface.F90 :
1119
+ @BUILD_FORTRAN_TRUE@@FORTRAN_MODULE_TRUE@ cd $(srcdir) && $(LN_S) ../src/IPhreeqc_interface.F90 .
1120
+
1121
+ @BUILD_FORTRAN_TRUE@mostlyclean-local: clean-modules
1122
+ @BUILD_FORTRAN_TRUE@.PHONY: clean-modules
1123
+ @BUILD_FORTRAN_TRUE@clean-modules:
1124
+ @BUILD_FORTRAN_TRUE@ -test -z $(FC_MODEXT) || $(RM) *.$(FC_MODEXT)
1125
+
1126
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1127
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1128
+ .NOEXPORT: