ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
Revision: 1269
Committed: Fri Jun 11 19:24:21 2004 UTC (20 years ago) by gezelter
File size: 14088 byte(s)
Log Message:
Fixed dependency bug (we hope)

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 1237 $(DIR)/MatVec3.c
164 gezelter 747
165     CXX_FILES = \
166 gezelter 1224 $(DIR)/Atom.cpp \
167 gezelter 1269 $(DIR)/AtomVisitor.cpp \
168     $(DIR)/Bend.cpp \
169     $(DIR)/BendExtensions.cpp \
170     $(DIR)/Bond.cpp \
171     $(DIR)/BondExtensions.cpp \
172     $(DIR)/CallbackFunctor.cpp \
173     $(DIR)/CGFamilyMinimizer.cpp \
174     $(DIR)/CompositeVisitor.cpp \
175     $(DIR)/ConstraintAlgorithm.cpp \
176     $(DIR)/ConstraintElement.cpp \
177     $(DIR)/ConstraintManager.cpp \
178     $(DIR)/DirectionalAtom.cpp \
179     $(DIR)/DUFF.cpp \
180     $(DIR)/DumpReader.cpp \
181     $(DIR)/DumpWriter.cpp \
182     $(DIR)/EAM_FF.cpp \
183     $(DIR)/Euler3.cpp \
184     $(DIR)/Exclude.cpp \
185     $(DIR)/ForceFields.cpp \
186     $(DIR)/fortranWrappers.cpp \
187     $(DIR)/GenericData.cpp \
188     $(DIR)/GhostBend.cpp \
189     $(DIR)/InitializeFromFile.cpp \
190     $(DIR)/Integrator.cpp \
191     $(DIR)/LJFF.cpp \
192     $(DIR)/Mat3x3d.cpp \
193     $(DIR)/mdProfile.cpp \
194     $(DIR)/Molecule.cpp \
195     $(DIR)/mpiSimulation.cpp \
196     $(DIR)/NPT.cpp \
197     $(DIR)/NPTf.cpp \
198     $(DIR)/NPTi.cpp \
199     $(DIR)/NPTxyz.cpp \
200     $(DIR)/NVT.cpp \
201     $(DIR)/OOPSEMinimizer.cpp \
202     $(DIR)/OtherVisitor.cpp \
203     $(DIR)/PRCG.cpp \
204     $(DIR)/Quaternion.cpp \
205     $(DIR)/randomSPRNG.cpp \
206     $(DIR)/Rattle.cpp \
207     $(DIR)/Restraints.cpp \
208     $(DIR)/RigidBody.cpp \
209     $(DIR)/RigidBodyVisitor.cpp \
210     $(DIR)/Roll.cpp \
211     $(DIR)/SDMinimizer.cpp \
212     $(DIR)/Shake.cpp \
213     $(DIR)/ShakeMin.cpp \
214     $(DIR)/SimInfo.cpp \
215     $(DIR)/SimSetup.cpp \
216     $(DIR)/SimState.cpp \
217     $(DIR)/SkipList.cpp \
218     $(DIR)/StatWriter.cpp \
219     $(DIR)/StreamTokenizer.cpp \
220     $(DIR)/StuntDouble.cpp \
221     $(DIR)/Thermo.cpp \
222     $(DIR)/Torsion.cpp \
223     $(DIR)/TorsionExtensions.cpp \
224     $(DIR)/Utility.cpp \
225     $(DIR)/Vector3d.cpp \
226     $(DIR)/WATER.cpp \
227     $(DIR)/ZConsReader.cpp \
228     $(DIR)/ZConstraint.cpp \
229     $(DIR)/ZconsVisitor.cpp \
230     $(DIR)/ZConsWriter.cpp
231 gezelter 747
232     F90_FILES= \
233 gezelter 1224 $(DIR)/atype_module.F90 \
234     $(DIR)/calc_charge_charge.F90 \
235 gezelter 747 $(DIR)/calc_dipole_dipole.F90 \
236 gezelter 1224 $(DIR)/calc_eam.F90 \
237     $(DIR)/calc_gb.F90 \
238     $(DIR)/calc_LJ_FF.F90 \
239 gezelter 747 $(DIR)/calc_reaction_field.F90 \
240     $(DIR)/calc_sticky_pair.F90 \
241 gezelter 1224 $(DIR)/definitions_module.F90 \
242 gezelter 747 $(DIR)/do_Forces.F90 \
243     $(DIR)/force_globals.F90 \
244     $(DIR)/mpiSimulation_module.F90 \
245 gezelter 1224 $(DIR)/neighborLists.F90 \
246 chuckv 858 $(DIR)/notifyCutoffs.F90 \
247 gezelter 1224 $(DIR)/oopseMPI_module.F90 \
248     $(DIR)/simulation_module.F90 \
249     $(DIR)/status_module.F90 \
250     $(DIR)/switch_module.F90 \
251 gezelter 940 $(DIR)/timing.F90 \
252 gezelter 1224 $(DIR)/vector_class.F90 \
253     $(DIR)/wrappers.F90
254 gezelter 747
255     DIR:=.
256     C_SRCS := $(C_FILES)
257     CXX_SRCS := $(CXX_FILES)
258     F90_SRCS := $(F90_FILES)
259     SRCS := $(C_SRCS) $(CXX_SRCS) $(F90_SRCS)
260    
261     DIR:=obj
262     C_OBJS := $(C_FILES:.c=.o)
263     CXX_OBJS := $(CXX_FILES:.cpp=.o)
264     F90_OBJS := $(F90_FILES:.F90=.o)
265     OBJS := $(C_OBJS) $(CXX_OBJS) $(F90_OBJS)
266    
267     DIR:=MPIobj
268     C_MPIOBJS := $(C_FILES:.c=.o)
269     CXX_MPIOBJS := $(CXX_FILES:.cpp=.o)
270     F90_MPIOBJS := $(F90_FILES:.F90=.o)
271     MPIOBJS := $(C_MPIOBJS) $(CXX_MPIOBJS) $(F90_MPIOBJS)
272    
273     LIBSUBDIRS = \
274     obj \
275     MPIobj
276    
277     # Possible make targets:
278    
279 gezelter 1233 ifeq ($(USE_MPI),yes)
280 gezelter 747 all: libmdtools.a libmdtools_MPI.a
281 gezelter 1233 else
282     all: libmdtools.a
283     endif
284 gezelter 747
285 gezelter 1233
286 gezelter 747 libmdtools.a: $(OBJS)
287     $(RM) $@
288     $(AR) cr $@ $(OBJS)
289     $(RANLIB) $@
290    
291     libmdtools_MPI.a: $(MPIOBJS)
292     $(RM) $@
293     $(AR) cr $@ $(MPIOBJS)
294     $(RANLIB) $@
295    
296     .PHONY : clean
297    
298     clean : dummy
299     for i in $(LIBSUBDIRS); do \
300     (cd $$i; $(RM) *.o *.mod) || exit 1; \
301     done
302     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
303    
304     distclean : dummy
305     for i in $(LIBSUBDIRS); do \
306     (cd $$i; $(RM) *.o *.mod) || exit 1; \
307     done
308     $(RM) libmdtools.a libmdtools_MPI.a *.o *.mod *~ Make.temp Make.ftemp
309    
310     depend : Make.dep
311    
312     Make.dep :
313     echo "Only C dependencies are made automagically!"
314     echo "# DO NOT DELETE THIS LINE - used by make depend" > Make.dep
315     $(CC) $(DEPFLAGS) -MM $(C_SRCS) \
316     | sed 's/\.o:/\$$(O)\ :/g' > Make.temp
317     $(CXX) $(DEPFLAGS) -MM $(CXX_SRCS) \
318     | sed 's/\.o:/\$$(O)\ :/g' >> Make.temp
319     cat Make.temp | sed 's/^[a-zA-Z0-9]/obj\/&/g' >> Make.dep
320     cat Make.temp | sed 's/^[a-zA-Z0-9]/MPIobj\/&/g' >> Make.dep
321     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d obj -f ./Make.ftemp -h *.F90
322     # ../scripts/sfmakedepend -I $(MPI_F90_MODS) -d MPIobj -f ./Make.ftemp -h *.F90
323     # cat Make.ftemp | sed 's/\.o:/\$$(O)\ :/g' >> Make.dep
324     $(RM) Make.ftemp Make.temp
325    
326     install : dummy
327    
328     links : dummy
329    
330     tests : dummy
331    
332     dummy :
333    
334     include Make.dep
335    
336     obj/definitions_module$(O): ./definitions_module.F90
337    
338     obj/vector_class$(O): ./vector_class.F90
339    
340     obj/status_module$(O): ./status_module.F90
341    
342     obj/force_globals$(O): ./force_globals.F90 \
343     obj/definitions_module$(O)
344    
345     obj/neighborLists$(O): ./neighborLists.F90 \
346     obj/definitions_module$(O)
347    
348     obj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
349     obj/definitions_module$(O) \
350     obj/simulation_module$(O) \
351     obj/force_globals$(O)
352    
353     obj/calc_eam$(O): ./calc_eam.F90 \
354     obj/definitions_module$(O) \
355     obj/atype_module$(O) \
356     obj/simulation_module$(O) \
357     obj/vector_class$(O) \
358     obj/force_globals$(O) \
359     obj/status_module$(O)
360    
361     obj/calc_gb$(O): ./calc_gb.F90 \
362     obj/definitions_module$(O) \
363     obj/simulation_module$(O) \
364     obj/force_globals$(O)
365    
366     obj/atype_module$(O): ./atype_module.F90 \
367     obj/definitions_module$(O) \
368     obj/vector_class$(O)
369    
370     obj/simulation_module$(O): ./simulation_module.F90 \
371     obj/definitions_module$(O) \
372     obj/vector_class$(O) \
373     obj/force_globals$(O) \
374     obj/atype_module$(O) \
375 gezelter 1224 obj/switch_module$(O) \
376 gezelter 747 obj/neighborLists$(O)
377    
378     obj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
379     obj/definitions_module$(O) \
380     obj/atype_module$(O) \
381 gezelter 1224 obj/switch_module$(O) \
382 gezelter 747 obj/simulation_module$(O) \
383     obj/vector_class$(O) \
384     obj/force_globals$(O)
385    
386     obj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
387     obj/definitions_module$(O) \
388     obj/vector_class$(O) \
389     obj/atype_module$(O) \
390     obj/simulation_module$(O) \
391 gezelter 1224 obj/status_module$(O) \
392 gezelter 747 obj/force_globals$(O)
393    
394     obj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
395     obj/definitions_module$(O) \
396     obj/atype_module$(O) \
397     obj/simulation_module$(O) \
398     obj/force_globals$(O) \
399 gezelter 1224 obj/status_module$(O) \
400 gezelter 747 obj/vector_class$(O)
401    
402 gezelter 940 obj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
403     obj/definitions_module$(O) \
404     obj/atype_module$(O) \
405     obj/simulation_module$(O) \
406     obj/force_globals$(O) \
407 gezelter 1224 obj/status_module$(O) \
408 gezelter 940 obj/vector_class$(O)
409    
410 gezelter 747 obj/do_Forces$(O): ./do_Forces.F90 \
411     obj/definitions_module$(O) \
412     obj/atype_module$(O) \
413 gezelter 1150 obj/switch_module$(O) \
414 gezelter 747 obj/simulation_module$(O) \
415     obj/neighborLists$(O) \
416     obj/calc_LJ_FF$(O) \
417     obj/calc_sticky_pair$(O) \
418     obj/calc_dipole_dipole$(O) \
419     obj/calc_reaction_field$(O) \
420     obj/calc_gb$(O) \
421     obj/force_globals$(O) \
422 gezelter 1224 obj/status_module$(O) \
423 gezelter 747 obj/vector_class$(O)
424    
425     obj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
426     obj/definitions_module$(O) \
427     obj/atype_module$(O) \
428     obj/calc_LJ_FF$(O) \
429     obj/calc_eam$(O) \
430     obj/calc_dipole_dipole$(O) \
431     obj/calc_reaction_field$(O) \
432 gezelter 1224 obj/switch_module$(O) \
433 gezelter 747 obj/do_Forces$(O)
434    
435     obj/wrappers$(O): ./wrappers.F90 \
436     obj/definitions_module$(O) \
437     obj/atype_module$(O) \
438     obj/simulation_module$(O) \
439     obj/calc_sticky_pair$(O) \
440     obj/calc_gb$(O) \
441     obj/do_Forces$(O) \
442     obj/notifyCutoffs$(O)
443    
444 mmeineke 891 obj/timing$(O): ./timing.F90 \
445     obj/do_Forces$(O)
446 gezelter 747
447    
448    
449     #MPI dependencies:
450    
451     MPIobj/definitions_module$(O): ./definitions_module.F90
452    
453     MPIobj/vector_class$(O): ./vector_class.F90
454    
455     MPIobj/status_module$(O): ./status_module.F90
456    
457 chuckv 858 MPIobj/oopseMPI_module$(O): ./oopseMPI_module.F90
458 gezelter 747
459 chuckv 858 MPIobj/mpiSimulation_module$(O): ./mpiSimulation_module.F90 \
460     MPIobj/oopseMPI_module$(O)
461    
462 gezelter 747 MPIobj/force_globals$(O): ./force_globals.F90 \
463     MPIobj/mpiSimulation_module$(O) \
464     MPIobj/definitions_module$(O)
465    
466     MPIobj/neighborLists$(O): ./neighborLists.F90 \
467     MPIobj/definitions_module$(O) \
468     MPIobj/mpiSimulation_module$(O)
469    
470     MPIobj/calc_sticky_pair$(O): ./calc_sticky_pair.F90 \
471     MPIobj/definitions_module$(O) \
472     MPIobj/simulation_module$(O) \
473     MPIobj/mpiSimulation_module$(O) \
474     MPIobj/force_globals$(O)
475    
476     MPIobj/calc_gb$(O): ./calc_gb.F90 \
477     MPIobj/definitions_module$(O) \
478     MPIobj/simulation_module$(O) \
479     MPIobj/mpiSimulation_module$(O) \
480     MPIobj/force_globals$(O)
481    
482     MPIobj/calc_eam$(O): ./calc_eam.F90 \
483     MPIobj/definitions_module$(O) \
484     MPIobj/atype_module$(O) \
485     MPIobj/simulation_module$(O) \
486     MPIobj/mpiSimulation_module$(O) \
487     MPIobj/vector_class$(O) \
488     MPIobj/force_globals$(O) \
489     MPIobj/status_module$(O)
490    
491     MPIobj/atype_module$(O): ./atype_module.F90 \
492     MPIobj/definitions_module$(O) \
493     MPIobj/vector_class$(O)
494    
495     MPIobj/simulation_module$(O): ./simulation_module.F90 \
496     MPIobj/definitions_module$(O) \
497     MPIobj/atype_module$(O) \
498     MPIobj/vector_class$(O) \
499     MPIobj/force_globals$(O) \
500     MPIobj/mpiSimulation_module$(O) \
501     MPIobj/atype_module$(O) \
502 gezelter 1224 MPIobj/switch_module$(O) \
503 gezelter 747 MPIobj/neighborLists$(O)
504    
505     MPIobj/calc_LJ_FF$(O): ./calc_LJ_FF.F90 \
506     MPIobj/definitions_module$(O) \
507     MPIobj/atype_module$(O) \
508 gezelter 1224 MPIobj/switch_module$(O) \
509 gezelter 747 MPIobj/simulation_module$(O) \
510     MPIobj/mpiSimulation_module$(O) \
511     MPIobj/atype_module$(O) \
512     MPIobj/vector_class$(O) \
513     MPIobj/force_globals$(O)
514    
515     MPIobj/calc_reaction_field$(O): ./calc_reaction_field.F90 \
516     MPIobj/definitions_module$(O) \
517     MPIobj/atype_module$(O) \
518     MPIobj/simulation_module$(O) \
519     MPIobj/mpiSimulation_module$(O) \
520     MPIobj/vector_class$(O) \
521     MPIobj/atype_module$(O) \
522 gezelter 1224 MPIobj/status_module$(O) \
523 gezelter 747 MPIobj/force_globals$(O)
524    
525     MPIobj/calc_dipole_dipole$(O): ./calc_dipole_dipole.F90 \
526     MPIobj/definitions_module$(O) \
527     MPIobj/atype_module$(O) \
528     MPIobj/simulation_module$(O) \
529     MPIobj/mpiSimulation_module$(O) \
530     MPIobj/force_globals$(O) \
531 gezelter 1224 MPIobj/status_module$(O) \
532 gezelter 747 MPIobj/vector_class$(O)
533    
534 gezelter 940 MPIobj/calc_charge_charge$(O): ./calc_charge_charge.F90 \
535     MPIobj/definitions_module$(O) \
536     MPIobj/atype_module$(O) \
537     MPIobj/simulation_module$(O) \
538     MPIobj/mpiSimulation_module$(O) \
539     MPIobj/force_globals$(O) \
540 gezelter 1224 MPIobj/status_module$(O) \
541 gezelter 940 MPIobj/vector_class$(O)
542    
543 gezelter 747 MPIobj/do_Forces$(O): ./do_Forces.F90 \
544     MPIobj/definitions_module$(O) \
545     MPIobj/mpiSimulation_module$(O) \
546     MPIobj/atype_module$(O) \
547 gezelter 1150 MPIobj/switch_module$(O) \
548 gezelter 747 MPIobj/simulation_module$(O) \
549     MPIobj/neighborLists$(O) \
550     MPIobj/calc_LJ_FF$(O) \
551     MPIobj/calc_sticky_pair$(O) \
552     MPIobj/calc_dipole_dipole$(O) \
553     MPIobj/calc_reaction_field$(O) \
554     MPIobj/calc_gb$(O) \
555     MPIobj/force_globals$(O) \
556 gezelter 1224 MPIobj/status_module$(O) \
557 gezelter 747 MPIobj/vector_class$(O)
558    
559     MPIobj/notifyCutoffs$(O): ./notifyCutoffs.F90 \
560     MPIobj/definitions_module$(O) \
561     MPIobj/atype_module$(O) \
562     MPIobj/calc_LJ_FF$(O) \
563     MPIobj/calc_eam$(O) \
564     MPIobj/calc_dipole_dipole$(O) \
565     MPIobj/calc_reaction_field$(O) \
566 gezelter 1224 MPIobj/switch_module$(O) \
567 gezelter 747 MPIobj/do_Forces$(O)
568    
569     MPIobj/wrappers$(O): ./wrappers.F90 \
570     MPIobj/definitions_module$(O) \
571     MPIobj/mpiSimulation_module$(O) \
572     MPIobj/atype_module$(O) \
573     MPIobj/simulation_module$(O) \
574     MPIobj/calc_sticky_pair$(O) \
575     MPIobj/calc_gb$(O) \
576     MPIobj/do_Forces$(O) \
577     MPIobj/notifyCutoffs$(O)
578    
579 mmeineke 891 MPIobj/timing$(O): ./timing.F90 \
580     MPIobj/do_Forces$(O) \
581     MPIobj/mpiSimulation_module$(O)