Skip to content

Commit

Permalink
add local rebar
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Jul 15, 2012
1 parent f7ce1a8 commit faac80a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions Makefile
@@ -1,20 +1,21 @@
.PHONY: deps doc
REBAR?=./rebar

all: deps compile

compile:
@rebar compile

deps:
@rebar get-deps
all: build

doc:
@rebar doc

clean:
@rebar clean
@rm -f doc/*.html doc/*.css doc/edoc-info doc/*.png
$(REBAR) doc

clean:
$(REBAR) clean

distclean: clean
@rebar delete-deps
@rm -rf deps

build: deps
$(REBAR) compile

deps:
$(REBAR) get-deps


.PHONY: doc deps
Binary file added rebar
Binary file not shown.

0 comments on commit faac80a

Please sign in to comment.