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

Comparing trunk/OOPSE-3.0/make/Makefile.in (file contents):
Revision 2444 by tim, Wed Nov 16 21:20:50 2005 UTC vs.
Revision 2557 by gezelter, Thu Jan 12 20:19:18 2006 UTC

# Line 52 | Line 52 | PackageLibs = \
52          selection \
53          restraints \
54          lattice \
55 <        openbabel
56 <
55 >        openbabel\
56 >        antlr\
57 >        mdParser
58   #packages containing applications
59   Applications = \
60          applications/oopse \
# Line 62 | Line 63 | Applications = \
63          applications/dynamicProps \
64          applications/simpleBuilder\
65          applications/nanoRodBuilder \
66 <        applications/mdinConverter
66 >        applications/atom2mdin
67  
68   Samples = \
69 +        samples/alkane \
70          samples/argon \
71 +        samples/cutoff \
72 +        samples/dipole \
73 +        samples/gbljtest \
74 +        samples/lipid \
75 +        samples/metals/EAM \
76 +        samples/metals/EAM/nanoparticle \
77 +        samples/metals/EAM/nanorod \
78 +        samples/metals/Sutton-Chen \
79 +        samples/minimizer \
80 +        samples/shape \
81 +        samples/thermoIntegration/liquid \
82 +        samples/thermoIntegration/solid \
83          samples/water/dimer \
84          samples/water/spce \
85          samples/water/ssd \
# Line 74 | Line 88 | Samples = \
88          samples/water/ssd-ion \
89          samples/water/tip3p_ice \
90          samples/water/tip4p \
91 <        samples/lipid \
78 <        samples/alkane \
79 <        samples/minimizer \
80 <        samples/metals \
81 <        samples/thermoIntegration/liquid \
82 <        samples/thermoIntegration/solid \
83 <        samples/dipole \
84 <        samples/shape \
85 <        samples/zcons \
91 >        samples/zcons
92  
93   IncludeDirs = \
94          @CGAL_INC_DIR@ \
# Line 110 | Line 116 | LinkOptions = \
116   ModuleCase      = @F90_MODULE_NAMES@
117   ModSuffix       = @MOD@
118   LinkOptions = \
119 <        @F90LIBS@
119 >        @FCLIBS@
120  
121   ParallelLinkOptions = \
122 <        @F90LIBS@
122 >        @FCLIBS@
123  
124  
125   #---------------------------------------------------------------------------
# Line 335 | Line 341 | INSTALL                = @INSTALL@
341   CppCompiler            = @CXX@
342   Linker                 = @CXX@
343   MakeDepend             = makedepend
344 + LN_S                   = @LN_S@
345   INSTALL                = @INSTALL@
346 + EGREP                  = @EGREP@
347   InstallProgram         = @INSTALL_PROGRAM@
348   InstallScript          = @INSTALL_SCRIPT@
349   InstallData            = @INSTALL_DATA@
# Line 344 | Line 352 | F90Compiler            = @F90@
352   StaticArchiver         = @AR@
353   DynamicArchiver        = @CC@
354   FortranCompiler        = @FC@
347 F90Compiler            = @F90@
355   JavaCompiler           = $(JAVA_HOME)/bin/javac
356   JavaArchiver           = $(JAVA_HOME)/bin/jar
357   JarSigner              = $(JAVA_HOME)/bin/jarsigner
# Line 370 | Line 377 | CppOptions             = $(FrcDeclare) @CXXFLAGS@ @OOP
377                           -sourcepath $(SourceDir)
378   COptions               = $(FrcDeclare) @CFLAGS@
379   CParallelOptions       = $(FrcDeclare) $(ParallelDeclare) @CFLAGS@
380 < CppOptions             = $(FrcDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
381 < CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
382 < FortranOptions         =
383 < F90Options             =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir)
377 < F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
380 > CppOptions             = $(FrcDeclare) @CXXFLAGS@
381 > CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@
382 > FortranOptions         =  @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir) @FCFLAGS_SRCEXT@
383 > FortranParallelOptions =  @FCFLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir) @PREPDEFFLAG@$(ParallelDeclar) @FCFLAGS_SRCEXT@
384   JavaCompilerOptions    = -d $(TargetDir) -classpath $(ClassPath) \
385                           -sourcepath $(SourceDir) -deprecation
386   JavaRunOptions         = -classpath $(ClassPath)
# Line 419 | Line 425 | endif
425      InstallFiles             = $(Executable)
426    endif
427    InstallCommand           = $(InstallProgram)
428 +  ifneq "$(words $(LinkTargets))" "0"
429 +    MyLinkSource = $(patsubst %, $(MyInstallDir)/%,$(Main))
430 +    MyLinkTargets = $(patsubst %, $(MyInstallDir)/%,$(LinkTargets))
431 +  endif
432   endif
433  
434   ifneq "$(words $(ForcefieldFiles))" "0"
# Line 506 | Line 516 | $(PackageTargetDir)/%.o : %.F90 $(MainMakefile)
516  
517   # .F90 -> .o
518   $(PackageTargetDir)/%.o : %.F90 $(MainMakefile)
519 <        $(F90Compiler) $(F90Options) $(IncludePath) -c $< -o $@
519 >        $(FortranCompiler) $(FortranOptions) $(IncludePath) -c $< -o $@
520          if test -n "`ls *.$(ModSuffix)`"; then \
521            $(Move) `ls *.$(ModSuffix)` $(PackageTargetDir);\
522          fi
523  
524   $(PackageParallelTargetDir)/%.o : %.F90 $(MainMakefile)
525 <        $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@
525 >        $(FortranCompiler) $(FortranParallelOptions) $(IncludePath) -c $< -o $@
526          if test -n "`ls *.$(ModSuffix)`"; then \
527            $(Move) "`ls *.$(ModSuffix)`" $(PackageParallelTargetDir);\
528          fi
# Line 637 | Line 647 | find_objs = $(shell $(StaticArchiver) -t $(1))
647          $(Doxygen) $(DEV_ROOT)/make/Doxyfile
648  
649   #GUN make funtions to merge the libraries
650 < find_objs = $(shell $(StaticArchiver) -t $(1))
650 > find_objs = $(shell $(StaticArchiver) -t $(1) | $(EGREP) -v "SYMDEF")
651   extract_objs = $(shell $(StaticArchiver) -x $(1) $(call find_objs, $(1)))
652   create_archive = $(shell  $(StaticArchiver) $(StaticArchiverOptions) $(2) $(call find_objs, $(1)))
653   remove_objs = $(shell $(Delete) $(call find_objs, $(1)))
654   do_create = $(call extract_objs,$(1))$(call create_archive,$(1),$(2))$(call remove_objs,$(1))  
655 + do_link = $(shell $(LN_S) $(1) $(2))
656 + all_objs = $(foreach thisLib,$(LibNames), $(call find_objs, $(thisLib)))
657 + all_parallel_objs = $(foreach thisLib,$(ParallelLibNames), $(call find_objs, $(thisLib)))
658 + all_lib_objs = $(patsubst %,$(TargetDir)/%,$(call all_objs))
659 + all_lib_parallel_objs = $(patsubst %,$(ParallelTargetDir)/%,$(call all_parallel_objs))
660  
661   $(CombinedStaticLib) : $(LibDir)/.stamp_UP
662 <        $(Print) create $@      
663 <        $(foreach thisLib,$(LibNames),$(call do_create,$(thisLib),$@))
662 >        $(Print) creating $@            
663 >        $(StaticArchiver) $(StaticArchiverOptions) $@ $(call all_lib_objs)
664          $(Ranlib) $(CombinedStaticLib)
665  
666   $(CombinedParallelStaticLib) : $(LibDir)/.stamp_MPI
667 <        $(Print) create $@
668 <        $(foreach thisLib,$(ParallelLibNames), $(call do_create, $(thisLib), $@))
667 >        $(Print) creating $@
668 >        $(StaticArchiver) $(StaticArchiverOptions) $@ $(call all_lib_parallel_objs)
669          $(Ranlib) $(CombinedParallelStaticLib)
670  
671   # Executable
672 < $(Executable) : $(CombinedStaticLib) $(ObjectFiles) $(BinDir)
672 > $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
673 >        if test ! -d $(BinDir); then \
674 >                $(MkDir) $(BinDir) ;\
675 >        fi
676          $(Linker) $(ObjectFiles) $(CombinedStaticLib) $(LinkOptions) $(LibDirs) $(Libraries) -o $@
677  
678 < $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles) $(BinDir)
678 > $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles)
679 >        if test ! -d $(BinDir); then \
680 >                $(MkDir) $(BinDir) ;\
681 >        fi
682          $(Linker) $(ParallelObjectFiles) $(CombinedParallelStaticLib) $(ParallelLinkOptions) $(LibDirs) $(Libraries) -o $@
683  
684   # Anything else is just copied from source to target
# Line 801 | Line 822 | _installall : _buildall _installdata
822   install : $(InstallListLoop)
823          $(Print) Done Install
824  
825 < _installall : _buildall _installdata
825 > _installall : _buildall _installdata _installlinks
826  
827   $(MyInstallDir) :
828          $(MkDir) $@
# Line 812 | Line 833 | endif      
833          $(InstallCommand) $(InstallFiles) $(MyInstallDir)
834   endif      
835  
836 + _installlinks :  $(MyInstallDir)
837 + ifneq "$(words $(MyLinkTargets))" "0"
838 +        @cd $(MyInstallDir)
839 +        $(foreach thisLink,$(MyLinkTargets),$(call do_link,$(MyLinkSource),$(thisLink)))
840 + endif      
841 +
842   # make statistics
843   _statisticsall :
844          @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines