diff erlang/erldc/README.txt @ 0:0cfcc391201f

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:26:28 +0100
parents
children 079718588eb6
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/erlang/erldc/README.txt	Thu Mar 19 22:26:28 2015 +0100
@@ -0,0 +1,39 @@
+BUILDING
+========
+
+To build erldc:
+
+    make DYNCALL_SRC_PATH=../dyncall ERLANG_INST_DIR=/erlang/in/this/dir all
+    sudo make ERLANG_INST_DIR=/erlang/in/this/dir install
+
+Erlang doesn't use pkg-config, so you must specify ERLANG_INC (and
+ERLANG_INST_DIR at install-time).
+
+The makefile is meant to be portable, at least across *nix.
+
+RUNNING TESTS
+=============
+
+Unit tests (via common test):
+
+    make tests
+
+Static analysis (via dialyzer):
+
+    make build-plt
+    make dialyze
+
+USING
+=====
+Examine the test suites for several examples.
+
+Dyncall is built as an OTP library application, so there's nothing
+to start or stop.
+
+TODO
+====
+
+
+AUTHORS
+=======
+Erik Mackdanz <erikmack@gmail.com>