Add a simple Makefile that calls rebar.

This commit is contained in:
Gregory Burd 2011-08-08 16:28:40 -04:00
parent b45cf7c743
commit d9cfac5197

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
all: compile
compile:
@ ./rebar compile
tests:
@ ./rebar eunit
clean:
@ ./rebar clean