libpsyc/INSTALL.org

30 lines
629 B
Org Mode
Raw Permalink Normal View History

#+TITLE: libpsyc INSTALL file
#+OPTIONS: toc:nil num:nil
* Requirements
libpsyc is currently known to compile under Linux and SunOS.
It depends on no one.
* Compiling libpsyc
Type
: make
and you are done.
Other possible targets include:
1984-04-04 00:44:06 +00:00
: make install PREFIX=/usr # install into PREFIX
: make install DESTDIR=/tmp/t # install into DESTDIR
1984-04-04 00:44:05 +00:00
: make diet # compile with diet libc
: make test # compile and run the tests
: make doc # generate the API documentation using doxygen
# (will be put in the doc folder)
: make help # display the possible targets
2016-01-29 23:33:29 +00:00
On BSD try this:
1984-04-04 00:44:06 +00:00
: sudo gmake install PREFIX=/usr/local
2016-01-29 23:33:29 +00:00