source: CPL/oasis3/trunk/util/compile/frames/include/Input_check_all_frm.h @ 1677

Last change on this file since 1677 was 1677, checked in by aclsce, 12 years ago

Imported oasis3 (tag ipslcm5a) from cvs server to svn server (igcmg project).

File size: 573 bytes
Line 
1######################## Input checks : all  ########################
2#
3#
4
5if [ "${make_target}" != "clean" ] && \
6   [ "${make_target}" != "all" ]   && \
7   [ "${make_target}" != "lib" ]   && \
8   [ "${make_target}" != "tar" ];       then
9  echo " Invalid target : "${make_target}
10  echo " The task is stopped!"
11  exit 1
12fi
13
14if [ "${message_passing}" != "MPI2" ] && \
15   [ "${message_passing}" != "MPI1" ] && \
16   [ "${message_passing}" != "NONE" ];     then
17  echo " Invalid option for message passing : "${message_passing}
18  echo " The task is stopped!"
19  exit 1
20fi
21
Note: See TracBrowser for help on using the repository browser.