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 1715 by chrisfen, Fri Nov 5 21:04:12 2004 UTC vs.
Revision 2023 by gezelter, Mon Feb 14 23:26:25 2005 UTC

# Line 38 | Line 38 | PackageLibs = \
38   #packages containing libraries
39   PackageLibs = \
40          utils \
41 +        visitors \
42          math \
43          types \
44          primitives \
44        visitors \
45          UseTheForce/DarkSide \
46          UseTheForce \
47          brains \
48          io \
49 +        integrators\
50          constraints \
50        profiling \
51        restraints \
51          minimizers \
52 +        selection \
53  
54   #packages containing applications
55   Applications = \
56          applications/oopse \
57          applications/dump2Xyz \
58 <        applications/simpleBuilder
58 >        applications/simpleBuilder\
59 >        applications/staticProps \
60 >        applications/dynamicProps \
61  
62   Samples = \
63          samples/argon \
# Line 124 | Line 126 | Package          = $(subst $(shell cd $(SourceDir); pw
126   # /home/maul/gezelter/src/code/src/UseTheForce/Darkside --> UseTheForce/Darkside
127   #Package          = $(shell echo $(CurrentDir) | sed -e 's/^.*\/src\/\(.*\)/\1/g')
128   #use shell script to get the absolute path and then rip it off from $(CurrentDir)
129 < Package          = $(subst $(shell cd $(SourceDir); pwd)/,,$(CurrentDir))
129 > #Package          = $(subst $(shell cd $(SourceDir); pwd)/,,$(CurrentDir))
130 > # REMINDER: We are now using the Package line in each subdir makefile.
131 > # This avoids the strange path problem and the subshell
132  
133   PackageList              = $(Package)
134   PackageSourceDir         = $(SourceDir)/$(Package)
# Line 246 | Line 250 | Move                   = mv
250   #
251   #---------------------------------------------------------------------------
252   Print                  = @echo
253 < Move                   = mv
253 > Move                   = mv -f
254   Copy                   = cp
255   CCompiler              = @CC@
256   CppCompiler            = @CXX@
# Line 255 | Line 259 | MkDir                = @MKINSTALLDIRS@
259   INSTALL                = @INSTALL@
260   InstallProgram         = @INSTALL_PROGRAM@
261   InstallData            = @INSTALL_DATA@
262 < MkDir                = @MKINSTALLDIRS@
262 > MkDir                  = @MKINSTALLDIRS@
263   Delete                 = rm -fr
264   StaticArchiver         = @AR@
265   DynamicArchiver        = @CC@
# Line 275 | Line 279 | Doxygen                = @DOXYGEN@
279   Lex                    = @LEX@
280   Ranlib                 = @RANLIB@
281   Doxygen                = @DOXYGEN@
282 + Ps                     = @PS@
283 + PsType                 = @PSTYPE@
284  
285   MakeOptions            = -k
286   MakeDependOptions      =
# Line 284 | Line 290 | COptions               = $(FrcDeclare) @CFLAGS@
290   JniOptions             =
291   RmiOptions             = -d $(TargetDir) -classpath $(ClassPath) \
292                           -sourcepath $(SourceDir)
293 < COptions               = $(FrcDeclare) @CFLAGS@
293 > COptions               = $(FrcDeclare) @CFLAGS@ -DPS=$(Ps) -DPSTYPE=$(PsType)
294   CParallelOptions       = $(FrcDeclare) $(ParallelDeclare) @CFLAGS@
295 < CppOptions             = $(FrcDeclare) @CXXFLAGS@
296 < CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@
295 > CppOptions             = $(FrcDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
296 > CppParallelOptions     = $(FrcDeclare) $(ParallelDeclare) @CXXFLAGS@ @OOPSE_TEMPLATE_FLAGS@
297   FortranOptions         =
298   F90Options             =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(TargetDir)
299   F90ParallelOptions     =  @PREPFLAG@ @F90FLAGS@ @MODDIRFLAG@$(SourceDir) @MODDIRFLAG@$(ParallelTargetDir)  @PREPDEFFLAG@$(ParallelDeclare)
# Line 365 | Line 371 | $(PackageTargetDir) :
371  
372   # Create target directory
373   $(PackageTargetDir) :
374 <        $(MakeDir) $@
374 >        $(MkDir) $@
375  
376 + $(BinDir) :
377 +        $(MkDir) $@
378 +
379   # .c -> .o
380   $(PackageTargetDir)/%.o : %.c
381          $(Print) $@
# Line 420 | Line 429 | $(PackageTargetDir)/%.o : %.F90
429   # .F90 -> .o
430   $(PackageTargetDir)/%.o : %.F90
431          $(F90Compiler) $(F90Options) $(IncludePath) -c $< -o $@
432 <        if test -f *.$(ModSuffix); then \
433 <          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
432 >        if test -n "`ls *.$(ModSuffix)`"; then \
433 >          $(Move) `ls *.$(ModSuffix)` $(PackageTargetDir);\
434          fi
435  
436   $(PackageParallelTargetDir)/%.o : %.F90
437          $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@
438 <        if test -f *.$(ModSuffix); then \
439 <          $(Move) *.$(ModSuffix) $(PackageParallelTargetDir);\
438 >        if test -n "`ls *.$(ModSuffix)`"; then \
439 >          $(Move) "`ls *.$(ModSuffix)`" $(PackageParallelTargetDir);\
440          fi
441  
442   ifeq "$(UseMPI)" "yes"
443   %.o : %.F90
444          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
445 <        if test -f *.$(ModSuffix); then \
446 <          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
447 <        fi
445 >        if test -n "`ls *.$(ModSuffix)`"; then\
446 >          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
447 >        fi
448  
449          $(MAKE) $(MakeOptions) $(PackageParallelTargetDir)/$@
450 <        if test -f *.$(ModSuffix); then \
451 <          $(Move) *.$(ModSuffix) $(PackageParallelTargetDir);\
450 >        if test -n "`ls *.$(ModSuffix)`"; then\
451 >          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
452          fi
453  
454   else
455   %.o : %.F90
456          $(MAKE) $(MakeOptions) $(PackageTargetDir)/$@
457 <        if test -f *.$(ModSuffix); then \
458 <          $(Move) *.$(ModSuffix) $(PackageTargetDir);\
459 <        fi
451 <
457 >        if test -n "`ls *.$(ModSuffix)`"; then\
458 >          $(Move) "`ls *.$(ModSuffix)`" $(PackageTargetDir);\
459 >        fi
460   endif
461  
462  
# Line 568 | Line 576 | $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
576          $(Ranlib) $(CombinedParallelStaticLib)
577  
578   # Executable
579 < $(Executable) : $(CombinedStaticLib) $(ObjectFiles)
580 <        $(Linker) $(ObjectFiles) $(LinkOptions) $(LibDirs) $(CombinedStaticLib) $(Libraries) -o $@
579 > $(Executable) : $(CombinedStaticLib) $(ObjectFiles) $(BinDir)
580 >        $(Linker) $(ObjectFiles) $(CombinedStaticLib) $(LinkOptions) $(LibDirs) $(Libraries) -o $@
581  
582 < $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles)
583 <        $(Linker) $(ParallelObjectFiles) $(ParallelLinkOptions) $(LibDirs) $(CombinedParallelStaticLib) $(Libraries) -o $@
582 > $(ParallelExecutable) : $(CombinedParallelStaticLib) $(ParallelObjectFiles) $(BinDir)
583 >        $(Linker) $(ParallelObjectFiles) $(CombinedParallelStaticLib) $(ParallelLinkOptions) $(LibDirs) $(Libraries) -o $@
584  
585   # Anything else is just copied from source to target
586   $(PackageTargetDir)/% : $(PackageSourceDir)/%
# Line 717 | Line 725 | endif      
725   ifneq "$(words $(InstallFiles))" "0"
726          $(InstallData) $(InstallFiles) $(MyInstallDir)
727   endif      
728 <        
728 >
729   # make statistics
730   _statisticsall :
731          @$(Print) $(patsubst %,$(CurrentDir)/%,$(SourceFiles)) >> $(DEV_ROOT)/files.tmp

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines