hi all,
How do I ask the make file to wait for the script
finished its execution then move on to the next step.

Look at the 'all' target below, I want to wait for the
'copyfile.sh' script finish before 'cd to OBJ_DIR' but
it always 'cd to OBJ_DIR' before the script finish
copy file (the script copy several large file, that is
how I know it cd to the OBJ_DIR before the copy
finish)
How do I make it to work? Please give me some hint.

Thanks

  

all :
     $(SHELL) ./copyfile.sh
     cd $(OBJ_DIR)




=====
-------------------------
http://www.nguyen.bz/dvd
-------------------------


                
__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail


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

Reply via email to