mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
29 lines
629 B
Org Mode
29 lines
629 B
Org Mode
#+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:
|
|
|
|
: make install PREFIX=/usr # install into PREFIX
|
|
: make install DESTDIR=/tmp/t # install into DESTDIR
|
|
: 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
|
|
|
|
On BSD try this:
|
|
|
|
: sudo gmake install PREFIX=/usr/local
|
|
|