version 1.1, 2008/02/15 17:56:31
|
version 1.4, 2008/02/15 21:14:37
|
|
|
# n00 - for linux_ia32 machines such as n00, ..., n11, etc. | # n00 - for linux_ia32 machines such as n00, ..., n11, etc. |
# n12 - for linux_x86_64 machines | # n12 - for linux_x86_64 machines |
| |
my($scriptpath) = $0; |
use Cwd qw(realpath); |
|
|
|
my($scriptpath) = realpath($0); |
print STDOUT "make of JSOC $scriptpath\n"; | print STDOUT "make of JSOC $scriptpath\n"; |
system("date"); | system("date"); |
| |
|
my($wd); |
|
$wd = $scriptpath; |
|
|
|
if ($wd =~ /(.+)\/\S+$/) |
|
{ |
|
$wd = $1; |
|
} |
|
else |
|
{ |
|
print STDERR "Invalid make_jsoc.pl path; bailing!\n"; |
|
exit(1); |
|
} |
|
|
|
chdir($wd); |
|
|
# make clean | # make clean |
# make -j 4 | # make -j 4 |
| |