mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 16:44:49 +01:00
renamed GNUmakefile to Makefile
git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/branches/reorg@7313 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
parent
bb2ea3d712
commit
662894ffb3
388
GNUmakefile
388
GNUmakefile
@ -1,388 +0,0 @@
|
||||
# Makefile for PHREEQCPP
|
||||
#
|
||||
# Generates object files and executables for 2 versions of PHREEQCPP
|
||||
# Release
|
||||
# Debug
|
||||
#
|
||||
# Serial verisons: Release Debug
|
||||
#
|
||||
# Makefile sets CFG variable, cd's to appropriate directory, runs Makefile recursively
|
||||
# Recursive make sets appropriate compiler, objects, options, libraries, and compiles PHREEQC
|
||||
#
|
||||
|
||||
PROGRAM = phreeqcpp
|
||||
|
||||
CFG1 :=`uname`
|
||||
CFG :=$(shell echo $(CFG1) | sed "s/CYGWIN.*/CYGWIN/")
|
||||
ifeq ($(CFG), CYGWIN)
|
||||
SPOOL=>
|
||||
SPOOL2=2>&1
|
||||
else
|
||||
SPOOL=>&
|
||||
SPOOL2=
|
||||
endif
|
||||
|
||||
all: class_release class_debug
|
||||
|
||||
Debug: class_debug
|
||||
debug: class_debug
|
||||
Class_debug: class_debug
|
||||
|
||||
Release: class_release
|
||||
release: class_release
|
||||
Class_release: class_release
|
||||
|
||||
Debug_64: class_debug_64
|
||||
debug_64: class_debug_64
|
||||
Class_debug_64: class_debug_64
|
||||
|
||||
Release_64: class_release_64
|
||||
release_64: class_release_64
|
||||
Class_release_64: class_release_64
|
||||
|
||||
|
||||
CLASS_DEBUG_DIR = Class_debug
|
||||
CLASS_DIR = Class_release
|
||||
CLASS_DEBUG_64_DIR = Class_debug_64
|
||||
CLASS_64_DIR = Class_release_64
|
||||
MAKEFILE = GNUmakefile
|
||||
DEPDIR = .deps
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# fixes shared object lookup error(SIGFPE floating point exception)
|
||||
HASH_STYLE=$(call ld-option, -Wl$(comma)--hash-style=sysv)
|
||||
|
||||
|
||||
#########################
|
||||
#### Serial Versions ####
|
||||
#########################
|
||||
.PHONY : Class_debug
|
||||
class_debug:
|
||||
mkdir -p $(CLASS_DEBUG_DIR)
|
||||
cd $(CLASS_DEBUG_DIR); $(MAKE) -r -f ../$(MAKEFILE) CFG=CLASS_DEBUG $(PROGRAM)
|
||||
|
||||
.PHONY : Class_release
|
||||
class_release:
|
||||
mkdir -p $(CLASS_DIR)
|
||||
cd $(CLASS_DIR); $(MAKE) -r -f ../$(MAKEFILE) CFG=CLASS_RELEASE $(PROGRAM)
|
||||
.PHONY : Class_debug_64
|
||||
class_debug_64:
|
||||
mkdir -p $(CLASS_DEBUG_64_DIR)
|
||||
cd $(CLASS_DEBUG_64_DIR); $(MAKE) -r -f ../$(MAKEFILE) CFG=CLASS_DEBUG_64 $(PROGRAM)
|
||||
|
||||
.PHONY : Class_release_64
|
||||
class_release_64:
|
||||
mkdir -p $(CLASS_64_DIR)
|
||||
cd $(CLASS_64_DIR); $(MAKE) -r -f ../$(MAKEFILE) CFG=CLASS_RELEASE_64 $(PROGRAM)
|
||||
|
||||
# Recursive make begins here
|
||||
#
|
||||
# =============================================================================
|
||||
# Significant suffixes [assuming Fortran 90 (.f90) source code]:
|
||||
# Significant suffixes [assuming Fortran 90 (.F90) source code, needs to be preprocessed ]:
|
||||
# =============================================================================
|
||||
|
||||
#SRC = ../phreeqc
|
||||
.SUFFIXES : .o .c .cxx .cpp
|
||||
|
||||
# compilers
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
.c.o :
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
.cxx.o :
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
.cpp.o :
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
#hdf options
|
||||
#HDF5_ROOT=$(HOME)/../../usr
|
||||
#HDF5_INCLUDES=-I$(HDF5_ROOT)/src
|
||||
#HDF5_LIBS=${HDF5_ROOT}/lib/libhdf5.a -lz -lpthread
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# #define compile options
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# #define gmp for inverse modeling
|
||||
# comment the following lines to remove multiprecision option
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
#efence for debugging
|
||||
EFENCE_LIB=-L$(HOME)/packages/efence
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# 4 Versions
|
||||
# -----------------------------------------------------------------------------
|
||||
ifeq ($(CFG), CLASS_DEBUG)
|
||||
INVERSE_CL1MP=TRUE
|
||||
ifdef INVERSE_CL1MP
|
||||
DEFINE_INVERSE_CL1MP=-DINVERSE_CL1MP
|
||||
CL1MP_OBJS=cl1mp.o
|
||||
# CL1MP_LIB=-lgmp
|
||||
CL1MP_LIB=/z/parkplace/usr/lib/libgmp.a
|
||||
endif
|
||||
DEFINES = -DUSE_PHRQ_ALLOC $(DEFINE_INVERSE_CL1MP) # -DPHREEQC2
|
||||
VPATH = ..:../phreeqc
|
||||
INCLUDES = -I../phreeqc -I..
|
||||
CXX = g++
|
||||
CXXFLAGS = -Wall -g $(DEFINES) $(INCLUDES)
|
||||
OBJECT_FILES = $(CLASS_FILES) $(COMMON_COBJS) $(COMMON_CXXOBJS) $(CL1MP_OBJS)
|
||||
LD_FLAGS = -lm ${CL1MP_LIB} ${HASH_STYLE}
|
||||
endif
|
||||
|
||||
ifeq ($(CFG), CLASS_RELEASE)
|
||||
INVERSE_CL1MP=TRUE
|
||||
ifdef INVERSE_CL1MP
|
||||
DEFINE_INVERSE_CL1MP=-DINVERSE_CL1MP
|
||||
CL1MP_OBJS=cl1mp.o
|
||||
# CL1MP_LIB=-lgmp
|
||||
CL1MP_LIB=/z/parkplace/usr/lib/libgmp.a
|
||||
endif
|
||||
DEFINES = -DNDEBUG $(DEFINE_INVERSE_CL1MP) # -DPHREEQC2
|
||||
VPATH = ..:../phreeqc
|
||||
INCLUDES = -I../phreeqc -I..
|
||||
CXX = g++
|
||||
CXXFLAGS = -Wall -pedantic -O3 $(DEFINES) $(INCLUDES)
|
||||
OBJECT_FILES = $(CLASS_FILES) $(COMMON_COBJS) $(COMMON_CXXOBJS) $(CL1MP_OBJS)
|
||||
LD_FLAGS = -lm ${CL1MP_LIB} ${HASH_STYLE}
|
||||
endif
|
||||
|
||||
ifeq ($(CFG), CLASS_DEBUG_64)
|
||||
DEFINES = -DUSE_PHRQ_ALLOC # $(DEFINE_INVERSE_CL1MP) # -DPHREEQC2
|
||||
VPATH = ..:../phreeqc
|
||||
INCLUDES = -I../phreeqc -I..
|
||||
CXX = g++
|
||||
CXXFLAGS = -Wall -g $(DEFINES) $(INCLUDES)
|
||||
OBJECT_FILES = $(CLASS_FILES) $(COMMON_COBJS) $(COMMON_CXXOBJS) $(CL1MP_OBJS)
|
||||
LD_FLAGS = -lm ${CL1MP_LIB} ${HASH_STYLE}
|
||||
endif
|
||||
|
||||
ifeq ($(CFG), CLASS_RELEASE_64)
|
||||
DEFINES = -DNDEBUG # $(DEFINE_INVERSE_CL1MP) # -DPHREEQC2
|
||||
VPATH = ..:../phreeqc
|
||||
INCLUDES = -I../phreeqc -I..
|
||||
CXX = g++
|
||||
CXXFLAGS = -Wall -pedantic -O3 $(DEFINES) $(INCLUDES)
|
||||
OBJECT_FILES = $(CLASS_FILES) $(COMMON_COBJS) $(COMMON_CXXOBJS) $(CL1MP_OBJS)
|
||||
LD_FLAGS = -lm ${CL1MP_LIB} ${HASH_STYLE}
|
||||
endif
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
#
|
||||
|
||||
COMMON_COBJS = \
|
||||
advection.o \
|
||||
basicsubs.o \
|
||||
cl1.o \
|
||||
cvdense.o \
|
||||
cvode.o \
|
||||
dense.o \
|
||||
dw.o \
|
||||
gases.o \
|
||||
input.o \
|
||||
integrate.o \
|
||||
inverse.o \
|
||||
isotopes.o \
|
||||
kinetics.o \
|
||||
mainsubs.o \
|
||||
model.o \
|
||||
nvector.o \
|
||||
nvector_serial.o \
|
||||
parse.o \
|
||||
PHRQ_io_output.o \
|
||||
phqalloc.o \
|
||||
pitzer.o \
|
||||
pitzer_structures.o \
|
||||
prep.o \
|
||||
print.o \
|
||||
read.o \
|
||||
readtr.o \
|
||||
sit.o \
|
||||
smalldense.o \
|
||||
spread.o \
|
||||
step.o \
|
||||
structures.o \
|
||||
sundialsmath.o \
|
||||
tally.o \
|
||||
tidy.o \
|
||||
transport.o \
|
||||
utilities.o
|
||||
|
||||
MAIN_FILE = main.o
|
||||
|
||||
CLASS_FILES = \
|
||||
class_main.o \
|
||||
Phreeqc.o
|
||||
|
||||
|
||||
COMMON_CXXOBJS = \
|
||||
dumper.o \
|
||||
Exchange.o \
|
||||
ExchComp.o \
|
||||
GasPhase.o \
|
||||
GasComp.o \
|
||||
ISolution.o \
|
||||
ISolutionComp.o \
|
||||
Keywords.o \
|
||||
KineticsComp.o \
|
||||
cxxKinetics.o \
|
||||
cxxMix.o \
|
||||
NameDouble.o \
|
||||
NumKeyword.o \
|
||||
Parser.o \
|
||||
PBasic.o \
|
||||
PHRQ_base.o \
|
||||
PHRQ_io.o \
|
||||
PPassemblageComp.o \
|
||||
PPassemblage.o \
|
||||
Pressure.o \
|
||||
Reaction.o \
|
||||
ReadClass.o \
|
||||
runner.o \
|
||||
Solution.o \
|
||||
SolutionIsotope.o \
|
||||
SSassemblage.o \
|
||||
SScomp.o \
|
||||
SS.o \
|
||||
StorageBin.o \
|
||||
StorageBinList.o \
|
||||
Surface.o \
|
||||
SurfaceCharge.o \
|
||||
SurfaceComp.o \
|
||||
System.o \
|
||||
Temperature.o \
|
||||
Use.o \
|
||||
Utils.o
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Assign dependents to target on dependency line & link options on command
|
||||
# line. Command line is initiated with a tab. ($@ is an internal macro for
|
||||
# the current target.)
|
||||
|
||||
${PROGRAM} : ${OBJECT_FILES}
|
||||
# ${CXX} -p -o $@ ${OBJECT_FILES} ${LD_FLAGS}
|
||||
${CXX} -o $@ ${OBJECT_FILES} ${LD_FLAGS}
|
||||
@echo; echo Done making for phreeqcpp
|
||||
# -----------------------------------------------------------------------------
|
||||
# Module dependency list
|
||||
# -----------------------------------------------------------------------------
|
||||
#
|
||||
# CXX files
|
||||
#
|
||||
-include $(DEPDIR)/cxxKinetics.Po
|
||||
-include $(DEPDIR)/cxxMix.Po
|
||||
-include $(DEPDIR)/Exchange.Po
|
||||
-include $(DEPDIR)/ExchComp.Po
|
||||
-include $(DEPDIR)/GasComp.Po
|
||||
-include $(DEPDIR)/GasPhase.Po
|
||||
-include $(DEPDIR)/ISolutionComp.Po
|
||||
-include $(DEPDIR)/ISolution.Po
|
||||
-include $(DEPDIR)/KineticsComp.Po
|
||||
-include $(DEPDIR)/NameDouble.Po
|
||||
-include $(DEPDIR)/NumKeyword.Po
|
||||
-include $(DEPDIR)/Parser.Po
|
||||
-include $(DEPDIR)/PHRQ_base.Po
|
||||
-include $(DEPDIR)/PPassemblageComp.Po
|
||||
-include $(DEPDIR)/PPassemblage.Po
|
||||
-include $(DEPDIR)/Pressure.Po
|
||||
-include $(DEPDIR)/Reaction.Po
|
||||
-include $(DEPDIR)/ReadClass.Po
|
||||
-include $(DEPDIR)/Solution.Po
|
||||
-include $(DEPDIR)/SolutionIsotope.Po
|
||||
-include $(DEPDIR)/SSassemblage.Po
|
||||
-include $(DEPDIR)/SScomp.Po
|
||||
-include $(DEPDIR)/SS.Po
|
||||
-include $(DEPDIR)/StorageBin.Po
|
||||
-include $(DEPDIR)/SurfaceCharge.Po
|
||||
-include $(DEPDIR)/SurfaceComp.Po
|
||||
-include $(DEPDIR)/Surface.Po
|
||||
-include $(DEPDIR)/System.Po
|
||||
-include $(DEPDIR)/Temperature.Po
|
||||
-include $(DEPDIR)/Utils.Po
|
||||
-include $(DEPDIR)/ChartHandler.Po
|
||||
-include $(DEPDIR)/ChartObject.Po
|
||||
-include $(DEPDIR)/class_main.Po
|
||||
-include $(DEPDIR)/CurveObject.Po
|
||||
-include $(DEPDIR)/dumper.Po
|
||||
-include $(DEPDIR)/Keywords.Po
|
||||
-include $(DEPDIR)/PBasic.Po
|
||||
-include $(DEPDIR)/Phreeqc.Po
|
||||
-include $(DEPDIR)/PHRQ_io.Po
|
||||
-include $(DEPDIR)/runner.Po
|
||||
-include $(DEPDIR)/StorageBinList.Po
|
||||
-include $(DEPDIR)/Use.Po
|
||||
-include $(DEPDIR)/advection.Po
|
||||
-include $(DEPDIR)/basicsubs.o
|
||||
-include $(DEPDIR)/cl1.Po
|
||||
-include $(DEPDIR)/cl1mp.Po
|
||||
-include $(DEPDIR)/cvdense.Po
|
||||
-include $(DEPDIR)/cvode.Po
|
||||
-include $(DEPDIR)/dense.Po
|
||||
-include $(DEPDIR)/dw.Po
|
||||
-include $(DEPDIR)/gases.Po
|
||||
-include $(DEPDIR)/input.Po
|
||||
-include $(DEPDIR)/integrate.Po
|
||||
-include $(DEPDIR)/inverse.Po
|
||||
-include $(DEPDIR)/isotopes.Po
|
||||
-include $(DEPDIR)/kinetics.Po
|
||||
-include $(DEPDIR)/mainsubs.Po
|
||||
-include $(DEPDIR)/model.Po
|
||||
-include $(DEPDIR)/nvector.Po
|
||||
-include $(DEPDIR)/nvector_serial.Po
|
||||
-include $(DEPDIR)/parse.Po
|
||||
-include $(DEPDIR)/phqalloc.Po
|
||||
-include $(DEPDIR)/PHRQ_io_output.Po
|
||||
-include $(DEPDIR)/pitzer.Po
|
||||
-include $(DEPDIR)/pitzer_structures.Po
|
||||
-include $(DEPDIR)/prep.Po
|
||||
-include $(DEPDIR)/print.Po
|
||||
-include $(DEPDIR)/read.Po
|
||||
-include $(DEPDIR)/readtr.Po
|
||||
-include $(DEPDIR)/sit.Po
|
||||
-include $(DEPDIR)/smalldense.Po
|
||||
-include $(DEPDIR)/spread.Po
|
||||
-include $(DEPDIR)/step.Po
|
||||
-include $(DEPDIR)/structures.Po
|
||||
-include $(DEPDIR)/sundialsmath.Po
|
||||
-include $(DEPDIR)/tally.Po
|
||||
-include $(DEPDIR)/tidy.Po
|
||||
-include $(DEPDIR)/transport.Po
|
||||
-include $(DEPDIR)/utilities.Po
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
clean:
|
||||
rm -rf Class_release Class_debug Class_release_64 Class_debug_64
|
||||
|
||||
dependencies:
|
||||
mkdir -p $(CLASS_DEBUG_DIR)
|
||||
cd $(CLASS_DEBUG_DIR); gcc -MM -I.. ../*.cxx ../*.cpp
|
||||
|
||||
tester:
|
||||
cd ../mytest; make clean; make -k -j 4 $(SPOOL) make.out $(SPOOL2); make diff $(SPOOL) diff.out $(SPOOL2)
|
||||
cd ../examples; make clean; make -k -j 4 $(SPOOL) make.out $(SPOOL2); make diff $(SPOOL) diff.out $(SPOOL2)
|
||||
svn status -q ../mytest
|
||||
svn status -q ../examples
|
||||
|
||||
#ld-option
|
||||
# Usage: ldflags += $(call ld-option, -Wl$(comma)--hash-style=sysv)
|
||||
comma=,
|
||||
ld-option = $(shell if $(CC) $(1) \
|
||||
-nostdlib -o /dev/null -xc /dev/null \
|
||||
> /dev/null 2>&1 ; then echo "$(1)" ; else echo "$(2)"; fi)
|
||||
|
||||
# =============================================================================
|
||||
# End of makefile.
|
||||
# =============================================================================
|
||||
798
Makefile
798
Makefile
@ -45,7 +45,8 @@ CLASS_DEBUG_DIR = Class_debug
|
||||
CLASS_DIR = Class_release
|
||||
CLASS_DEBUG_64_DIR = Class_debug_64
|
||||
CLASS_64_DIR = Class_release_64
|
||||
MAKEFILE = Makefile
|
||||
MAKEFILE = GNUmakefile
|
||||
DEPDIR = .deps
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# fixes shared object lookup error(SIGFPE floating point exception)
|
||||
@ -88,13 +89,22 @@ class_release_64:
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
.c.o :
|
||||
${CXX} ${CXXFLAGS} -c -o $@ $<
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
.cxx.o :
|
||||
${CXX} ${CXXFLAGS} -c -o $@ $<
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
.cpp.o :
|
||||
${CXX} ${CXXFLAGS} -c -o $@ $<
|
||||
test -z "$(DEPDIR)" || /bin/mkdir -p "$(DEPDIR)"
|
||||
depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
||||
${CXX} ${CXXFLAGS} -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
||||
mv -f $$depbase.Tpo $$depbase.Po
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
#hdf options
|
||||
@ -209,7 +219,7 @@ COMMON_COBJS = \
|
||||
tally.o \
|
||||
tidy.o \
|
||||
transport.o \
|
||||
utilities.o
|
||||
utilities.o
|
||||
|
||||
MAIN_FILE = main.o
|
||||
|
||||
@ -272,704 +282,86 @@ ${PROGRAM} : ${OBJECT_FILES}
|
||||
#
|
||||
# CXX files
|
||||
#
|
||||
cxxKinetics.o: ../cxxKinetics.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../cxxKinetics.h ../KineticsComp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
cxxMix.o: ../cxxMix.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h
|
||||
Exchange.o: ../Exchange.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../Exchange.h ../ExchComp.h ../phreeqc/phqalloc.h
|
||||
ExchComp.o: ../ExchComp.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../ExchComp.h ../phreeqc/phqalloc.h
|
||||
GasComp.o: ../GasComp.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../GasComp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
GasPhase.o: ../GasPhase.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../GasPhase.h ../GasComp.h ../phreeqc/phqalloc.h
|
||||
ISolutionComp.o: ../ISolutionComp.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../ISolutionComp.h ../Solution.h \
|
||||
../ISolution.h ../phreeqc/phqalloc.h
|
||||
ISolution.o: ../ISolution.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../ISolution.h ../ISolutionComp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
KineticsComp.o: ../KineticsComp.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../KineticsComp.h ../phreeqc/phqalloc.h
|
||||
NameDouble.o: ../NameDouble.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h ../ISolutionComp.h
|
||||
NumKeyword.o: ../NumKeyword.cxx ../NumKeyword.h ../PHRQ_base.h \
|
||||
../Parser.h ../phreeqc/phrqtype.h ../Keywords.h ../PHRQ_io.h ../Utils.h \
|
||||
../Phreeqc.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../dumper.h ../Pressure.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../SurfaceCharge.h ../phreeqc/global_structures.h ../Surface.h \
|
||||
../phreeqc/NA.h
|
||||
Parser.o: ../Parser.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h
|
||||
PHRQ_base.o: ../PHRQ_base.cxx ../PHRQ_base.h ../PHRQ_io.h ../Keywords.h
|
||||
PPassemblageComp.o: ../PPassemblageComp.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../PPassemblageComp.h ../phreeqc/phqalloc.h
|
||||
PPassemblage.o: ../PPassemblage.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../PPassemblage.h ../PPassemblageComp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
Pressure.o: ../Pressure.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h
|
||||
Reaction.o: ../Reaction.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../Reaction.h ../phreeqc/phqalloc.h
|
||||
ReadClass.o: ../ReadClass.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h ../Exchange.h ../ExchComp.h ../PPassemblage.h \
|
||||
../PPassemblageComp.h ../cxxKinetics.h ../KineticsComp.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../GasPhase.h ../GasComp.h \
|
||||
../Reaction.h ../Temperature.h ../phreeqc/phqalloc.h
|
||||
Solution.o: ../Solution.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../Solution.h ../ISolution.h ../ISolutionComp.h ../phreeqc/phqalloc.h
|
||||
SolutionIsotope.o: ../SolutionIsotope.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../SolutionIsotope.h ../phreeqc/phqalloc.h
|
||||
SSassemblage.o: ../SSassemblage.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../SSassemblage.h ../SS.h ../SScomp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
SScomp.o: ../SScomp.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../SScomp.h \
|
||||
../phreeqc/phqalloc.h
|
||||
SS.o: ../SS.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../SS.h \
|
||||
../SScomp.h ../phreeqc/phqalloc.h
|
||||
StorageBin.o: ../StorageBin.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../StorageBin.h ../System.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../cxxKinetics.h ../KineticsComp.h ../PPassemblage.h \
|
||||
../PPassemblageComp.h ../Reaction.h ../Temperature.h \
|
||||
../phreeqc/phqalloc.h
|
||||
SurfaceCharge.o: ../SurfaceCharge.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
SurfaceComp.o: ../SurfaceComp.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
Surface.o: ../Surface.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h ../Parser.h \
|
||||
../SurfaceCharge.h ../phreeqc/global_structures.h ../Surface.h \
|
||||
../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
System.o: ../System.cxx ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../System.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../cxxKinetics.h ../KineticsComp.h ../PPassemblage.h \
|
||||
../PPassemblageComp.h ../Reaction.h ../Temperature.h
|
||||
Temperature.o: ../Temperature.cxx ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Temperature.h ../phreeqc/phqalloc.h
|
||||
Utils.o: ../Utils.cxx ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h
|
||||
ChartHandler.o: ../ChartHandler.cpp
|
||||
ChartObject.o: ../ChartObject.cpp
|
||||
class_main.o: ../class_main.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../Solution.h ../ISolution.h ../ISolutionComp.h ../Reaction.h \
|
||||
../PPassemblage.h ../PPassemblageComp.h ../Exchange.h ../ExchComp.h \
|
||||
../GasPhase.h ../GasComp.h ../SSassemblage.h ../SS.h ../SScomp.h \
|
||||
../cxxKinetics.h ../KineticsComp.h
|
||||
CurveObject.o: ../CurveObject.cpp ../CurveObject.h ../phreeqc/phrqtype.h
|
||||
dumper.o: ../dumper.cpp ../dumper.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../Parser.h ../phreeqc/phrqtype.h ../Keywords.h ../PHRQ_io.h
|
||||
Keywords.o: ../Keywords.cpp ../Keywords.h
|
||||
PBasic.o: ../PBasic.cpp ../PBasic.h ../phreeqc/phrqtype.h ../PHRQ_base.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../NumKeyword.h \
|
||||
../SurfaceComp.h ../NameDouble.h ../Parser.h \
|
||||
../Keywords.h ../PHRQ_io.h ../SurfaceCharge.h ../phreeqc/NA.h \
|
||||
../Phreeqc.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../dumper.h ../Pressure.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../phreeqc/phqalloc.h ../Utils.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
Phreeqc.o: ../Phreeqc.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../Solution.h ../ISolution.h ../ISolutionComp.h ../Reaction.h \
|
||||
../PPassemblage.h ../PPassemblageComp.h ../Exchange.h ../ExchComp.h \
|
||||
../GasPhase.h ../GasComp.h ../SSassemblage.h ../SS.h ../SScomp.h \
|
||||
../cxxKinetics.h ../KineticsComp.h ../phreeqc/phqalloc.h ../PBasic.h \
|
||||
../Temperature.h
|
||||
PHRQ_io.o: ../PHRQ_io.cpp ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h
|
||||
runner.o: ../runner.cpp ../runner.h ../phreeqc/phrqtype.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../Parser.h ../Keywords.h \
|
||||
../PHRQ_io.h ../phreeqc/NA.h
|
||||
StorageBinList.o: ../StorageBinList.cpp ../StorageBinList.h \
|
||||
../PHRQ_base.h ../Parser.h ../phreeqc/phrqtype.h ../Keywords.h \
|
||||
../PHRQ_io.h
|
||||
Use.o: ../Use.cpp ../Use.h
|
||||
advection.o: ../phreeqc/advection.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../cxxKinetics.h ../KineticsComp.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h
|
||||
basicsubs.o: ../phreeqc/basicsubs.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Utils.h ../Phreeqc.h ../phreeqc/../NameDouble.h \
|
||||
../phreeqc/../PBasic.h ../phreeqc/../PHRQ_base.h \
|
||||
../phreeqc/../Exchange.h ../phreeqc/../NumKeyword.h \
|
||||
../phreeqc/../ExchComp.h ../phreeqc/../NameDouble.h \
|
||||
../phreeqc/../GasPhase.h ../phreeqc/\
|
||||
../phreeqc/../GasComp.h ../PPassemblage.h ../PPassemblageComp.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h \
|
||||
../Parser.h
|
||||
cl1.o: ../phreeqc/cl1.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h
|
||||
cl1mp.o: ../phreeqc/cl1mp.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h
|
||||
cvdense.o: ../phreeqc/cvdense.cpp ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../phreeqc/sundialsmath.h \
|
||||
../Phreeqc.h ../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
cvode.o: ../phreeqc/cvode.cpp ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/sundialsmath.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/dense.h ../phreeqc/smalldense.h \
|
||||
../runner.h ../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
dense.o: ../phreeqc/dense.cpp ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/sundialsmath.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h
|
||||
dw.o: ../phreeqc/dw.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h
|
||||
gases.o: ../phreeqc/gases.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../GasPhase.h ../GasComp.h
|
||||
input.o: ../phreeqc/input.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h
|
||||
integrate.o: ../phreeqc/integrate.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Utils.h ../Phreeqc.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
inverse.o: ../phreeqc/inverse.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Utils.h ../Phreeqc.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h ../SolutionIsotope.h
|
||||
isotopes.o: ../phreeqc/isotopes.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Solution.h ../ISolution.h ../ISolutionComp.h
|
||||
kinetics.o: ../phreeqc/kinetics.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../StorageBin.h ../System.h ../Reaction.h ../cxxKinetics.h \
|
||||
../KineticsComp.h ../Solution.h ../ISolution.h ../ISolutionComp.h \
|
||||
../cxxMix.h ../PPassemblage.h ../PPassemblageComp.h ../Exchange.h \
|
||||
../ExchComp.h ../GasPhase.h ../GasComp.h ../SSassemblage.h ../SS.h \
|
||||
../SScomp.h ../Temperature.h ../phreeqc/nvector_serial.h
|
||||
mainsubs.o: ../phreeqc/mainsubs.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../PBasic.h ../Temperature.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../Reaction.h ../PPassemblage.h ../PPassemblageComp.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h \
|
||||
../Solution.h ../ISolution.h ../ISolutionComp.h
|
||||
model.o: ../phreeqc/model.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../cxxMix.h ../Exchange.h ../ExchComp.h ../GasPhase.h ../GasComp.h \
|
||||
../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h ../SS.h \
|
||||
../SScomp.h ../Solution.h ../ISolution.h ../ISolutionComp.h
|
||||
nvector.o: ../phreeqc/nvector.cpp ../phreeqc/nvector.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h
|
||||
nvector_serial.o: ../phreeqc/nvector_serial.cpp \
|
||||
../phreeqc/nvector_serial.h ../phreeqc/nvector.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/sundialsmath.h
|
||||
parse.o: ../phreeqc/parse.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h
|
||||
phqalloc.o: ../phreeqc/phqalloc.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h
|
||||
PHRQ_io_output.o: ../phreeqc/PHRQ_io_output.cpp ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
pitzer.o: ../phreeqc/pitzer.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Exchange.h ../ExchComp.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
pitzer_structures.o: ../phreeqc/pitzer_structures.cpp ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
prep.o: ../phreeqc/prep.cpp ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../Phreeqc.h \
|
||||
../phreeqc/phqalloc.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h \
|
||||
../SS.h ../SScomp.h ../SS.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h
|
||||
print.o: ../phreeqc/print.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../Temperature.h ../cxxMix.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../Reaction.h ../PPassemblage.h ../PPassemblageComp.h \
|
||||
../SSassemblage.h ../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h \
|
||||
../Solution.h ../ISolution.h ../ISolutionComp.h
|
||||
read.o: ../phreeqc/read.cpp ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../Phreeqc.h \
|
||||
../phreeqc/phqalloc.h ../Pressure.h ../Temperature.h ../Parser.h \
|
||||
../cxxMix.h ../Exchange.h ../ExchComp.h ../GasPhase.h ../GasComp.h \
|
||||
../Reaction.h ../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h \
|
||||
../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
readtr.o: ../phreeqc/readtr.cpp ../phreeqc/../StorageBin.h \
|
||||
../phreeqc/../System.h ../phreeqc/../NameDouble.h ../phreeqc/../Parser.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/../PHRQ_base.h ../phreeqc/../Keywords.h \
|
||||
../phreeqc/../PHRQ_io.h ../phreeqc/../phreeqc/../SS.h \
|
||||
../phreeqc/../SScomp.h ../Phreeqc.h ../phreeqc/cvdense.h \
|
||||
../phreeqc/cvode.h ../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/nvector.h ../phreeqc/dense.h ../phreeqc/smalldense.h \
|
||||
../runner.h ../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../SurfaceCharge.h ../phreeqc/global_structures.h ../Surface.h \
|
||||
../phreeqc/NA.h ../phreeqc/phqalloc.h
|
||||
sit.o: ../phreeqc/sit.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Exchange.h ../ExchComp.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
smalldense.o: ../phreeqc/smalldense.cpp ../phreeqc/smalldense.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/sundialsmath.h
|
||||
spread.o: ../phreeqc/spread.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Solution.h ../ISolution.h ../ISolutionComp.h \
|
||||
../Utils.h ../Phreeqc.h
|
||||
step.o: ../phreeqc/step.cpp ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h \
|
||||
../phreeqc/phqalloc.h ../Utils.h ../Phreeqc.h ../StorageBin.h \
|
||||
../System.h ../Solution.h ../ISolution.h ../ISolutionComp.h \
|
||||
../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h ../SS.h \
|
||||
../SScomp.h ../SS.h ../NameDouble.h ../Temperature.h ../cxxMix.h \
|
||||
../Exchange.h ../ExchComp.h ../GasPhase.h ../GasComp.h ../Reaction.h \
|
||||
../cxxKinetics.h ../KineticsComp.h
|
||||
structures.o: ../phreeqc/structures.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../Temperature.h ../cxxMix.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../Reaction.h ../PPassemblage.h ../PPassemblageComp.h \
|
||||
../Use.h ../SSassemblage.h ../SS.h ../SScomp.h ../cxxKinetics.h \
|
||||
../KineticsComp.h ../Solution.h ../ISolution.h ../ISolutionComp.h \
|
||||
../phreeqc/../StorageBin.h ../phreeqc/../System.h \
|
||||
../phreeqc/../NameDouble.h ../phreeqc/../PHRQ_base.h \
|
||||
../phreeqc/../phreeqc/../PHRQ_io.h
|
||||
sundialsmath.o: ../phreeqc/sundialsmath.cpp ../phreeqc/sundialsmath.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h
|
||||
tally.o: ../phreeqc/tally.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../Temperature.h ../Exchange.h ../ExchComp.h ../GasPhase.h ../GasComp.h \
|
||||
../Reaction.h ../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h \
|
||||
../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
tidy.o: ../phreeqc/tidy.cpp ../Utils.h ../Phreeqc.h ../phreeqc/phrqtype.h \
|
||||
../phreeqc/cvdense.h ../phreeqc/cvode.h ../phreeqc/sundialstypes.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/nvector.h ../phreeqc/dense.h \
|
||||
../phreeqc/smalldense.h ../runner.h ../StorageBinList.h ../PHRQ_base.h \
|
||||
../dumper.h ../PHRQ_io.h ../Keywords.h ../Pressure.h ../NumKeyword.h \
|
||||
../cxxMix.h ../Use.h ../Surface.h ../SurfaceComp.h \
|
||||
../NameDouble.h ../Parser.h ../SurfaceCharge.h \
|
||||
../phreeqc/global_structures.h ../Surface.h ../phreeqc/NA.h ../Phreeqc.h \
|
||||
../phreeqc/phqalloc.h ../Exchange.h ../ExchComp.h ../GasPhase.h \
|
||||
../GasComp.h ../PPassemblage.h ../PPassemblageComp.h ../SSassemblage.h \
|
||||
../SS.h ../SScomp.h ../cxxKinetics.h ../KineticsComp.h ../Solution.h \
|
||||
../ISolution.h ../ISolutionComp.h
|
||||
transport.o: ../phreeqc/transport.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../Exchange.h ../ExchComp.h ../GasPhase.h ../GasComp.h ../PPassemblage.h \
|
||||
../PPassemblageComp.h ../SSassemblage.h ../SS.h ../SScomp.h \
|
||||
../cxxKinetics.h ../KineticsComp.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h
|
||||
utilities.o: ../phreeqc/utilities.cpp ../Utils.h ../Phreeqc.h \
|
||||
../phreeqc/phrqtype.h ../phreeqc/cvdense.h ../phreeqc/cvode.h \
|
||||
../phreeqc/sundialstypes.h ../phreeqc/phrqtype.h ../phreeqc/nvector.h \
|
||||
../phreeqc/dense.h ../phreeqc/smalldense.h ../runner.h \
|
||||
../StorageBinList.h ../PHRQ_base.h ../dumper.h ../PHRQ_io.h \
|
||||
../Keywords.h ../Pressure.h ../NumKeyword.h ../cxxMix.h ../Use.h \
|
||||
../Surface.h ../SurfaceComp.h ../NameDouble.h \
|
||||
../Parser.h ../SurfaceCharge.h ../phreeqc/global_structures.h \
|
||||
../Surface.h ../phreeqc/NA.h ../Phreeqc.h ../phreeqc/phqalloc.h \
|
||||
../NameDouble.h ../Exchange.h ../ExchComp.h ../Solution.h ../ISolution.h \
|
||||
../ISolutionComp.h
|
||||
-include $(DEPDIR)/cxxKinetics.Po
|
||||
-include $(DEPDIR)/cxxMix.Po
|
||||
-include $(DEPDIR)/Exchange.Po
|
||||
-include $(DEPDIR)/ExchComp.Po
|
||||
-include $(DEPDIR)/GasComp.Po
|
||||
-include $(DEPDIR)/GasPhase.Po
|
||||
-include $(DEPDIR)/ISolutionComp.Po
|
||||
-include $(DEPDIR)/ISolution.Po
|
||||
-include $(DEPDIR)/KineticsComp.Po
|
||||
-include $(DEPDIR)/NameDouble.Po
|
||||
-include $(DEPDIR)/NumKeyword.Po
|
||||
-include $(DEPDIR)/Parser.Po
|
||||
-include $(DEPDIR)/PHRQ_base.Po
|
||||
-include $(DEPDIR)/PPassemblageComp.Po
|
||||
-include $(DEPDIR)/PPassemblage.Po
|
||||
-include $(DEPDIR)/Pressure.Po
|
||||
-include $(DEPDIR)/Reaction.Po
|
||||
-include $(DEPDIR)/ReadClass.Po
|
||||
-include $(DEPDIR)/Solution.Po
|
||||
-include $(DEPDIR)/SolutionIsotope.Po
|
||||
-include $(DEPDIR)/SSassemblage.Po
|
||||
-include $(DEPDIR)/SScomp.Po
|
||||
-include $(DEPDIR)/SS.Po
|
||||
-include $(DEPDIR)/StorageBin.Po
|
||||
-include $(DEPDIR)/SurfaceCharge.Po
|
||||
-include $(DEPDIR)/SurfaceComp.Po
|
||||
-include $(DEPDIR)/Surface.Po
|
||||
-include $(DEPDIR)/System.Po
|
||||
-include $(DEPDIR)/Temperature.Po
|
||||
-include $(DEPDIR)/Utils.Po
|
||||
-include $(DEPDIR)/ChartHandler.Po
|
||||
-include $(DEPDIR)/ChartObject.Po
|
||||
-include $(DEPDIR)/class_main.Po
|
||||
-include $(DEPDIR)/CurveObject.Po
|
||||
-include $(DEPDIR)/dumper.Po
|
||||
-include $(DEPDIR)/Keywords.Po
|
||||
-include $(DEPDIR)/PBasic.Po
|
||||
-include $(DEPDIR)/Phreeqc.Po
|
||||
-include $(DEPDIR)/PHRQ_io.Po
|
||||
-include $(DEPDIR)/runner.Po
|
||||
-include $(DEPDIR)/StorageBinList.Po
|
||||
-include $(DEPDIR)/Use.Po
|
||||
-include $(DEPDIR)/advection.Po
|
||||
-include $(DEPDIR)/basicsubs.o
|
||||
-include $(DEPDIR)/cl1.Po
|
||||
-include $(DEPDIR)/cl1mp.Po
|
||||
-include $(DEPDIR)/cvdense.Po
|
||||
-include $(DEPDIR)/cvode.Po
|
||||
-include $(DEPDIR)/dense.Po
|
||||
-include $(DEPDIR)/dw.Po
|
||||
-include $(DEPDIR)/gases.Po
|
||||
-include $(DEPDIR)/input.Po
|
||||
-include $(DEPDIR)/integrate.Po
|
||||
-include $(DEPDIR)/inverse.Po
|
||||
-include $(DEPDIR)/isotopes.Po
|
||||
-include $(DEPDIR)/kinetics.Po
|
||||
-include $(DEPDIR)/mainsubs.Po
|
||||
-include $(DEPDIR)/model.Po
|
||||
-include $(DEPDIR)/nvector.Po
|
||||
-include $(DEPDIR)/nvector_serial.Po
|
||||
-include $(DEPDIR)/parse.Po
|
||||
-include $(DEPDIR)/phqalloc.Po
|
||||
-include $(DEPDIR)/PHRQ_io_output.Po
|
||||
-include $(DEPDIR)/pitzer.Po
|
||||
-include $(DEPDIR)/pitzer_structures.Po
|
||||
-include $(DEPDIR)/prep.Po
|
||||
-include $(DEPDIR)/print.Po
|
||||
-include $(DEPDIR)/read.Po
|
||||
-include $(DEPDIR)/readtr.Po
|
||||
-include $(DEPDIR)/sit.Po
|
||||
-include $(DEPDIR)/smalldense.Po
|
||||
-include $(DEPDIR)/spread.Po
|
||||
-include $(DEPDIR)/step.Po
|
||||
-include $(DEPDIR)/structures.Po
|
||||
-include $(DEPDIR)/sundialsmath.Po
|
||||
-include $(DEPDIR)/tally.Po
|
||||
-include $(DEPDIR)/tidy.Po
|
||||
-include $(DEPDIR)/transport.Po
|
||||
-include $(DEPDIR)/utilities.Po
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
clean:
|
||||
rm -rf Class_release Class_debug Class_release_64 Class_debug_64
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user