Skip to content

Commit

Permalink
Add Makefile and rebar. Remove not needed files
Browse files Browse the repository at this point in the history
  • Loading branch information
ates committed Aug 3, 2012
1 parent d3a72f5 commit 38f7f74
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
1 change: 0 additions & 1 deletion Emakefile

This file was deleted.

15 changes: 15 additions & 0 deletions Makefile
@@ -0,0 +1,15 @@
REBAR = ./rebar

.PHONY: deps

compile:
@$(REBAR) compile

deps:
@$(REBAR) get-deps

clean:
@$(REBAR) clean

test:
@$(REBAR) xref eunit skip_deps=true
Empty file removed priv/.empty
Empty file.
Binary file added rebar
Binary file not shown.
2 changes: 1 addition & 1 deletion rebar.config
Expand Up @@ -6,4 +6,4 @@
{parse_trans, ".*", {git, "https://github.com/esl/parse_trans.git", "HEAD"}}
]}.

{eunit_opts, [verbose, {report,{eunit_surefire,[{dir,"."}]}}]}.
{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.

0 comments on commit 38f7f74

Please sign in to comment.