(file) Return to make_jsoc.pl CVS log (file) (dir) Up to [Development] / JSOC

 1 arta  1.1 #!/usr/bin/perl -w 
 2           
 3           # run this on each machine to be used.
 4           #    n00 - for linux_ia32 machines such as n00, ..., n11, etc.
 5           #    n12 - for linux_x86_64 machines
 6           
 7           my($scriptpath) = $0;
 8           print STDOUT "make of JSOC $scriptpath\n";
 9           system("date");
10           
11           # make clean 
12           # make -j 4 
13           
14           if (-e "suflag.txt")
15           {
16               system("make all dsds");
17           }
18           else
19           {
20               system("make");
21           }
22 arta  1.1 
23           system("date");

Karen Tian
Powered by
ViewCVS 0.9.4