-
Notifications
You must be signed in to change notification settings - Fork 1
/
Readme
69 lines (36 loc) · 1.31 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
================================================================================
How to build Cfits
PLEASE READ THIS FIRST !!!
================================================================================
Cfits is built with a core set of modules, plus other modules. The instructions
in this file are for building Cfits on UNIX systems (tested on several versions
of Linux, OS-X)
o REQUIRED LIBRARIES
static libraries:
- readline
- fitsio
- fftw3 (install both single and double precision)
- gsl & gslcblas
IMPORTANT: make sure you install the STATIC libraries
Under ubuntu, installing the most recent (as of Oct 2010) version of these
libraries will be done by typing:
sudo apt-get install libreadline6-dev
sudo apt-get install libcfitsio3-dev
sudo apt-get install fftw3-dev
sudo apt-get install fftw-single-dev
sudo apt-get install fftw-double-dev
sudo apt-get install libgsl0-dev
o DOWNLOAD CFITS
https://github.com/oguyon/Cfits
o COMPILE AND INSTALL
./configure
make
make install
The executable is ./bin/Cfits
o DOCUMENTATION
# Documentation is based on doxygen:
sudo apt-get install doxygen
# To create documentation:
doxygen
# documentation is in ./html/index.html
http://rickfoosusa.blogspot.com/2011/10/howto-use-doxygen-with-github.html