mirror of
https://github.com/correl/riichi.git
synced 2024-11-14 03:00:12 +00:00
14 lines
192 B
Makefile
14 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
|