Last change
on this file since 10064 was 10064, checked in by Eric.Larour, 13 years ago |
Getting svn to ignore some files
|
-
Property svn:executable
set to
*
|
File size:
263 bytes
|
Rev | Line | |
---|
[10064] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | #get number of CPUS
|
---|
| 4 | NUMCPUS=$1;
|
---|
| 5 |
|
---|
| 6 | #Some cleanup
|
---|
| 7 | rm -rf angel
|
---|
| 8 |
|
---|
| 9 | #download
|
---|
| 10 | svn co -r 82 https://angellib.svn.sourceforge.net/svnroot/angellib/trunk angel
|
---|
| 11 |
|
---|
| 12 | #Apply patches
|
---|
| 13 | cd angel
|
---|
| 14 |
|
---|
| 15 | #Compile angel
|
---|
| 16 | if [ -z $NUMCPUS ];
|
---|
| 17 | then
|
---|
| 18 | make
|
---|
| 19 | else
|
---|
| 20 | make -j $NUMCPUS
|
---|
| 21 | fi
|
---|
Note:
See
TracBrowser
for help on using the repository browser.