%% Noel Yap <[EMAIL PROTECTED]> writes:

  ny> I also don't see any backgrounded processes.  The only other thing
  ny> I can think of is what Paul had said about NFS.

  g> all :
  g>        $(SHELL) ./copyfile.sh
  g>        cd $(OBJ_DIR) && mv foo.o newfoo

Try changing your rule like this:

 all :
        $(SHELL) ./copyfile.sh; \
          [ -f $(OBJ_DIR)/foo.o ] || echo $(OBJ_DIR)/foo.o not there
        cd $(OBJ_DIR) && mv foo.o newfoo

and see what happens.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist


_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to