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 1523 by tim, Mon Oct 4 20:56:51 2004 UTC vs.
Revision 1552 by gezelter, Mon Oct 11 15:43:16 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          @SPRNG_INC_DIR@ \
# Line 81 | Line 82 | Libraries = \
82  
83   Libraries = \
84          @SPRNG_LIB@ \
85 <        @MPI_LIB@
85 >        @MPI_LIB@ \
86 >        @MPI_F90_LIB@
87  
86 LinkOptions = \
87        @F90LIBS@
88
88   OopseHome       = @OOPSE_HOME@
89 < ForceParamDir   = @OOPSE_HOME@/share/forceFields/
90 < SampleSimDir    = @OOPSE_HOME@/share/samples/
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 107 | 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 121 | 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 172 | 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 207 | Line 219 | ifneq  "$(words $(ObjectFiles) $(ParallelObjectFiles))
219      Executable             = $(BinDir)/$(Main)
220      ParallelExecutable     = $(BinDir)/$(Main)_MPI
221    else
222 <    SharedLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package))).so
223 <    StaticLibrary          = $(LibDir)/lib$(subst /,,$(patsubst %,oopse_%,$(Package))).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 220 | Line 233 | LocalLibs        = $(subst /,,$(patsubst %, oopse_%, $
233   JavaPackageNames = $(subst /,.,$(JavaPackages))
234   IncludePath      = -I$(SourceDir) $(IncludeDirs:%=-I%)
235   LibDirs          = -L$(LibDir)    $(LibraryDirs:%=-L%)
236 < LocalLibs        = $(subst /,,$(patsubst %, oopse_%, $(PackageLibs)))
236 > LocalLibs        = $(subst /,,$(patsubst %, oopse_%_UP, $(PackageLibs)))
237   ParallelLocalLibs= $(subst /,,$(patsubst %, oopse_%_MPI, $(PackageLibs)))
238   LibList          = $(LocalLibs:%=-l%) $(Libraries)
239 < ParallelLibList  = $(LocalLibs:%=-l%) $(Libraries)
239 > LibNames         = $(LocalLibs:%=$(LibDir)/lib%.a)
240 > ParallelLibList  = $(ParallelLocalLibs:%=-l%) $(Libraries)
241 > ParallelLibNames = $(ParallelLocalLibs:%=$(LibDir)/lib%.a)
242  
243  
244   #---------------------------------------------------------------------------
# Line 238 | 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 259 | Line 274 | Lex                    = @LEX@
274   List                   = cat
275   Yacc                   = @YACC@
276   Lex                    = @LEX@
277 + Ranlib                 = @RANLIB@
278 + Doxygen                = @DOXYGEN@
279  
263
280   MakeOptions            = -k
281   MakeDependOptions      =
282   StaticArchiverOptions  = rc
# Line 275 | Line 291 | F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDI
291   CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare)
292   FortranOptions         =
293   F90Options             =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) -module $(TargetDir)
294 < F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) -module $(TargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
294 > F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) -module $(ParallelTargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
295   JavaCompilerOptions    = -d $(TargetDir) -classpath $(ClassPath) \
296                           -sourcepath $(SourceDir) -deprecation
297   JavaRunOptions         = -classpath $(ClassPath)
# Line 301 | 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 318 | 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  
425 + $(PackageParallelTargetDir)/%.o : %.F90
426 +        $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@
427 +
428 + ifeq "$(UseMPI)" "yes"
429   %.o : %.F90
430          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
431 +        $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
432 + else
433 + %.o : %.F90
434 +        $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
435 + endif
436  
437 +
438   # .java -> .class
439   $(PackageTargetDir)/%.class : $(PackageSourceDir)/%.java
440          $(JavaCompiler) $(JavaCompilerOptions) $<
# Line 375 | Line 468 | $(LibDir)/%.a : $(ObjectFiles)
468          @$(Lex) -o$@ $?
469  
470   # .o -> .a
471 < $(LibDir)/%.a : $(ObjectFiles)
471 >
472 > $(LibDir)/%_UP.a : $(ObjectFiles)
473          $(StaticArchiver) $(StaticArchiverOptions) $@ $(ObjectFiles)
474 +        @touch $(LibDir)/.stamp_UP
475  
476 < %.a : $(ObjectFiles)
382 <        $(MAKE) $(MakeOptions) $(LibDir)/$@
383 <
384 < $(LibDir)/%_MPI.a : $(ParallelObjectFiles)
476 > $(LibDir)/%_MPI.a: $(ParallelObjectFiles)
477          $(StaticArchiver) $(StaticArchiverOptions) $@ $(ParallelObjectFiles)
478 +        @touch $(LibDir)/.stamp_MPI
479  
480 + %_UP.a : $(ObjectFiles)
481 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
482 +
483   %_MPI.a : $(ParallelObjectFiles)
484          $(MAKE) $(MakeOptions) $(LibDir)/$@
485  
486   # .o -> .so
487 < $(LibDir)/%.so : $(ObjectFiles)
487 > $(LibDir)/%_UP.so : $(ObjectFiles)
488          $(DynamicArchiver) $(ObjectFiles) $(DynamicArchiverOptions) -o $@
489  
394 %.so : $(ObjectFiles)
395        $(MAKE) $(MakeOptions) $(LibDir)/$@
396
490   $(LibDir)/%_MPI.so : $(ParallelObjectFiles)
491          $(DynamicArchiver) $(ParallelObjectFiles) $(DynamicArchiverOptions) -o $@
492  
493 + %_UP.so : $(ObjectFiles)
494 +        $(MAKE) $(MakeOptions) $(LibDir)/$@
495 +
496   %_MPI.so : $(ParallelObjectFiles)
497          $(MAKE) $(MakeOptions) $(LibDir)/$@
498  
# Line 432 | Line 528 | $(PackageTargetDir)/%_Skel.class : $(PackageTargetDir)
528   %_Skel.class : %.class
529          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
530  
531 + document :
532 +        $(Print) Generate Documentation for OOPSE-2.0
533 +        @cd $(DEV_ROOT)/src    
534 +        $(Doxygen) $(DEV_ROOT)/make/Doxyfile
535 +
536 + #GUN make funtions to merge the libraries
537 + find_objs = $(shell $(StaticArchiver) -t $(1))
538 + extract_objs = $(shell $(StaticArchiver) -x $(1) $(call find_objs, $(1)))
539 + create_archive = $(shell  $(StaticArchiver) $(StaticArchiverOptions) $(2) $(call find_objs, $(1)))
540 + remove_objs = $(shell $(Delete) $(call find_objs, $(1)))
541 + do_create = $(call extract_objs,$(1))$(call create_archive,$(1),$(2))$(call remove_objs,$(1))  
542 +
543 + $(CombinedStaticLib) : $(LibDir)/.stamp_UP
544 +        $(Print) create $@      
545 +        $(foreach thisLib,$(LibNames),$(call do_create,$(thisLib),$@))
546 +        $(Ranlib) $(CombinedStaticLib)
547 +
548 + $(CombinedParallelStaticLib) : $(LibDir)/.stamp_MPI
549 +        $(Print) create $@
550 +        $(foreach thisLib,$(ParallelLibNames), $(call do_create, $(thisLib), $@))
551 +        $(Ranlib) $(CombinedParallelStaticLib)
552 +
553   # Executable
554 < $(Executable) : $(ObjectFiles)
555 <        $(Linker) $(LinkOptions) $(LibDirs) $(LibList) $(ObjectFiles) -o $@
554 > $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
555 >        $(Linker) $(ObjectFiles) $(LinkOptions) $(LibDirs) $(CombinedStaticLib) $(Libraries) -o $@
556  
557 < $(ParallelExecutable) : $(ParallelObjectFiles)
558 <        $(Linker) $(LinkOptions) $(LibDirs) $(ParallelLibList) $(ParallelObjectFiles) -o $@
557 > $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles)
558 >        $(Linker) $(ParallelObjectFiles) $(ParallelLinkOptions) $(LibDirs) $(CombinedParallelStaticLib) $(Libraries) -o $@
559  
560   # Anything else is just copied from source to target
561   $(PackageTargetDir)/% : $(PackageSourceDir)/%
# Line 450 | Line 568 | _buildall : \
568  
569   _all : _buildall
570  
571 + _buildall :
572 + ifeq "$(UseMPI)" "yes"
573   _buildall : \
574          $(DependencyFile) \
575          $(PackageTargetDir) \
576          $(ObjectFiles) \
577 +        $(ParallelObjectFiles) \
578          $(JavaClassFiles) \
579          $(RmiStubFiles) \
580          $(RmiSkeletonFiles) \
581          $(OtherTargetFiles) \
461        $(SharedLibrary) \
582          $(StaticLibrary) \
583 +        $(ParallelStaticLibrary) \
584          $(JarFile) \
585 <        $(Executable)
586 <        
585 >        $(Executable) \
586 >        $(ParallelExecutable)
587 > else
588 > _buildall : \
589 >        $(DependencyFile) \
590 >        $(PackageTargetDir) \
591 >        $(ObjectFiles) \
592 >        $(JavaClassFiles) \
593 >        $(RmiStubFiles) \
594 >        $(RmiSkeletonFiles) \
595 >        $(OtherTargetFiles) \
596 >        $(StaticLibrary) \
597 >        $(JarFile) \
598 >        $(Executable)
599 > endif
600  
601 +
602   # make clean
603   clean : $(PackageListLoop)
604          $(Print) Done clean.    
# Line 498 | Line 633 | $(DependencyFile) : $(DerivedSource)
633          $(Print) $@
634          @cd $(PackageSourceDir)
635  
501        @touch Make.ctemp
502        @touch Make.ctemp
503
636   ifneq "$(words $(CppFiles))" "0"
637 <        $(CppCompiler) $(IncludePath) -MM $(CppFiles)  > Make.cpptemp
638 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
639 <        cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
637 >        $(CppCompiler) $(CppOptions) $(IncludePath) -MM $(CppFiles) > Make.cpptemp
638 >        @cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(TargetDir\)\/&/g' >> $(DependencyFile)
639 >        $(Delete) Make.cpptemp
640 >        $(CppCompiler) $(CppParallelOptions) $(IncludePath) -MM $(CppFiles) > Make.cpptemp
641 >        @cat Make.cpptemp | sed 's/^[a-zA-Z0-9]/$$\(ParallelTargetDir\)\/&/g' >> $(DependencyFile)
642 >        @$(Delete) Make.cpptemp
643   endif
644  
645   ifneq "$(words $(CFiles))" "0"
646 <        $(CCompiler)   $(IncludePath) -MM $(CFiles) $(DerivedCFiles)   > Make.ctemp
647 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/obj\/&/g' >> $(DependencyFile)
648 <        cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(DEV_ROOT\)\/MPIobj\/&/g' >> $(DependencyFile)
649 <
646 >        $(CCompiler) $(COptions) $(IncludePath) -MM $(CFiles) $(DerivedCFiles) > Make.ctemp
647 >        @cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(TargetDir\)\/&/g' >> $(DependencyFile)
648 >        $(Delete) Make.ctemp
649 >        $(CCompiler) $(CParallelOptions) $(IncludePath) -MM $(CFiles) $(DerivedCFiles) > Make.ctemp
650 >        @cat Make.ctemp | sed 's/^[a-zA-Z0-9]/$$\(ParallelTargetDir\)\/&/g' >> $(DependencyFile)
651 >        @$(Delete) Make.ctemp
652   endif
653  
654   ifneq "$(words $(F90Files))" "0"
655 <        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(DEV_ROOT)/obj/' -D__F90   $(F90Files) > Make.ftemp
656 <        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(DEV_ROOT)/MPIobj/' -DIS_MPI -D__F90   $(F90Files) >> Make.ftemp
657 <        cat Make.ftemp >> $(DependencyFile)
655 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(TargetDir)/' $(F90Declare) -mc $(ModuleCase) -ms $(ModSuffix) $(F90Files) > Make.ftemp
656 >        $(DEV_ROOT)/scripts/filepp  -I $(DEV_ROOT)/src -od '$$(ParallelTargetDir)/' $(ParallelDeclare) $(F90Declare) -mc $(ModuleCase) -ms $(ModSuffix)  $(F90Files) >> Make.ftemp
657 >        @cat Make.ftemp >> $(DependencyFile)
658 >        @$(Delete) Make.ftemp
659   endif
522        $(Delete) Make.cpptemp Make.ctemp Make.ftemp
660  
661   # make lib
662   lib    : $(PackageListLoop)
# Line 532 | Line 669 | jarsign : $(JarFile)
669   jarsign : $(JarFile)
670          $(JarSigner) -keystore GeoSoftKeystore $(JarFile) myself
671  
672 + #make install
673 + %.install :
674 +        @$(MAKE) $(MakeOptions) -C $(subst .install,,$@) _installall    
675 +
676 + install : $(InstallListLoop)
677 +        $(Print) Done Install
678 +
679 + _installall : _buildall _installdata
680 +
681 + $(MyInstallDir) :
682 +        $(MkDir) $@
683 +
684 + _installdata :  $(MyInstallDir)
685 +        $(Print) $(InstallFiles)
686 + ifneq "$(words $(InstallFiles))" "0"
687 +        $(InstallData) $(InstallFiles) $(MyInstallDir)
688 + endif      
689 +        
690   # make statistics
691   _statisticsall :
692 <        @$(Print) $(SourceFiles) >> $(DEV_ROOT)/files.tmp
692 >        @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp
693  
694   statistics : $(PackageListLoop)
695          @$(List) $(DEV_ROOT)/files.tmp | xargs $(WordCount) $(WordCountOptions)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines