forked from biocaml/biocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
46 lines (24 loc) · 778 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
36
37
38
39
40
41
42
43
44
45
46
Biocaml Installation Instructions
Install From Source
===================
Uncompress the source archive, go to the root of the package, then run
omake configure [VAR=val]
Where VAR maybe:
- `PREFIX` and its value a path (like `/usr/`)
- `BUILD_APP` (`true` or `false`, requires the Flow library)
- `BUILD_TESTS` (`true` or `false`, requires the oUnit framework)
You may check the configuration with `omake print_conf`
Them, build:
omake
and install:
omake install
there, you maybe want to override some variables:
omake install INSTALL_BINDIR=some/path
To compile documentation, do
omake doc
To uninstall, do
omake uninstall
You may also build the `TAGS` file (requires `otags`):
omake TAGS
or run the test suite:
omake test