-
Notifications
You must be signed in to change notification settings - Fork 8
/
INSTALL
37 lines (27 loc) · 886 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
!------------------------------------------------------------------------
! Brief installation procedure
!------------------------------------------------------------------------
!
For detailed instllation procedure, please read documentation page 16--19.
The easiest way to install Calypso is the following:
1. Configuration
./configure [--prefix=/path]
2. Compile
make
3. Install
make install
4. Clean up objects
make clean
For details of the configuration, type
./configure --help
Calypso also supports CMake configuration and compilation. The procedure for this is:
1. Create build directory and configure
mkdir build ; cd build ; cmake ..
2. Compile
make
For a guided configuration, use ccmake instead of cmake:
1. Create build directory and configure
mkdir build ; cd build ; ccmake ..
2. Edit configuration options
3. Compile
make