How to do specific things with the ocs project.
...
Table of Contents |
---|
Build a Release
The complete procedure to get, build and test SigScale’s ocs project is as follows:
~$ git clone https://github.com/sigscale/ocs.git
~$ cd ocs
~/ocs$ aclocal; autoheader; autoconf; libtoolize --automake; automake --add-missing
~/ocs$ mkdir ../ocs.build
~/ocs$ cd ../ocs.build
~/ocs.build$ mkdir -p shell/lib
~/ocs.build$ ERL_LIBS=`pwd`/shell/lib ERLANG_INSTALL_LIB_DIR=`pwd`/shell/lib ../ocs/configure
~/ocs.build$ ERL_LIBS=`pwd`/shell/lib make install
~/ocs.build$ ERL_LIBS=`pwd`/shell/lib make check
Access the Erlang CLI shell
...