1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
This is a script simplying skypat's building process.
==============
Usage
--------------
1. Copy `build.sh`
copy this script out of ${SKYPAT_SRC}. For example, if you download skypat source code
at /opt/skypat, then you should copy this script in /opt
[user@localhost]$ cp ./build.sh ../../../ && cd ../../../
2. Run `build.sh`
You can build `skypat` at three different levels: debug, optimized and normal.
The default level is normal.
Usage:
./build.sh [skypat source] [dbg|opt|normal]
Example:
[user@localhost]$ ./build.sh ./skypat dbg
or
[user@localhost]$ ./build.sh ./skypat
|