--- branches/new_design/OOPSE-3.0/make/Makefile.in 2004/12/20 19:49:44 1897 +++ branches/new_design/OOPSE-3.0/make/Makefile.in 2004/12/20 20:36:40 1898 @@ -243,7 +243,7 @@ Move = mv # #--------------------------------------------------------------------------- Print = @echo -Move = mv +Move = mv -f Copy = cp CCompiler = @CC@ CppCompiler = @CXX@ @@ -417,14 +417,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"