add erlang.fake
Makefile to support erlang.mk
This commit is contained in:
parent
6b333396a3
commit
55eaa7b524
1 changed files with 17 additions and 6 deletions
21
Makefile
21
Makefile
|
@ -1,8 +1,19 @@
|
|||
all:
|
||||
rebar compile
|
||||
|
||||
test:
|
||||
rebar eunit
|
||||
all: deps
|
||||
|
||||
deps:
|
||||
rebar get-deps
|
||||
rebar compile
|
||||
|
||||
app:
|
||||
rebar compile
|
||||
|
||||
tests:
|
||||
rebar eunit
|
||||
|
||||
clean:
|
||||
rebar clean
|
||||
|
||||
distclean: clean
|
||||
rebar delete-deps
|
||||
|
||||
.PHONY: all deps app tests clean distclean
|
Loading…
Add table
Add a link
Reference in a new issue