ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/Makefile.in
Revision: 1237
Committed: Fri Jun 4 14:35:59 2004 UTC (20 years, 3 months ago) by gezelter
File size: 13555 byte(s)
Log Message:
Unifying the error handlers

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