mirror of
https://github.com/correl/riichi.git
synced 2024-11-23 11:09:56 +00:00
21 lines
295 B
Makefile
21 lines
295 B
Makefile
.PHONY: all elm elm-test riichi riichi-test test clean
|
|
|
|
all: elm riichi
|
|
|
|
elm:
|
|
$(MAKE) $(MAKE_FLAGS) --directory priv
|
|
|
|
elm-test:
|
|
|
|
|
|
riichi:
|
|
rebar3 compile
|
|
|
|
elm-test:
|
|
$(MAKE) test $(MAKE_FLAGS) --directory priv
|
|
|
|
test: elm-test
|
|
rebar3 eunit
|
|
|
|
clean:
|
|
$(MAKE) clean $(MAKE_FLAGS) --directory priv
|