ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-2.0/make/Makefile.in
(Generate patch)

Comparing trunk/OOPSE-2.0/make/Makefile.in (file contents):
Revision 1514 by tim, Thu Sep 30 15:41:35 2004 UTC vs.
Revision 1635 by chrisfen, Fri Oct 22 22:53:40 2004 UTC

# Line 34 | Line 34 | IS_UNIX=1
34   #
35   #---------------------------------------------------------------------------
36   IS_UNIX=1
37 < #packages to be made
38 < Packages = \
37 >
38 > #packages containing libraries
39 > PackageLibs = \
40          utils \
41          math \
42          types \
# Line 50 | Line 51 | Packages = \
51          constraints \
52          profiling \
53          restraints \
54 +
55 + #packages containing applications
56 + Applications = \
57          applications/oopse \
58          applications/dump2Xyz \
59 <        applications/simpleBuilder \
59 >        applications/simpleBuilder
60  
61 < #packages contain libraries
62 < PackageLibs = \
63 <        utils \
64 <        math \
65 <        types \
66 <        primitives \
67 <        visitors \
68 <        UseTheForce/DarkSide \
69 <        UseTheForce \
70 <        brains \
71 <        io \
72 <        integrators \
73 <        minimizers \
70 <        constraints \
71 <        profiling \
72 <        restraints \
61 > Samples = \
62 >        samples/argon \
63 >        samples/water/dimer \
64 >        samples/water/spce \
65 >        samples/water/ssd \
66 >        samples/water/ssde \
67 >        samples/water/tip3p_ice \
68 >        samples/water/tip4p \
69 >        samples/lipid \
70 >        samples/alkane \
71 >        samples/minimizer \
72 >        samples/metals \
73 >        samples/zcons \
74  
75   IncludeDirs = \
76 <        /usr/include \
77 <        /usr/local/include
76 >        @SPRNG_INC_DIR@ \
77 >        @MPI_INC_DIR@
78  
79   LibraryDirs = \
80 <        /usr/lib \
81 <        /usr/local/mpich/lib \
81 <        /usr/local/lib \
82 <        /usr/local/intel/compiler80/lib \
80 >        @SPRNG_LIB_DIR@ \
81 >        @MPI_LIB_DIR@
82  
83   Libraries = \
84 <        mpich \
85 <        sprng \
86 <        ifcore \
84 >        @SPRNG_LIB@ \
85 >        @MPI_LIB@ \
86 >        @MPI_F90_LIB@
87  
88 + OopseHome       = @OOPSE_HOME@
89 + ForceParamDir   = $(OopseHome)/share/forceFields
90 + SampleSimDir    = $(OopseHome)/share/samples
91 + InstallBinDir   = $(OopseHome)/bin
92 + DocDir          = $(OopseHome)/doc
93 + FrcDeclare      = -DFRC_PATH="$(ForceParamDir)"
94 + F90Declare      = -D__FORTRAN90
95 + ParallelDeclare = -DIS_MPI
96 + UseMPI          = @USE_MPI@
97 + ModuleCase      = @F90_MODULE_NAMES@
98 + ModSuffix       = @MOD@
99 + LinkOptions = \
100 +        @F90LIBS@
101 +
102 + ParallelLinkOptions = \
103 +        @F90LIBS@
104 +
105 +
106   #---------------------------------------------------------------------------
107   #
108   #  Directories
# Line 100 | Line 117 | CurrentDir        = $(CURDIR)
117   BinDir            = $(DEV_ROOT)/bin
118   DocsDir           = $(DEV_ROOT)/docs
119   CurrentDir        = $(CURDIR)
120 + CombinedStaticLib = $(LibDir)/libOOPSE.a
121 + CombinedParallelStaticLib = $(LibDir)/libOOPSE_MPI.a
122  
123   ifdef Source
124   #get the relative path of current package to source directory
# Line 114 | Line 133 | PackageList              = $(Packages) $(JavaPackages)
133   PackageParallelTargetDir = $(ParallelTargetDir)
134   JavaMainClass            = $(subst /,.,$(Package)).$(Main)
135   else
136 < PackageList              = $(Packages) $(JavaPackages)
136 > PackageList              = $(PackageLibs) $(JavaPackages) $(Applications)
137   endif
138  
139   PackageListLoop          = $(patsubst %,$(SourceDir)/%/.loop,$(PackageList))
# Line 165 | Line 184 | ObjectFiles            = $(CFiles:%.c=        $(Packag
184   JniHeaders             = $(JniSource:%.java=  $(PackageSourceDir)/%.h)
185   ObjectFiles            = $(CFiles:%.c=        $(PackageTargetDir)/%.o)\
186                           $(CppFiles:%.cpp=    $(PackageTargetDir)/%.o)\
187 <                                     $(FortranFiles:%.f=  $(PackageTargetDir)/%.o)\
188 <                                     $(F90Files:%.F90=    $(PackageTargetDir)/%.o)\
189 <                                     $(LexFiles:%.l=      $(PackageTargetDir)/%.o)\
190 <                                     $(YaccFiles:%.y=     $(PackageTargetDir)/%.o)
187 >                         $(FortranFiles:%.f=  $(PackageTargetDir)/%.o)\
188 >                         $(F90Files:%.F90=    $(PackageTargetDir)/%.o)\
189 >                         $(LexFiles:%.l=      $(PackageTargetDir)/%.o)\
190 >                         $(YaccFiles:%.y=     $(PackageTargetDir)/%.o)
191   ParallelObjectFiles    = $(CFiles:%.c=        $(PackageParallelTargetDir)/%.o)\
192 <                                     $(CppFiles:%.cpp=    $(PackageParallelTargetDir)/%.o)\
193 <                                     $(FortranFiles:%.f=  $(PackageParallelTargetDir)/%.o)\
194 <                                     $(F90Files:%.F90=    $(PackageParallelTargetDir)/%.o)\
195 <                                     $(LexFiles:%.l=      $(PackageParallelTargetDir)/%.o)\
196 <                                     $(YaccFiles:%.y=     $(PackageParallelTargetDir)/%.o)
192 >                         $(CppFiles:%.cpp=    $(PackageParallelTargetDir)/%.o)\
193 >                         $(FortranFiles:%.f=  $(PackageParallelTargetDir)/%.o)\
194 >                         $(F90Files:%.F90=    $(PackageParallelTargetDir)/%.o)\
195 >                         $(LexFiles:%.l=      $(PackageParallelTargetDir)/%.o)\
196 >                         $(YaccFiles:%.y=     $(PackageParallelTargetDir)/%.o)
197  
198   DerivedSource          = $(YaccFiles:%.y=    %.h) \
199 <                               $(YaccFiles:%.y=    %.c) \
200 <                               $(LexFiles:%.l=     %.c)
199 >                         $(YaccFiles:%.y=    %.c) \
200 >                         $(LexFiles:%.l=     %.c)
201  
202   DerivedCFiles          = $(YaccFiles:%.y=    %.c) \
203 <                               $(LexFiles:%.l=     %.c)
203 >                         $(LexFiles:%.l=     %.c)
204  
205   OtherTargetFiles       = $(OtherSourceFiles:%=$(PackageTargetDir)/%)
206  
# Line 200 | Line 219 | ifneq  "$(words $(ObjectFiles) $(ParallelObjectFiles))
219      Executable             = $(BinDir)/$(Main)
220      ParallelExecutable     = $(BinDir)/$(Main)_MPI
221    else
222 <    SharedLibrary          = $(LibDir)/lib$(subst /,,$(Package)).so
223 <    StaticLibrary          = $(LibDir)/lib$(subst /,,$(Package)).a
224 <    ParallelSharedLibrary  = $(LibDir)/lib$(subst /,,$(Package))_MPI.so
225 <    ParallelStaticLibrary  = $(LibDir)/lib$(subst /,,$(Package))_MPI.a
222 >    SharedLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.so
223 >    StaticLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_UP.a
224 >    ParallelSharedLibrary  = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.so
225 >    ParallelStaticLibrary  = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package)))_MPI.a
226    endif
227   endif
228 +
229   #
230   # Misc
231   #
# Line 213 | Line 233 | LocalLibs        = $(subst /,,$(PackageLibs))
233   JavaPackageNames = $(subst /,.,$(JavaPackages))
234   IncludePath      = -I$(SourceDir) $(IncludeDirs:%=-I%)
235   LibDirs          = -L$(LibDir)    $(LibraryDirs:%=-L%)
236 < LocalLibs        = $(subst /,,$(PackageLibs))
237 < LibList          = $(LocalLibs:%=-l%) $(Libraries:%=-l%)
236 > LocalLibs        = $(subst /,,$(patsubst %, oopse_%_UP, $(PackageLibs)))
237 > ParallelLocalLibs= $(subst /,,$(patsubst %, oopse_%_MPI, $(PackageLibs)))
238 > LibList          = $(LocalLibs:%=-l%) $(Libraries)
239 > LibNames         = $(LocalLibs:%=$(LibDir)/lib%.a)
240 > ParallelLibList  = $(ParallelLocalLibs:%=-l%) $(Libraries)
241 > ParallelLibNames = $(ParallelLocalLibs:%=$(LibDir)/lib%.a)
242  
243  
244   #---------------------------------------------------------------------------
# Line 229 | Line 253 | Install                = @INSTALL@
253   CppCompiler            = @CXX@
254   Linker                 = @CXX@
255   MakeDepend             = makedepend
256 < Install                = @INSTALL@
256 > INSTALL                = @INSTALL@
257   InstallProgram         = @INSTALL_PROGRAM@
258   InstallData            = @INSTALL_DATA@
259 < MakeDir                = @MKINSTALLDIRS@
259 > MkDir                = @MKINSTALLDIRS@
260   Delete                 = rm -fr
261   StaticArchiver         = @AR@
262   DynamicArchiver        = @CC@
# Line 250 | Line 274 | Lex                    = @LEX@
274   List                   = cat
275   Yacc                   = @YACC@
276   Lex                    = @LEX@
277 + Ranlib                 = @RANLIB@
278 + Doxygen                = @DOXYGEN@
279  
254
280   MakeOptions            = -k
281   MakeDependOptions      =
282   StaticArchiverOptions  = rc
# Line 260 | Line 285 | FortranOptions         =
285   JniOptions             =
286   RmiOptions             = -d $(TargetDir) -classpath $(ClassPath) \
287                           -sourcepath $(SourceDir)
288 + COptions               = $(FrcDeclare) @CFLAGS@
289 + CParallelOptions       = $(FrcDeclare) $(ParallelDeclare) @CFLAGS@
290 + CppOptions             = $(FrcDeclare) @CXXFLAGS@
291 + CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@
292   FortranOptions         =
293 < F90Options             =  -I$(SourceDir) -module $(TargetDir)
293 > F90Options             =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir)
294 > F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
295   JavaCompilerOptions    = -d $(TargetDir) -classpath $(ClassPath) \
296                           -sourcepath $(SourceDir) -deprecation
297   JavaRunOptions         = -classpath $(ClassPath)
# Line 287 | Line 317 | Space                  = $(Empty) $(Empty)
317  
318   #---------------------------------------------------------------------------
319   #
320 + #  Install
321 + #
322 + #---------------------------------------------------------------------------
323 +
324 + ifneq "$(words $(SampleFiles))" "0"
325 +  MySample                 = $(subst $(shell cd $(DEV_ROOT)/samples; pwd)/,,$(CurrentDir))
326 +  MyInstallDir             = $(SampleSimDir)/$(MySample)
327 +  InstallFiles             = $(SampleFiles)
328 +  InstallCommand           = $(InstallData)
329 + endif
330 +
331 + ifneq "$(words $(Main))" "0"
332 +  MyInstallDir             = $(InstallBinDir)
333 +  ifeq "$(UseMPI)" "yes"
334 +    InstallFiles             = $(Executable) $(ParallelExecutable)
335 +  else
336 +    InstallFiles             = $(Executable)
337 +  endif
338 +  InstallCommand           = $(InstallProgram)
339 + endif
340 +
341 + ifneq "$(words $(ForcefieldFiles))" "0"
342 +  MyInstallDir             = $(ForceParamDir)
343 +  InstallFiles             = $(ForcefieldFiles)
344 +  InstallCommand           = $(InstallData)
345 + endif
346 +
347 + ifneq "$(words $(InstallFiles))" "0"
348 +  InstallList            =
349 + else
350 +  InstallList            = $(patsubst %,$(DEV_ROOT)/%,$(Samples)) $(DEV_ROOT)/forceFields $(patsubst %, $(SourceDir)/%,$(Applications))
351 + endif
352 +
353 + InstallListLoop          = $(patsubst %,$(SourceDir)/%/.install,$(PackageList))  $(patsubst %,%/.install,$(InstallList))
354 +
355 +
356 +
357 + #---------------------------------------------------------------------------
358 + #
359   # Rules
360   #
361   #---------------------------------------------------------------------------
# Line 304 | Line 373 | $(PackageTargetDir)/%.o : %.c
373          $(Print) $@
374          $(CCompiler) $(COptions) -c $(IncludePath) $< -o $@
375  
376 + $(PackageParallelTargetDir)/%.o : %.c
377 +        $(Print) $@
378 +        $(CCompiler) $(CParallelOptions) -c $(IncludePath) $< -o $@
379 +
380 + ifeq "$(UseMPI)" "yes"
381   %.o : %.c
382          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
383 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
384 + else
385 + %.o : %.c
386 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
387 + endif
388  
389   # .cpp -> .o
390   $(PackageTargetDir)/%.o : %.cpp
391          $(CppCompiler) $(CppOptions) -c $(IncludePath) $< -o $@
392  
393 + $(PackageParallelTargetDir)/%.o : %.cpp
394 +        $(CppCompiler) $(CppParallelOptions) -c $(IncludePath) $< -o $@
395 +
396 + ifeq "$(UseMPI)" "yes"
397 + %.o : %.cpp
398 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
399 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
400 + else
401   %.o : %.cpp
402          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
403 + endif
404  
405   # .f -> .o
406   $(PackageTargetDir)/%.o : %.f
407          $(FortranCompiler) $(FortranOptions) -c $< -o $@
408  
409 + $(PackageParallelTargetDir)/%.o : %.f
410 +        $(FortranCompiler) $(FortranParallelOptions) -c $< -o $@
411 +
412 + ifeq "$(UseMPI)" "yes"
413   %.o : %.f
414          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
415 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
416 + else
417 + %.o : %.f
418 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
419 + endif
420  
421   # .F90 -> .o
422   $(PackageTargetDir)/%.o : %.F90
423 <        $(F90Compiler) $(F90Options) -c $< -o $@
423 >        $(F90Compiler) $(F90Options) $(IncludePath) -c $< -o $@
424 >        if test -f *.$(ModSuffix); then \
425 >          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
426 >        fi
427  
428 + $(PackageParallelTargetDir)/%.o : %.F90
429 +        $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@
430 +        if test -f *.$(ModSuffix); then \
431 +          $(Move) *.$(ModSuffix) $(PackageParallelTargetDir);\
432 +        fi
433 +
434 + ifeq "$(UseMPI)" "yes"
435   %.o : %.F90
436          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
437 +        if test -f *.$(ModSuffix); then \
438 +          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
439 +        fi
440  
441 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
442 +        if test -f *.$(ModSuffix); then \
443 +          $(Move) *.$(ModSuffix) $(PackageParallelTargetDir);\
444 +        fi
445 +
446 + else
447 + %.o : %.F90
448 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
449 +        if test -f *.$(ModSuffix); then \
450 +          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
451 +        fi
452 +
453 + endif
454 +
455 +
456   # .java -> .class
457   $(PackageTargetDir)/%.class : $(PackageSourceDir)/%.java
458          $(JavaCompiler) $(JavaCompilerOptions) $<
# Line 361 | Line 486 | $(LibDir)/%.a : $(ObjectFiles)
486          @$(Lex) -o$@ $?
487  
488   # .o -> .a
489 < $(LibDir)/%.a : $(ObjectFiles)
489 >
490 > $(LibDir)/%_UP.a : $(ObjectFiles)
491          $(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
492 +        @touch $(LibDir)/.stamp_UP
493  
494 < %.a : $(ObjectFiles)
368 <        $(MAKE) $(MakeOptions) $(LibDir)/$@
369 <
370 < $(LibDir)/%_MPI.a : $(ParallelObjectFiles)
494 > $(LibDir)/%_MPI.a: $(ParallelObjectFiles)
495          $(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
496 +        @touch $(LibDir)/.stamp_MPI
497  
498 + %_UP.a : $(ObjectFiles)
499 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
500 +
501   %_MPI.a : $(ParallelObjectFiles)
502          $(MAKE) $(MakeOptions) $(LibDir)/$@
503  
504   # .o -> .so
505 < $(LibDir)/%.so : $(ObjectFiles)
505 > $(LibDir)/%_UP.so : $(ObjectFiles)
506          $(DynamicArchiver) $(ObjectFiles) $(DynamicArchiverOptions) -o $@
507  
380 %.so : $(ObjectFiles)
381        $(MAKE) $(MakeOptions) $(LibDir)/$@
382
508   $(LibDir)/%_MPI.so : $(ParallelObjectFiles)
509          $(DynamicArchiver) $(ParallelObjectFiles) $(DynamicArchiverOptions) -o $@
510  
511 + %_UP.so : $(ObjectFiles)
512 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
513 +
514   %_MPI.so : $(ParallelObjectFiles)
515          $(MAKE) $(MakeOptions) $(LibDir)/$@
516  
# Line 418 | Line 546 | $(PackageTargetDir)/%_Skel.class : $(PackageTargetDir)
546   %_Skel.class : %.class
547          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
548  
549 + document :
550 +        $(Print) Generate Documentation for OOPSE-2.0
551 +        @cd $(DEV_ROOT)/src    
552 +        $(Doxygen) $(DEV_ROOT)/make/Doxyfile
553 +
554 + #GUN make funtions to merge the libraries
555 + find_objs = $(shell $(StaticArchiver) -t $(1))
556 + extract_objs = $(shell $(StaticArchiver) -x $(1) $(call find_objs, $(1)))
557 + create_archive = $(shell  $(StaticArchiver) $(StaticArchiverOptions) $(2) $(call find_objs, $(1)))
558 + remove_objs = $(shell $(Delete) $(call find_objs, $(1)))
559 + do_create = $(call extract_objs,$(1))$(call create_archive,$(1),$(2))$(call remove_objs,$(1))  
560 +
561 + $(CombinedStaticLib) : $(LibDir)/.stamp_UP
562 +        $(Print) create $@      
563 +        $(foreach thisLib,$(LibNames),$(call do_create,$(thisLib),$@))
564 +        $(Ranlib) $(CombinedStaticLib)
565 +
566 + $(CombinedParallelStaticLib) : $(LibDir)/.stamp_MPI
567 +        $(Print) create $@
568 +        $(foreach thisLib,$(ParallelLibNames), $(call do_create, $(thisLib), $@))
569 +        $(Ranlib) $(CombinedParallelStaticLib)
570 +
571   # Executable
572 < $(Executable) : $(ObjectFiles)
573 <        $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ObjectFiles) -o $@
572 > $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
573 >        $(Linker) $(ObjectFiles) $(LinkOptions) $(LibDirs) $(CombinedStaticLib) $(Libraries) -o $@
574  
575 < $(ParallelExecutable) : $(ParallelObjectFiles)
576 <        $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ParallelObjectFiles) -o $@
575 > $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles)
576 >        $(Linker) $(ParallelObjectFiles) $(ParallelLinkOptions) $(LibDirs) $(CombinedParallelStaticLib) $(Libraries) -o $@
577  
578   # Anything else is just copied from source to target
579   $(PackageTargetDir)/% : $(PackageSourceDir)/%
# Line 436 | Line 586 | _buildall : \
586  
587   _all : _buildall
588  
589 + _buildall :
590 + ifeq "$(UseMPI)" "yes"
591   _buildall : \
592          $(DependencyFile) \
593          $(PackageTargetDir) \
594          $(ObjectFiles) \
595 +        $(ParallelObjectFiles) \
596          $(JavaClassFiles) \
597          $(RmiStubFiles) \
598          $(RmiSkeletonFiles) \
599          $(OtherTargetFiles) \
447        $(SharedLibrary) \
600          $(StaticLibrary) \
601 +        $(ParallelStaticLibrary) \
602          $(JarFile) \
603 <        $(Executable)
604 <        
603 >        $(Executable) \
604 >        $(ParallelExecutable)
605 > else
606 > _buildall : \
607 >        $(DependencyFile) \
608 >        $(PackageTargetDir) \
609 >        $(ObjectFiles) \
610 >        $(JavaClassFiles) \
611 >        $(RmiStubFiles) \
612 >        $(RmiSkeletonFiles) \
613 >        $(OtherTargetFiles) \
614 >        $(StaticLibrary) \
615 >        $(JarFile) \
616 >        $(Executable)
617 > endif
618  
619 +
620   # make clean
621   clean : $(PackageListLoop)
622          $(Print) Done clean.    
# Line 464 | Line 631 | _distcleanall :
631   _distcleanall :
632          $(Delete) $(ObjectFiles) \
633                    $(ParallelObjectFiles) \
634 <                  $(JarFile) \
634 >                        $(JarFile) \
635                    $(SharedLibrary) \
636                    $(StaticLibrary) \
637                    $(ParallelSharedLibrary) \
638                    $(ParallelStaticLibrary) \
639                    $(Executable) \
640                    $(ParallelExecutable) \
641 <                  $(DependencyFile)
641 >                  $(DependencyFile)
642  
643  
644   # make depend
# Line 484 | Line 651 | $(DependencyFile) : $(DerivedSource)
651          $(Print) $@
652          @cd $(PackageSourceDir)
653  
487        touch Make.ctemp
488        touch Make.ctemp
489
654   ifneq "$(words $(CppFiles))" "0"
655 <        $(CppCompiler) $(IncludePath) -MM $(CppFiles)  > Make.cpptemp
656 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
657 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
655 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/' -MM $(CppFiles)>> Make.cpptemp
656 >        @cat Make.cpptemp  >> $(DependencyFile)
657 >        $(Delete) Make.cpptemp
658 >
659 >  ifeq "$(UseMPI)" "yes"
660 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CppFiles)>> Make.cpptemp
661 >        @cat Make.cpptemp  >> $(DependencyFile)
662 >        @$(Delete) Make.cpptemp
663 >  endif
664 >
665   endif
666  
667   ifneq "$(words $(CFiles))" "0"
668 <        $(CCompiler)   $(IncludePath) -MM $(CFiles) $(DerivedCFiles)   > Make.ctemp
669 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
670 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
668 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/'  -MM $(CFiles) $(DerivedCFiles)  >> Make.ctemp
669 >        @cat Make.ctemp  >> $(DependencyFile)
670 >        $(Delete) Make.ctemp
671  
672 +  ifeq "$(UseMPI)" "yes"
673 +        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) -MM $(CFiles) $(DerivedCFiles)  >> Make.ctemp
674 +        @cat Make.ctemp  >> $(DependencyFile)
675 +        @$(Delete) Make.ctemp
676 +  endif
677 +
678   endif
679  
680   ifneq "$(words $(F90Files))" "0"
681 <        $(DEV_ROOT)/scripts/sfmakedepend  -I $(DEV_ROOT)/src -d '$$(DEV_ROOT)/obj' -f ./Make.ftemp -h *.F90
682 <        cat Make.ftemp >> $(DependencyFile)
681 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/' $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix) $(F90Files) > Make.ftemp
682 >        @cat Make.ftemp >> $(DependencyFile)
683 >        @$(Delete) Make.ftemp
684 >
685 >  ifeq "$(UseMPI)" "yes"
686 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) $(F90Declare) -MM -mc $(ModuleCase) -ms $(ModSuffix)  $(F90Files) >> Make.ftemp
687 >        @cat Make.ftemp >> $(DependencyFile)
688 >        @$(Delete) Make.ftemp
689 >  endif
690 >
691   endif
507        $(Delete) Make.cpptemp Make.ctemp Make.ftemp
692  
693   # make lib
694   lib    : $(PackageListLoop)
# Line 517 | Line 701 | jarsign : $(JarFile)
701   jarsign : $(JarFile)
702          $(JarSigner) -keystore GeoSoftKeystore $(JarFile) myself
703  
704 + #make install
705 + %.install :
706 +        @$(MAKE) $(MakeOptions) -C $(subst .install,,$@) _installall    
707 +
708 + install : $(InstallListLoop)
709 +        $(Print) Done Install
710 +
711 + _installall : _buildall _installdata
712 +
713 + $(MyInstallDir) :
714 +        $(MkDir) $@
715 +
716 + _installdata :  $(MyInstallDir)
717 +        $(Print) $(InstallFiles)
718 + ifneq "$(words $(InstallFiles))" "0"
719 +        $(InstallData) $(InstallFiles) $(MyInstallDir)
720 + endif      
721 +        
722   # make statistics
723   _statisticsall :
724 <        @$(Print) $(SourceFiles) >> $(DEV_ROOT)/files.tmp
724 >        @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp
725  
726   statistics : $(PackageListLoop)
727          @$(List) $(DEV_ROOT)/files.tmp | xargs $(WordCount) $(WordCountOptions)
# Line 533 | Line 735 | pure : $(Executable).pure
735  
736   pure : $(Executable).pure
737  
738 + #make cvslog
739 + cvslog:
740 +        $(DEV_ROOT)/scripts/cvs2cl.pl
741 +
742   # Execute
743   _runexe :
744          $(Executable) $(RunParameters)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines