From 40931b215827c3d115f80134f0d5c053a43c3df7 Mon Sep 17 00:00:00 2001 From: Serge Aleynikov Date: Tue, 16 Dec 2014 19:45:44 -0500 Subject: [PATCH] Added Makefile and rebar --- Makefile | 12 ++++++++++++ rebar.config | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 Makefile create mode 100644 rebar.config diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a0dce35 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +all: + rebar compile + +clean: + rebar clean + @rm -f erl_crash.dump + +test: + rebar eunit + +.PHONY: test diff --git a/rebar.config b/rebar.config new file mode 100644 index 0000000..4c3c3ff --- /dev/null +++ b/rebar.config @@ -0,0 +1,4 @@ +%% -*- erlang -*- +{erl_opts, [debug_info]}. +{edoc_opts, [{doclet, edown_doclet}, + {app_default, "http://www.erlang.org/doc/man"}]}.