Last change
on this file since 9712 was 9712, checked in by Eric.Larour, 14 years ago |
new xaifbooster package
|
-
Property svn:executable
set to
*
|
File size:
257 bytes
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 |
|
---|
3 | #get number of CPUS
|
---|
4 | NUMCPUS=$1;
|
---|
5 |
|
---|
6 | #Some cleanup
|
---|
7 | rm -rf xaifBooster
|
---|
8 |
|
---|
9 | #download
|
---|
10 | svn co -r 125 http://hpc.svn.rice.edu/r/xaifBooster/trunk xaifBooster
|
---|
11 |
|
---|
12 | cd xaifBooster
|
---|
13 |
|
---|
14 | #Compile xaifBooster
|
---|
15 | if [ -z $NUMCPUS ];
|
---|
16 | then
|
---|
17 | make
|
---|
18 | else
|
---|
19 | make -j $NUMCPUS
|
---|
20 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.