ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
Revision: 1233
Committed: Fri Jun 4 02:38:23 2004 UTC (20 years, 1 month ago) by gezelter
File size: 13355 byte(s)
Log Message:
Config changes for fortran access to SimError

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 gezelter 1224 $(DIR)/ZConsWriter.cpp
220 gezelter 747
221     F90_FILES= \
222 gezelter 1224 $(DIR)/atype_module.F90 \
223     $(DIR)/calc_charge_charge.F90 \
224 gezelter 747 $(DIR)/calc_dipole_dipole.F90 \
225 gezelter 1224 $(DIR)/calc_eam.F90 \
226     $(DIR)/calc_gb.F90 \
227     $(DIR)/calc_LJ_FF.F90 \
228 gezelter 747 $(DIR)/calc_reaction_field.F90 \
229     $(DIR)/calc_sticky_pair.F90 \
230 gezelter 1224 $(DIR)/definitions_module.F90 \
231 gezelter 747 $(DIR)/do_Forces.F90 \
232     $(DIR)/force_globals.F90 \
233     $(DIR)/mpiSimulation_module.F90 \
234 gezelter 1224 $(DIR)/neighborLists.F90 \
235 chuckv 858 $(DIR)/notifyCutoffs.F90 \
236 gezelter 1224 $(DIR)/oopseMPI_module.F90 \
237     $(DIR)/simulation_module.F90 \
238     $(DIR)/status_module.F90 \
239     $(DIR)/switch_module.F90 \
240 gezelter 940 $(DIR)/timing.F90 \
241 gezelter 1224 $(DIR)/vector_class.F90 \
242     $(DIR)/wrappers.F90
243 gezelter 747
244     DIR:=.
245     C_SRCS := $(C_FILES)
246     CXX_SRCS := $(CXX_FILES)
247     F90_SRCS := $(F90_FILES)
248     SRCS := $(C_SRCS) $(CXX_SRCS) $(F90_SRCS)
249    
250     DIR:=obj
251     C_OBJS := $(C_FILES:.c=.o)
252     CXX_OBJS := $(CXX_FILES:.cpp=.o)
253     F90_OBJS := $(F90_FILES:.F90=.o)
254     OBJS := $(C_OBJS) $(CXX_OBJS) $(F90_OBJS)
255    
256     DIR:=MPIobj
257     C_MPIOBJS := $(C_FILES:.c=.o)
258     CXX_MPIOBJS := $(CXX_FILES:.cpp=.o)
259     F90_MPIOBJS := $(F90_FILES:.F90=.o)
260     MPIOBJS := $(C_MPIOBJS) $(CXX_MPIOBJS) $(F90_MPIOBJS)
261    
262     LIBSUBDIRS = \
263     obj \
264     MPIobj
265    
266     # Possible make targets:
267    
268 gezelter 1233 ifeq ($(USE_MPI),yes)
269 gezelter 747 all: libmdtools.a libmdtools_MPI.a
270 gezelter 1233 else
271     all: libmdtools.a
272     endif
273 gezelter 747
274 gezelter 1233
275 gezelter 747 libmdtools.a: $(OBJS)
276     $(RM) $@
277     $(AR) cr $@ $(OBJS)
278     $(RANLIB) $@
279    
280     libmdtools_MPI.a: $(MPIOBJS)
281     $(RM) $@
282     $(AR) cr $@ $(MPIOBJS)
283     $(RANLIB) $@
284    
285     .PHONY : clean
286    
287     clean : dummy
288     for i in $(LIBSUBDIRS); do \
289     (cd $$i; $(RM) *.o *.mod) || exit 1; \
290     done
291     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
292    
293     distclean : dummy
294     for i in $(LIBSUBDIRS); do \
295     (cd $$i; $(RM) *.o *.mod) || exit 1; \
296     done
297     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
298    
299     depend : Make.dep
300    
301     Make.dep :
302     echo "Only C dependencies are made automagically!"
303     echo "# DO NOT DELETE THIS LINE - used by make depend" > Make.dep
304     $(CC) $(DEPFLAGS) -MM $(C_SRCS) \
305     | sed 's/\.o:/\$$(O)\ :/g' > Make.temp
306     $(CXX) $(DEPFLAGS) -MM $(CXX_SRCS) \
307     | sed 's/\.o:/\$$(O)\ :/g' >> Make.temp
308     cat Make.temp | sed 's/^[a-zA-Z0-9]/obj\/&/g' >> Make.dep
309     cat Make.temp | sed 's/^[a-zA-Z0-9]/MPIobj\/&/g' >> Make.dep
310     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d obj -f ./Make.ftemp -h *.F90
311     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d MPIobj -f ./Make.ftemp -h *.F90
312     # cat Make.ftemp | sed 's/\.o:/\$$(O)\ :/g' >> Make.dep
313     $(RM) Make.ftemp Make.temp
314    
315     install : dummy
316    
317     links : dummy
318    
319     tests : dummy
320    
321     dummy :
322    
323     include Make.dep
324    
325     obj/definitions_module$(O): ./definitions_module.F90
326    
327     obj/vector_class$(O): ./vector_class.F90
328    
329     obj/status_module$(O): ./status_module.F90
330    
331     obj/force_globals$(O): ./force_globals.F90 \
332     obj/definitions_module$(O)
333    
334     obj/neighborLists$(O): ./neighborLists.F90 \
335     obj/definitions_module$(O)
336    
337     obj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
338     obj/definitions_module$(O) \
339     obj/simulation_module$(O) \
340     obj/force_globals$(O)
341    
342     obj/calc_eam$(O): ./calc_eam.F90 \
343     obj/definitions_module$(O) \
344     obj/atype_module$(O) \
345     obj/simulation_module$(O) \
346     obj/vector_class$(O) \
347     obj/force_globals$(O) \
348     obj/status_module$(O)
349    
350     obj/calc_gb$(O): ./calc_gb.F90 \
351     obj/definitions_module$(O) \
352     obj/simulation_module$(O) \
353     obj/force_globals$(O)
354    
355     obj/atype_module$(O): ./atype_module.F90 \
356     obj/definitions_module$(O) \
357     obj/vector_class$(O)
358    
359     obj/simulation_module$(O): ./simulation_module.F90 \
360     obj/definitions_module$(O) \
361     obj/vector_class$(O) \
362     obj/force_globals$(O) \
363     obj/atype_module$(O) \
364 gezelter 1224 obj/switch_module$(O) \
365 gezelter 747 obj/neighborLists$(O)
366    
367     obj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
368     obj/definitions_module$(O) \
369     obj/atype_module$(O) \
370 gezelter 1224 obj/switch_module$(O) \
371 gezelter 747 obj/simulation_module$(O) \
372     obj/vector_class$(O) \
373     obj/force_globals$(O)
374    
375     obj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
376     obj/definitions_module$(O) \
377     obj/vector_class$(O) \
378     obj/atype_module$(O) \
379     obj/simulation_module$(O) \
380 gezelter 1224 obj/status_module$(O) \
381 gezelter 747 obj/force_globals$(O)
382    
383     obj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
384     obj/definitions_module$(O) \
385     obj/atype_module$(O) \
386     obj/simulation_module$(O) \
387     obj/force_globals$(O) \
388 gezelter 1224 obj/status_module$(O) \
389 gezelter 747 obj/vector_class$(O)
390    
391 gezelter 940 obj/calc_charge_charge$(O): ./calc_charge_charge.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 940 obj/vector_class$(O)
398    
399 gezelter 747 obj/do_Forces$(O): ./do_Forces.F90 \
400     obj/definitions_module$(O) \
401     obj/atype_module$(O) \
402 gezelter 1150 obj/switch_module$(O) \
403 gezelter 747 obj/simulation_module$(O) \
404     obj/neighborLists$(O) \
405     obj/calc_LJ_FF$(O) \
406     obj/calc_sticky_pair$(O) \
407     obj/calc_dipole_dipole$(O) \
408     obj/calc_reaction_field$(O) \
409     obj/calc_gb$(O) \
410     obj/force_globals$(O) \
411 gezelter 1224 obj/status_module$(O) \
412 gezelter 747 obj/vector_class$(O)
413    
414     obj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
415     obj/definitions_module$(O) \
416     obj/atype_module$(O) \
417     obj/calc_LJ_FF$(O) \
418     obj/calc_eam$(O) \
419     obj/calc_dipole_dipole$(O) \
420     obj/calc_reaction_field$(O) \
421 gezelter 1224 obj/switch_module$(O) \
422 gezelter 747 obj/do_Forces$(O)
423    
424     obj/wrappers$(O): ./wrappers.F90 \
425     obj/definitions_module$(O) \
426     obj/atype_module$(O) \
427     obj/simulation_module$(O) \
428     obj/calc_sticky_pair$(O) \
429     obj/calc_gb$(O) \
430     obj/do_Forces$(O) \
431     obj/notifyCutoffs$(O)
432    
433 mmeineke 891 obj/timing$(O): ./timing.F90 \
434     obj/do_Forces$(O)
435 gezelter 747
436    
437    
438     #MPI dependencies:
439    
440     MPIobj/definitions_module$(O): ./definitions_module.F90
441    
442     MPIobj/vector_class$(O): ./vector_class.F90
443    
444     MPIobj/status_module$(O): ./status_module.F90
445    
446 chuckv 858 MPIobj/oopseMPI_module$(O): ./oopseMPI_module.F90
447 gezelter 747
448 chuckv 858 MPIobj/mpiSimulation_module$(O): ./mpiSimulation_module.F90 \
449     MPIobj/oopseMPI_module$(O)
450    
451 gezelter 747 MPIobj/force_globals$(O): ./force_globals.F90 \
452     MPIobj/mpiSimulation_module$(O) \
453     MPIobj/definitions_module$(O)
454    
455     MPIobj/neighborLists$(O): ./neighborLists.F90 \
456     MPIobj/definitions_module$(O) \
457     MPIobj/mpiSimulation_module$(O)
458    
459     MPIobj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
460     MPIobj/definitions_module$(O) \
461     MPIobj/simulation_module$(O) \
462     MPIobj/mpiSimulation_module$(O) \
463     MPIobj/force_globals$(O)
464    
465     MPIobj/calc_gb$(O): ./calc_gb.F90 \
466     MPIobj/definitions_module$(O) \
467     MPIobj/simulation_module$(O) \
468     MPIobj/mpiSimulation_module$(O) \
469     MPIobj/force_globals$(O)
470    
471     MPIobj/calc_eam$(O): ./calc_eam.F90 \
472     MPIobj/definitions_module$(O) \
473     MPIobj/atype_module$(O) \
474     MPIobj/simulation_module$(O) \
475     MPIobj/mpiSimulation_module$(O) \
476     MPIobj/vector_class$(O) \
477     MPIobj/force_globals$(O) \
478     MPIobj/status_module$(O)
479    
480     MPIobj/atype_module$(O): ./atype_module.F90 \
481     MPIobj/definitions_module$(O) \
482     MPIobj/vector_class$(O)
483    
484     MPIobj/simulation_module$(O): ./simulation_module.F90 \
485     MPIobj/definitions_module$(O) \
486     MPIobj/atype_module$(O) \
487     MPIobj/vector_class$(O) \
488     MPIobj/force_globals$(O) \
489     MPIobj/mpiSimulation_module$(O) \
490     MPIobj/atype_module$(O) \
491 gezelter 1224 MPIobj/switch_module$(O) \
492 gezelter 747 MPIobj/neighborLists$(O)
493    
494     MPIobj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
495     MPIobj/definitions_module$(O) \
496     MPIobj/atype_module$(O) \
497 gezelter 1224 MPIobj/switch_module$(O) \
498 gezelter 747 MPIobj/simulation_module$(O) \
499     MPIobj/mpiSimulation_module$(O) \
500     MPIobj/atype_module$(O) \
501     MPIobj/vector_class$(O) \
502     MPIobj/force_globals$(O)
503    
504     MPIobj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
505     MPIobj/definitions_module$(O) \
506     MPIobj/atype_module$(O) \
507     MPIobj/simulation_module$(O) \
508     MPIobj/mpiSimulation_module$(O) \
509     MPIobj/vector_class$(O) \
510     MPIobj/atype_module$(O) \
511 gezelter 1224 MPIobj/status_module$(O) \
512 gezelter 747 MPIobj/force_globals$(O)
513    
514     MPIobj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
515     MPIobj/definitions_module$(O) \
516     MPIobj/atype_module$(O) \
517     MPIobj/simulation_module$(O) \
518     MPIobj/mpiSimulation_module$(O) \
519     MPIobj/force_globals$(O) \
520 gezelter 1224 MPIobj/status_module$(O) \
521 gezelter 747 MPIobj/vector_class$(O)
522    
523 gezelter 940 MPIobj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
524     MPIobj/definitions_module$(O) \
525     MPIobj/atype_module$(O) \
526     MPIobj/simulation_module$(O) \
527     MPIobj/mpiSimulation_module$(O) \
528     MPIobj/force_globals$(O) \
529 gezelter 1224 MPIobj/status_module$(O) \
530 gezelter 940 MPIobj/vector_class$(O)
531    
532 gezelter 747 MPIobj/do_Forces$(O): ./do_Forces.F90 \
533     MPIobj/definitions_module$(O) \
534     MPIobj/mpiSimulation_module$(O) \
535     MPIobj/atype_module$(O) \
536 gezelter 1150 MPIobj/switch_module$(O) \
537 gezelter 747 MPIobj/simulation_module$(O) \
538     MPIobj/neighborLists$(O) \
539     MPIobj/calc_LJ_FF$(O) \
540     MPIobj/calc_sticky_pair$(O) \
541     MPIobj/calc_dipole_dipole$(O) \
542     MPIobj/calc_reaction_field$(O) \
543     MPIobj/calc_gb$(O) \
544     MPIobj/force_globals$(O) \
545 gezelter 1224 MPIobj/status_module$(O) \
546 gezelter 747 MPIobj/vector_class$(O)
547    
548     MPIobj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
549     MPIobj/definitions_module$(O) \
550     MPIobj/atype_module$(O) \
551     MPIobj/calc_LJ_FF$(O) \
552     MPIobj/calc_eam$(O) \
553     MPIobj/calc_dipole_dipole$(O) \
554     MPIobj/calc_reaction_field$(O) \
555 gezelter 1224 MPIobj/switch_module$(O) \
556 gezelter 747 MPIobj/do_Forces$(O)
557    
558     MPIobj/wrappers$(O): ./wrappers.F90 \
559     MPIobj/definitions_module$(O) \
560     MPIobj/mpiSimulation_module$(O) \
561     MPIobj/atype_module$(O) \
562     MPIobj/simulation_module$(O) \
563     MPIobj/calc_sticky_pair$(O) \
564     MPIobj/calc_gb$(O) \
565     MPIobj/do_Forces$(O) \
566     MPIobj/notifyCutoffs$(O)
567    
568 mmeineke 891 MPIobj/timing$(O): ./timing.F90 \
569     MPIobj/do_Forces$(O) \
570     MPIobj/mpiSimulation_module$(O)