mirror of
https://github.com/correl/riichi.git
synced 2024-11-14 11:09:36 +00:00
15 lines
192 B
Makefile
15 lines
192 B
Makefile
|
.PHONY: all deps compile test clean
|
||
|
|
||
|
REBAR=./rebar
|
||
|
|
||
|
all: deps compile
|
||
|
|
||
|
deps:
|
||
|
@$(REBAR) get-deps
|
||
|
compile: deps
|
||
|
@$(REBAR) compile
|
||
|
test:
|
||
|
@$(REBAR) skip_deps=true eunit
|
||
|
clean:
|
||
|
@$(REBAR) clean
|