Remove rebar from the repository. Use the $PATH one by default.

This commit is contained in:
Loïc Hoguin 2011-04-19 12:44:46 +02:00
parent 0a399238f4
commit 72726bdf6c
2 changed files with 12 additions and 3 deletions

View File

@ -16,14 +16,23 @@
# You should have received a copy of the GNU Affero General Public License
# along with EGS. If not, see <http://www.gnu.org/licenses/>.
REBAR = rebar
all: server
server: deps
@./rebar compile
@$(REBAR) compile
deps:
@./rebar get-deps
@$(REBAR) get-deps
clean:
@./rebar clean
@$(REBAR) clean
rm -f erl_crash.dump
tests:
@$(REBAR) eunit
@$(REBAR) ct
dialyze:
@$(REBAR) dialyze

BIN
rebar vendored

Binary file not shown.