-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
37 lines (17 loc) · 942 Bytes
/
README
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
DESCRIPTION
This is a library of some basic input/output functions for several commonly used data formats in computational astrophysics like Tipsy, Gadget, and ART.
AUTHOR
Marcel Zemp <[email protected]>
OFFICIAL SOURCE
GitHub: https://github.com/mzemp/iof
DEPENDENCIES
None.
COMPILATION & INSTALLATION
First, clone or download the code from GitHub. In order to compile the code just type make in the iof code directory:
$> make
This will generate a static library file called libiof.a. Other code can then be linked against this library.
In order to clean up the code type:
$> make clean
Assuming that the iof code directory is located within a local library directory (e.g. ~/libraries/ under your home directory) you can type:
$> make install
in the code directory. This will then generate symbolic links to the iof.h and libiof.a in the parallel directories ~/libraries/include/ and ~/libraries/lib/, respectively.