ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
Revision: 1234
Committed: Fri Jun 4 03:15:31 2004 UTC (20 years, 1 month ago) by tim
File size: 13572 byte(s)
Log Message:
new rattle algorithm is working

File Contents

# User Rev Content
1 gezelter 747 #####################################################
2     # Makefile for libmdtools (bundled with OOPSE) #
3     #####################################################
4     # You should not change anything here. #
5     #####################################################
6    
7     # No make rules by default
8     .SUFFIXES : .c .cpp .F90 .hpp .h $(O)
9    
10     # Extension of object files
11     O=@OBJEXT@
12    
13     # Extension of executables
14     EXE=@EXEEXT@
15    
16     # Bourn shell
17     SHELL=/bin/sh
18    
19     # Path prefix for installation links
20     PREFIX=@prefix@
21    
22     # List of subdirectories
23     SUBDIRS=@SUBDIRS@
24    
25     # Location of the oopse home
26     OOPSE_HOME=@OOPSE_HOME@
27    
28     FORCE_PARAM_DIR=@OOPSE_HOME@/share/forceFields/
29     SAMPLE_SIM_DIR=@OOPSE_HOME@/share/samples/
30    
31     # SPRNG library path
32     SPRNG_LIBDIR=@SPRNG_LIBDIR@
33    
34     # SPRNG library
35     SPRNG_LIB=@SPRNG_LIB@
36    
37     # SPRNG include path
38     SPRNG_INC=@SPRNG_INC@
39 gezelter 1233
40     # Compile MPI code?
41     USE_MPI=@USE_MPI@
42    
43     # MPI include path
44     MPI_INC_DIR=@MPI_INC_DIR@
45 gezelter 747
46 gezelter 1233 # MPI include path
47     MPI_F90_INC=@MPI_F90_INC@
48 gezelter 747
49     # Compiler dependent Fortran module
50     FLIBS_EXTRA = @F90LIBS@
51    
52     # Location of yacc (or its substitution)
53     YACC=@YACC@
54    
55     #location of lex
56     LEX=@LEX@
57    
58     # C compiler
59     CC=@CC@
60    
61     # C++ compiler
62    
63     CXX=@CXX@
64    
65     # F90 compiler
66     F90=@F90@
67    
68     # ar
69     AR=@AR@
70    
71     # ranlib
72     RANLIB=@RANLIB@
73    
74     # rm
75     RM=rm -f
76    
77     # soft link
78     LN_S=@LN_S@
79    
80     # BSD install
81     INSTALL=@INSTALL@
82     INSTALL_PROGRAM=@INSTALL_PROGRAM@
83     INSTALL_DATA=@INSTALL_DATA@
84     MKINSTALLDIRS=@MKINSTALLDIRS@
85    
86     # CPP flags
87     CPPFLAGS=@CPPFLAGS@
88    
89     # C flags
90     CFLAGS_C=@CFLAGS@
91    
92     # C++ flags
93     CXXFLAGS_C=@CXXFLAGS@
94    
95 gezelter 840 # C++ template flags
96     OOPSE_TEMPLATE_FLAGS=@OOPSE_TEMPLATE_FLAGS@
97    
98     # C++ namespace flags
99     EXTRA_CC_FLAG=@EXTRA_CC_FLAG@
100    
101 gezelter 747 # Preprocessor flag for fortran
102     PREPFLAG=@PREPFLAG@
103    
104     # Preprocessor define flag for fortran
105     PREPDEFFLAG=@PREPDEFFLAG@
106    
107     # Fortran flags
108 gezelter 785 FFLAGS_C=@FFLAGS@
109 gezelter 747
110 gezelter 785 # Fortran90 flags
111     F90FLAGS_C=@F90FLAGS@
112    
113 gezelter 747 # LDFLAGS
114     LDFLAGS=@LDFLAGS@
115    
116     # First do compile-time flags:
117    
118     DECLARE=-DFRC_PATH="$(FORCE_PARAM_DIR)"
119     MPI_DECLARE=-DIS_MPI
120    
121     # include paths starting with "." are all relative to the SUBDIRS!!!
122    
123     INCLUDES= -I.. -I../../libBASS $(SPRNG_INC)
124 gezelter 1233 MPI_INCLUDES= -I$(MPI_INC_DIR)
125     MPI_F90_INCLUDES= -I$(MPI_F90_INC)
126 gezelter 747
127 gezelter 1233 CFLAGS=$(CFLAGS_C) $(INCLUDES) $(DECLARE)
128     CXXFLAGS=$(CXXFLAGS_C) $(OOPSE_TEMPLATE_FLAGS) $(EXTRA_CC_FLAG) $(INCLUDES) $(DECLARE)
129 gezelter 747 FFLAGS=$(PREPFLAG) $(FFLAGS_C)
130 gezelter 1233 F90FLAGS=$(PREPFLAG) $(F90FLAGS_C) -I../../libBASS
131 gezelter 747 DEPFLAGS=$(CFLAGS_C) -I. -I../libBASS $(SPRNG_INC) $(MPI_INCLUDES)
132    
133     MPI_CFLAGS=$(CFLAGS) $(MPI_INCLUDES) $(MPI_DECLARE)
134     MPI_CXXFLAGS=$(CXXFLAGS) $(MPI_INCLUDES) $(MPI_DECLARE)
135 gezelter 1233 MPI_F90FLAGS=$(F90FLAGS) $(MPI_F90_INCLUDES) $(PREPDEFFLAG)$(MPI_DECLARE)
136 gezelter 747
137 gezelter 829 SRC_DIR := ..
138 gezelter 747
139     # Then do the compile rules:
140    
141     obj/%.o: %.F90
142 gezelter 785 cd obj; $(F90) $(F90FLAGS) -c $(SRC_DIR)/$<
143 gezelter 747
144     MPIobj/%.o: %.F90
145 gezelter 785 cd MPIobj; $(F90) $(MPI_F90FLAGS) -c $(SRC_DIR)/$<
146 gezelter 747
147     obj/%.o: %.cpp
148     cd obj; $(CXX) $(CXXFLAGS) -c $(SRC_DIR)/$<
149    
150     MPIobj/%.o: %.cpp
151     cd MPIobj; $(CXX) $(MPI_CXXFLAGS) -c $(SRC_DIR)/$<
152    
153     obj/%.o: %.c
154     cd obj; $(CC) $(CFLAGS) -c $(SRC_DIR)/$<
155    
156     MPIobj/%.o: %.c
157     cd MPIobj; $(CC) $(MPI_CFLAGS) -c $(SRC_DIR)/$<
158    
159     # Then list what we have to compile
160    
161     C_FILES = \
162     $(DIR)/mpiForceField.c \
163 gezelter 1097 $(DIR)/MatVec3.c \
164 gezelter 747 $(DIR)/fInfo.c
165    
166     CXX_FILES = \
167 gezelter 1224 $(DIR)/Atom.cpp \
168     $(DIR)/AtomVisitor.cpp \
169 gezelter 747 $(DIR)/Bend.cpp \
170     $(DIR)/BendExtensions.cpp \
171     $(DIR)/Bond.cpp \
172     $(DIR)/BondExtensions.cpp \
173 gezelter 1224 $(DIR)/CGFamilyMinimizer.cpp \
174     $(DIR)/CompositeVisitor.cpp \
175 gezelter 747 $(DIR)/DirectionalAtom.cpp \
176 gezelter 1224 $(DIR)/DUFF.cpp \
177     $(DIR)/DumpReader.cpp \
178 gezelter 747 $(DIR)/DumpWriter.cpp \
179 gezelter 1224 $(DIR)/EAM_FF.cpp \
180 gezelter 747 $(DIR)/Exclude.cpp \
181 gezelter 1224 $(DIR)/ForceFields.cpp \
182     $(DIR)/fortranWrappers.cpp \
183     $(DIR)/GenericData.cpp \
184     $(DIR)/GhostBend.cpp \
185 gezelter 747 $(DIR)/InitializeFromFile.cpp \
186 gezelter 1224 $(DIR)/Integrator.cpp \
187 gezelter 747 $(DIR)/LJFF.cpp \
188 gezelter 1224 $(DIR)/mdProfile.cpp \
189     $(DIR)/Molecule.cpp \
190     $(DIR)/mpiSimulation.cpp \
191     $(DIR)/NPT.cpp \
192     $(DIR)/NPTf.cpp \
193     $(DIR)/NPTi.cpp \
194     $(DIR)/NPTxyz.cpp \
195     $(DIR)/NVT.cpp \
196     $(DIR)/OOPSEMinimizer.cpp \
197     $(DIR)/OtherVisitor.cpp \
198     $(DIR)/PRCG.cpp \
199     $(DIR)/randomSPRNG.cpp \
200     $(DIR)/Restraints.cpp \
201 gezelter 1097 $(DIR)/RigidBody.cpp \
202 gezelter 1224 $(DIR)/RigidBodyVisitor.cpp \
203     $(DIR)/SDMinimizer.cpp \
204 gezelter 747 $(DIR)/SimInfo.cpp \
205     $(DIR)/SimSetup.cpp \
206 gezelter 1224 $(DIR)/SimState.cpp \
207     $(DIR)/SkipList.cpp \
208 gezelter 747 $(DIR)/StatWriter.cpp \
209 gezelter 1224 $(DIR)/StreamTokenizer.cpp \
210 gezelter 1097 $(DIR)/StuntDouble.cpp \
211 gezelter 747 $(DIR)/Thermo.cpp \
212     $(DIR)/Torsion.cpp \
213     $(DIR)/TorsionExtensions.cpp \
214 gezelter 1224 $(DIR)/Utility.cpp \
215     $(DIR)/WATER.cpp \
216     $(DIR)/ZConsReader.cpp \
217 gezelter 747 $(DIR)/ZConstraint.cpp \
218 chrisfen 1180 $(DIR)/ZconsVisitor.cpp \
219 tim 1234 $(DIR)/Restraints.cpp \
220     $(DIR)/ConstraintManager.cpp \
221     $(DIR)/ConstraintAlgorithm.cpp \
222     $(DIR)/Shake.cpp \
223     $(DIR)/Rattle.cpp \
224     $(DIR)/ShakeMin.cpp \
225     $(DIR)/CallbackFunctor.cpp \
226     $(DIR)/ConstraintElement.cpp \
227 gezelter 1224 $(DIR)/ZConsWriter.cpp
228 gezelter 747
229     F90_FILES= \
230 gezelter 1224 $(DIR)/atype_module.F90 \
231     $(DIR)/calc_charge_charge.F90 \
232 gezelter 747 $(DIR)/calc_dipole_dipole.F90 \
233 gezelter 1224 $(DIR)/calc_eam.F90 \
234     $(DIR)/calc_gb.F90 \
235     $(DIR)/calc_LJ_FF.F90 \
236 gezelter 747 $(DIR)/calc_reaction_field.F90 \
237     $(DIR)/calc_sticky_pair.F90 \
238 gezelter 1224 $(DIR)/definitions_module.F90 \
239 gezelter 747 $(DIR)/do_Forces.F90 \
240     $(DIR)/force_globals.F90 \
241     $(DIR)/mpiSimulation_module.F90 \
242 gezelter 1224 $(DIR)/neighborLists.F90 \
243 chuckv 858 $(DIR)/notifyCutoffs.F90 \
244 gezelter 1224 $(DIR)/oopseMPI_module.F90 \
245     $(DIR)/simulation_module.F90 \
246     $(DIR)/status_module.F90 \
247     $(DIR)/switch_module.F90 \
248 gezelter 940 $(DIR)/timing.F90 \
249 gezelter 1224 $(DIR)/vector_class.F90 \
250     $(DIR)/wrappers.F90
251 gezelter 747
252     DIR:=.
253     C_SRCS := $(C_FILES)
254     CXX_SRCS := $(CXX_FILES)
255     F90_SRCS := $(F90_FILES)
256     SRCS := $(C_SRCS) $(CXX_SRCS) $(F90_SRCS)
257    
258     DIR:=obj
259     C_OBJS := $(C_FILES:.c=.o)
260     CXX_OBJS := $(CXX_FILES:.cpp=.o)
261     F90_OBJS := $(F90_FILES:.F90=.o)
262     OBJS := $(C_OBJS) $(CXX_OBJS) $(F90_OBJS)
263    
264     DIR:=MPIobj
265     C_MPIOBJS := $(C_FILES:.c=.o)
266     CXX_MPIOBJS := $(CXX_FILES:.cpp=.o)
267     F90_MPIOBJS := $(F90_FILES:.F90=.o)
268     MPIOBJS := $(C_MPIOBJS) $(CXX_MPIOBJS) $(F90_MPIOBJS)
269    
270     LIBSUBDIRS = \
271     obj \
272     MPIobj
273    
274     # Possible make targets:
275    
276 gezelter 1233 ifeq ($(USE_MPI),yes)
277 gezelter 747 all: libmdtools.a libmdtools_MPI.a
278 gezelter 1233 else
279     all: libmdtools.a
280     endif
281 gezelter 747
282 gezelter 1233
283 gezelter 747 libmdtools.a: $(OBJS)
284     $(RM) $@
285     $(AR) cr $@ $(OBJS)
286     $(RANLIB) $@
287    
288     libmdtools_MPI.a: $(MPIOBJS)
289     $(RM) $@
290     $(AR) cr $@ $(MPIOBJS)
291     $(RANLIB) $@
292    
293     .PHONY : clean
294    
295     clean : dummy
296     for i in $(LIBSUBDIRS); do \
297     (cd $$i; $(RM) *.o *.mod) || exit 1; \
298     done
299     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
300    
301     distclean : dummy
302     for i in $(LIBSUBDIRS); do \
303     (cd $$i; $(RM) *.o *.mod) || exit 1; \
304     done
305     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
306    
307     depend : Make.dep
308    
309     Make.dep :
310     echo "Only C dependencies are made automagically!"
311     echo "# DO NOT DELETE THIS LINE - used by make depend" > Make.dep
312     $(CC) $(DEPFLAGS) -MM $(C_SRCS) \
313     | sed 's/\.o:/\$$(O)\ :/g' > Make.temp
314     $(CXX) $(DEPFLAGS) -MM $(CXX_SRCS) \
315     | sed 's/\.o:/\$$(O)\ :/g' >> Make.temp
316     cat Make.temp | sed 's/^[a-zA-Z0-9]/obj\/&/g' >> Make.dep
317     cat Make.temp | sed 's/^[a-zA-Z0-9]/MPIobj\/&/g' >> Make.dep
318     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d obj -f ./Make.ftemp -h *.F90
319     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d MPIobj -f ./Make.ftemp -h *.F90
320     # cat Make.ftemp | sed 's/\.o:/\$$(O)\ :/g' >> Make.dep
321     $(RM) Make.ftemp Make.temp
322    
323     install : dummy
324    
325     links : dummy
326    
327     tests : dummy
328    
329     dummy :
330    
331     include Make.dep
332    
333     obj/definitions_module$(O): ./definitions_module.F90
334    
335     obj/vector_class$(O): ./vector_class.F90
336    
337     obj/status_module$(O): ./status_module.F90
338    
339     obj/force_globals$(O): ./force_globals.F90 \
340     obj/definitions_module$(O)
341    
342     obj/neighborLists$(O): ./neighborLists.F90 \
343     obj/definitions_module$(O)
344    
345     obj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
346     obj/definitions_module$(O) \
347     obj/simulation_module$(O) \
348     obj/force_globals$(O)
349    
350     obj/calc_eam$(O): ./calc_eam.F90 \
351     obj/definitions_module$(O) \
352     obj/atype_module$(O) \
353     obj/simulation_module$(O) \
354     obj/vector_class$(O) \
355     obj/force_globals$(O) \
356     obj/status_module$(O)
357    
358     obj/calc_gb$(O): ./calc_gb.F90 \
359     obj/definitions_module$(O) \
360     obj/simulation_module$(O) \
361     obj/force_globals$(O)
362    
363     obj/atype_module$(O): ./atype_module.F90 \
364     obj/definitions_module$(O) \
365     obj/vector_class$(O)
366    
367     obj/simulation_module$(O): ./simulation_module.F90 \
368     obj/definitions_module$(O) \
369     obj/vector_class$(O) \
370     obj/force_globals$(O) \
371     obj/atype_module$(O) \
372 gezelter 1224 obj/switch_module$(O) \
373 gezelter 747 obj/neighborLists$(O)
374    
375     obj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
376     obj/definitions_module$(O) \
377     obj/atype_module$(O) \
378 gezelter 1224 obj/switch_module$(O) \
379 gezelter 747 obj/simulation_module$(O) \
380     obj/vector_class$(O) \
381     obj/force_globals$(O)
382    
383     obj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
384     obj/definitions_module$(O) \
385     obj/vector_class$(O) \
386     obj/atype_module$(O) \
387     obj/simulation_module$(O) \
388 gezelter 1224 obj/status_module$(O) \
389 gezelter 747 obj/force_globals$(O)
390    
391     obj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
392     obj/definitions_module$(O) \
393     obj/atype_module$(O) \
394     obj/simulation_module$(O) \
395     obj/force_globals$(O) \
396 gezelter 1224 obj/status_module$(O) \
397 gezelter 747 obj/vector_class$(O)
398    
399 gezelter 940 obj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
400     obj/definitions_module$(O) \
401     obj/atype_module$(O) \
402     obj/simulation_module$(O) \
403     obj/force_globals$(O) \
404 gezelter 1224 obj/status_module$(O) \
405 gezelter 940 obj/vector_class$(O)
406    
407 gezelter 747 obj/do_Forces$(O): ./do_Forces.F90 \
408     obj/definitions_module$(O) \
409     obj/atype_module$(O) \
410 gezelter 1150 obj/switch_module$(O) \
411 gezelter 747 obj/simulation_module$(O) \
412     obj/neighborLists$(O) \
413     obj/calc_LJ_FF$(O) \
414     obj/calc_sticky_pair$(O) \
415     obj/calc_dipole_dipole$(O) \
416     obj/calc_reaction_field$(O) \
417     obj/calc_gb$(O) \
418     obj/force_globals$(O) \
419 gezelter 1224 obj/status_module$(O) \
420 gezelter 747 obj/vector_class$(O)
421    
422     obj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
423     obj/definitions_module$(O) \
424     obj/atype_module$(O) \
425     obj/calc_LJ_FF$(O) \
426     obj/calc_eam$(O) \
427     obj/calc_dipole_dipole$(O) \
428     obj/calc_reaction_field$(O) \
429 gezelter 1224 obj/switch_module$(O) \
430 gezelter 747 obj/do_Forces$(O)
431    
432     obj/wrappers$(O): ./wrappers.F90 \
433     obj/definitions_module$(O) \
434     obj/atype_module$(O) \
435     obj/simulation_module$(O) \
436     obj/calc_sticky_pair$(O) \
437     obj/calc_gb$(O) \
438     obj/do_Forces$(O) \
439     obj/notifyCutoffs$(O)
440    
441 mmeineke 891 obj/timing$(O): ./timing.F90 \
442     obj/do_Forces$(O)
443 gezelter 747
444    
445    
446     #MPI dependencies:
447    
448     MPIobj/definitions_module$(O): ./definitions_module.F90
449    
450     MPIobj/vector_class$(O): ./vector_class.F90
451    
452     MPIobj/status_module$(O): ./status_module.F90
453    
454 chuckv 858 MPIobj/oopseMPI_module$(O): ./oopseMPI_module.F90
455 gezelter 747
456 chuckv 858 MPIobj/mpiSimulation_module$(O): ./mpiSimulation_module.F90 \
457     MPIobj/oopseMPI_module$(O)
458    
459 gezelter 747 MPIobj/force_globals$(O): ./force_globals.F90 \
460     MPIobj/mpiSimulation_module$(O) \
461     MPIobj/definitions_module$(O)
462    
463     MPIobj/neighborLists$(O): ./neighborLists.F90 \
464     MPIobj/definitions_module$(O) \
465     MPIobj/mpiSimulation_module$(O)
466    
467     MPIobj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
468     MPIobj/definitions_module$(O) \
469     MPIobj/simulation_module$(O) \
470     MPIobj/mpiSimulation_module$(O) \
471     MPIobj/force_globals$(O)
472    
473     MPIobj/calc_gb$(O): ./calc_gb.F90 \
474     MPIobj/definitions_module$(O) \
475     MPIobj/simulation_module$(O) \
476     MPIobj/mpiSimulation_module$(O) \
477     MPIobj/force_globals$(O)
478    
479     MPIobj/calc_eam$(O): ./calc_eam.F90 \
480     MPIobj/definitions_module$(O) \
481     MPIobj/atype_module$(O) \
482     MPIobj/simulation_module$(O) \
483     MPIobj/mpiSimulation_module$(O) \
484     MPIobj/vector_class$(O) \
485     MPIobj/force_globals$(O) \
486     MPIobj/status_module$(O)
487    
488     MPIobj/atype_module$(O): ./atype_module.F90 \
489     MPIobj/definitions_module$(O) \
490     MPIobj/vector_class$(O)
491    
492     MPIobj/simulation_module$(O): ./simulation_module.F90 \
493     MPIobj/definitions_module$(O) \
494     MPIobj/atype_module$(O) \
495     MPIobj/vector_class$(O) \
496     MPIobj/force_globals$(O) \
497     MPIobj/mpiSimulation_module$(O) \
498     MPIobj/atype_module$(O) \
499 gezelter 1224 MPIobj/switch_module$(O) \
500 gezelter 747 MPIobj/neighborLists$(O)
501    
502     MPIobj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
503     MPIobj/definitions_module$(O) \
504     MPIobj/atype_module$(O) \
505 gezelter 1224 MPIobj/switch_module$(O) \
506 gezelter 747 MPIobj/simulation_module$(O) \
507     MPIobj/mpiSimulation_module$(O) \
508     MPIobj/atype_module$(O) \
509     MPIobj/vector_class$(O) \
510     MPIobj/force_globals$(O)
511    
512     MPIobj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
513     MPIobj/definitions_module$(O) \
514     MPIobj/atype_module$(O) \
515     MPIobj/simulation_module$(O) \
516     MPIobj/mpiSimulation_module$(O) \
517     MPIobj/vector_class$(O) \
518     MPIobj/atype_module$(O) \
519 gezelter 1224 MPIobj/status_module$(O) \
520 gezelter 747 MPIobj/force_globals$(O)
521    
522     MPIobj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
523     MPIobj/definitions_module$(O) \
524     MPIobj/atype_module$(O) \
525     MPIobj/simulation_module$(O) \
526     MPIobj/mpiSimulation_module$(O) \
527     MPIobj/force_globals$(O) \
528 gezelter 1224 MPIobj/status_module$(O) \
529 gezelter 747 MPIobj/vector_class$(O)
530    
531 gezelter 940 MPIobj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
532     MPIobj/definitions_module$(O) \
533     MPIobj/atype_module$(O) \
534     MPIobj/simulation_module$(O) \
535     MPIobj/mpiSimulation_module$(O) \
536     MPIobj/force_globals$(O) \
537 gezelter 1224 MPIobj/status_module$(O) \
538 gezelter 940 MPIobj/vector_class$(O)
539    
540 gezelter 747 MPIobj/do_Forces$(O): ./do_Forces.F90 \
541     MPIobj/definitions_module$(O) \
542     MPIobj/mpiSimulation_module$(O) \
543     MPIobj/atype_module$(O) \
544 gezelter 1150 MPIobj/switch_module$(O) \
545 gezelter 747 MPIobj/simulation_module$(O) \
546     MPIobj/neighborLists$(O) \
547     MPIobj/calc_LJ_FF$(O) \
548     MPIobj/calc_sticky_pair$(O) \
549     MPIobj/calc_dipole_dipole$(O) \
550     MPIobj/calc_reaction_field$(O) \
551     MPIobj/calc_gb$(O) \
552     MPIobj/force_globals$(O) \
553 gezelter 1224 MPIobj/status_module$(O) \
554 gezelter 747 MPIobj/vector_class$(O)
555    
556     MPIobj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
557     MPIobj/definitions_module$(O) \
558     MPIobj/atype_module$(O) \
559     MPIobj/calc_LJ_FF$(O) \
560     MPIobj/calc_eam$(O) \
561     MPIobj/calc_dipole_dipole$(O) \
562     MPIobj/calc_reaction_field$(O) \
563 gezelter 1224 MPIobj/switch_module$(O) \
564 gezelter 747 MPIobj/do_Forces$(O)
565    
566     MPIobj/wrappers$(O): ./wrappers.F90 \
567     MPIobj/definitions_module$(O) \
568     MPIobj/mpiSimulation_module$(O) \
569     MPIobj/atype_module$(O) \
570     MPIobj/simulation_module$(O) \
571     MPIobj/calc_sticky_pair$(O) \
572     MPIobj/calc_gb$(O) \
573     MPIobj/do_Forces$(O) \
574     MPIobj/notifyCutoffs$(O)
575    
576 mmeineke 891 MPIobj/timing$(O): ./timing.F90 \
577     MPIobj/do_Forces$(O) \
578     MPIobj/mpiSimulation_module$(O)