Installing qfits as an ANSI C library ------------------------------------- % ./configure % make That should do it. You should now have a library called libqfits.a in the lib/ directory, and the include files you need are in the include/ directory. To review possible configure options, type: % configure --help To install this library system-wide, use: % make install This will install the library in /opt/qfits. To change the destination, use the --prefix option from configure. Example: to install under /usr/local/qfits you would do: % configure --prefix=/usr/local/qfits If you want to perform basic tests, use: % make tests Using qfits from C++ -------------------- Compile the C library and link your C++ program against libqfits.a. This will avoid a number of issues with your C++ compiler trying to compile a C library. Installing qfits as a Python module ----------------------------------- See python/README in this directory. Using qfits from other languages -------------------------------- This used to be offered through a SWIG interface file, but is not supported any more. Fri Nov 30 11:36:29 CET 2001