-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathINSTALL
61 lines (40 loc) · 1.59 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Installation
============
SubcloneSeeker distributes in the format of source code. You can compile and
install it on your platform with relative ease since the project is managed by
GNU autotools.
Requirement
-----------
In order to successfully compile the project, you will need no more than a
working c++ compiler on a Unix / Linux system. For generating the
documentation, you will, in addition, need Doxygen installed at places where
its binary can be found in PATH environment variable.
Getting the source code
-----------------------
The latest release of SubcloneSeeker is 1.0, which can be downloaded at
https://github.com/yiq/SubcloneSeeker
Compile
-------
Like any other project that is under the management of GNU autotools, you
perform the following from the project's source tree:
./configure
make
If you like to run the test suite, execute the following
make check
These are unit tests to ensure the correctness of the source code. They would
come in handy if you want to modify the source code
Note: The project does not support VPATH build yet. It needs to be built in the
source tree directly
Installation
------------
All the command-line utilities will be created in the 'utils' directory. They
can be run directly from there, or should you choose to, be installed into your
system (usually defaults to /usr/local/bin) with the following command
make install
This will also install the statically compiled SubcloneSeeker core library
libss.a into /usr/local/lib
Uninstall
---------
Simply execute
make uninstall
from the source tree to uninstall the binaries from your system