ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
Revision: 1224
Committed: Wed Jun 2 18:27:52 2004 UTC (20 years, 1 month ago) by gezelter
File size: 13359 byte(s)
Log Message:
formatting error messages, dependency fixes

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