--- trunk/OOPSE-3.0/make/Makefile.in 2004/11/05 21:04:12 1715 +++ branches/new_design/OOPSE-3.0/make/Makefile.in 2005/01/11 16:09:43 1920 @@ -38,24 +38,23 @@ PackageLibs = \ #packages containing libraries PackageLibs = \ utils \ + visitors \ math \ types \ primitives \ - visitors \ UseTheForce/DarkSide \ UseTheForce \ brains \ io \ + integrators\ constraints \ - profiling \ - restraints \ minimizers \ #packages containing applications Applications = \ applications/oopse \ applications/dump2Xyz \ - applications/simpleBuilder + applications/simpleBuilder\ Samples = \ samples/argon \ @@ -246,7 +245,7 @@ Move = mv # #--------------------------------------------------------------------------- Print = @echo -Move = mv +Move = mv -f Copy = cp CCompiler = @CC@ CppCompiler = @CXX@ @@ -420,14 +419,14 @@ $(PackageTargetDir)/%.o : %.F90 # .F90 -> .o $(PackageTargetDir)/%.o : %.F90 $(F90Compiler) $(F90Options) $(IncludePath) -c $< -o $@ - if test -f *.$(ModSuffix); then \ - $(Move) *.$(ModSuffix) $(PackageTargetDir);\ + if test -n "`ls *.$(ModSuffix)`"; then \ + $(Move) `ls *.$(ModSuffix)` $(PackageTargetDir);\ fi $(PackageParallelTargetDir)/%.o : %.F90 $(F90Compiler) $(F90ParallelOptions) $(IncludePath) -c $< -o $@ - if test -f *.$(ModSuffix); then \ - $(Move) *.$(ModSuffix) $(PackageParallelTargetDir);\ + if test -n "`ls *.$(ModSuffix)`"; then \ + $(Move) "`ls *.$(ModSuffix)`" $(PackageParallelTargetDir);\ fi ifeq "$(UseMPI)" "yes"