ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
(Generate patch)

Comparing trunk/OOPSE/libmdtools/Makefile.in (file contents):
Revision 840 by gezelter, Wed Oct 29 14:29:12 2003 UTC vs.
Revision 1118 by tim, Mon Apr 19 03:52:27 2004 UTC

# Line 49 | Line 49 | MODDIRFLAG=@MODDIRFLAG@
49   # MODDIRFLAG
50   MODDIRFLAG=@MODDIRFLAG@
51  
52 # MPI F90 Module path
53 MPI_F90_MODS=@MPI_F90_MODS@
54
52   # Compiler dependent Fortran module
53   FLIBS_EXTRA = @F90LIBS@
54  
# Line 127 | Line 124 | MPI_INCLUDES= -I$(MPI_INC) $(MODDIRFLAG)$(MPI_F90_MODS
124   # include paths starting with "." are all relative to the SUBDIRS!!!
125  
126   INCLUDES= -I.. -I../../libBASS $(SPRNG_INC)
127 < MPI_INCLUDES= -I$(MPI_INC) $(MODDIRFLAG)$(MPI_F90_MODS)
127 > MPI_INCLUDES= -I$(MPI_INC)
128 > F90_INCLUDES= -I/usr/local/include
129  
130   CFLAGS=$(CFLAGS_C) $(INCLUDES) $(DECLARE) $(MPI_INCLUDES) $(FUNCWRAP)
131   CXXFLAGS=$(CXXFLAGS_C) $(OOPSE_TEMPLATE_FLAGS) $(EXTRA_CC_FLAG) $(INCLUDES) $(DECLARE) $(FUNCWRAP)
132   FFLAGS=$(PREPFLAG) $(FFLAGS_C)
133 < F90FLAGS=$(PREPFLAG) $(F90FLAGS_C)
133 > F90FLAGS=$(PREPFLAG) $(F90FLAGS_C) $(F90_INCLUDES)
134   DEPFLAGS=$(CFLAGS_C) -I. -I../libBASS $(SPRNG_INC) $(MPI_INCLUDES)
135  
136   MPI_CFLAGS=$(CFLAGS) $(MPI_INCLUDES) $(MPI_DECLARE)
# Line 165 | Line 163 | C_FILES = \
163  
164   C_FILES = \
165          $(DIR)/mpiForceField.c \
166 +        $(DIR)/MatVec3.c \
167          $(DIR)/fInfo.c
168  
169   CXX_FILES = \
# Line 180 | Line 179 | CXX_FILES = \
179          $(DIR)/InitializeFromFile.cpp \
180          $(DIR)/LJFF.cpp \
181          $(DIR)/EAM_FF.cpp \
182 +        $(DIR)/WATER.cpp \
183 +        $(DIR)/RigidBody.cpp \
184          $(DIR)/SimInfo.cpp \
185          $(DIR)/SimSetup.cpp \
186          $(DIR)/StatWriter.cpp \
187 +        $(DIR)/StuntDouble.cpp \
188          $(DIR)/Integrator.cpp \
189          $(DIR)/Thermo.cpp \
190          $(DIR)/GhostBend.cpp \
# Line 192 | Line 194 | CXX_FILES = \
194          $(DIR)/randomSPRNG.cpp \
195          $(DIR)/fortranWrappers.cpp \
196          $(DIR)/ForceFields.cpp \
195        $(DIR)/mpiSimulation.cpp \
197          $(DIR)/Molecule.cpp \
198          $(DIR)/NPTf.cpp \
199          $(DIR)/NPTi.cpp \
# Line 201 | Line 202 | CXX_FILES = \
202          $(DIR)/SimState.cpp \
203          $(DIR)/ZConstraint.cpp \
204          $(DIR)/ZConsWriter.cpp \
205 <        $(DIR)/GenericData.cpp
205 >        $(DIR)/mdProfile.cpp \
206 >        $(DIR)/GenericData.cpp \
207 >        $(DIR)/mpiSimulation.cpp \
208 >        $(DIR)/Utility.cpp \
209 >        $(DIR)/OOPSEMinimizer.cpp \
210 >        $(DIR)/CGFamilyMinimizer.cpp \
211 >        $(DIR)/PRCG.cpp \
212 >        $(DIR)/SDMinimizer.cpp \
213 >        $(DIR)/ZConsReader.cpp  \
214 >        $(DIR)/AtomVisitor.cpp \
215 >        $(DIR)/CompositeVisitor.cpp \
216 >        $(DIR)/OtherVisitor.cpp \
217 >        $(DIR)/RigidBodyVisitor.cpp \
218 >        $(DIR)/ZconsVisitor.cpp
219  
220 +
221   F90_FILES= \
222          $(DIR)/definitions_module.F90 \
223          $(DIR)/status_module.F90 \
224          $(DIR)/atype_module.F90 \
225          $(DIR)/calc_dipole_dipole.F90 \
226 +        $(DIR)/calc_charge_charge.F90 \
227          $(DIR)/calc_reaction_field.F90 \
228          $(DIR)/calc_LJ_FF.F90 \
229          $(DIR)/calc_eam.F90 \
# Line 220 | Line 236 | F90_FILES= \
236          $(DIR)/calc_gb.F90 \
237          $(DIR)/force_globals.F90 \
238          $(DIR)/mpiSimulation_module.F90 \
239 <        $(DIR)/notifyCutoffs.F90
239 >        $(DIR)/notifyCutoffs.F90 \
240 >        $(DIR)/timing.F90 \
241 >        $(DIR)/oopseMPI_module.F90
242  
243   DIR:=.
244   C_SRCS   :=     $(C_FILES)
# Line 360 | Line 378 | obj/do_Forces$(O): ./do_Forces.F90 \
378          obj/force_globals$(O) \
379          obj/vector_class$(O)
380  
381 + obj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
382 +        obj/definitions_module$(O) \
383 +        obj/atype_module$(O) \
384 +        obj/simulation_module$(O) \
385 +        obj/force_globals$(O) \
386 +        obj/vector_class$(O)
387 +
388   obj/do_Forces$(O): ./do_Forces.F90 \
389          obj/definitions_module$(O) \
390          obj/atype_module$(O) \
# Line 391 | Line 416 | obj/wrappers$(O): ./wrappers.F90 \
416          obj/do_Forces$(O) \
417          obj/notifyCutoffs$(O)
418  
419 + obj/timing$(O): ./timing.F90 \
420 +        obj/do_Forces$(O)
421  
422  
423  
397
398
424   #MPI dependencies:
425  
426   MPIobj/definitions_module$(O): ./definitions_module.F90
# Line 404 | Line 429 | MPIobj/mpiSimulation_module$(O): ./mpiSimulation_modul
429  
430   MPIobj/status_module$(O): ./status_module.F90
431  
432 < MPIobj/mpiSimulation_module$(O): ./mpiSimulation_module.F90
432 > MPIobj/oopseMPI_module$(O): ./oopseMPI_module.F90
433  
434 + MPIobj/mpiSimulation_module$(O): ./mpiSimulation_module.F90 \
435 +        MPIobj/oopseMPI_module$(O)
436 +
437   MPIobj/force_globals$(O): ./force_globals.F90 \
438          MPIobj/mpiSimulation_module$(O) \
439          MPIobj/definitions_module$(O)
# Line 474 | Line 502 | MPIobj/do_Forces$(O): ./do_Forces.F90 \
502          MPIobj/force_globals$(O) \
503          MPIobj/vector_class$(O)
504  
505 + MPIobj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
506 +        MPIobj/definitions_module$(O) \
507 +        MPIobj/atype_module$(O) \
508 +        MPIobj/simulation_module$(O) \
509 +        MPIobj/mpiSimulation_module$(O) \
510 +        MPIobj/force_globals$(O) \
511 +        MPIobj/vector_class$(O)
512 +
513   MPIobj/do_Forces$(O): ./do_Forces.F90 \
514          MPIobj/definitions_module$(O) \
515          MPIobj/mpiSimulation_module$(O) \
# Line 507 | Line 543 | MPIobj/wrappers$(O): ./wrappers.F90 \
543          MPIobj/do_Forces$(O) \
544          MPIobj/notifyCutoffs$(O)  
545  
546 + MPIobj/timing$(O): ./timing.F90 \
547 +        MPIobj/do_Forces$(O) \
548 +        MPIobj/mpiSimulation_module$(O)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines