riichi/Makefile

22 lines
295 B
Makefile
Raw Permalink Normal View History

2018-04-02 14:17:49 +00:00
.PHONY: all elm elm-test riichi riichi-test test clean
all: elm riichi
2017-07-19 02:13:27 +00:00
elm:
$(MAKE) $(MAKE_FLAGS) --directory priv
2018-04-02 14:17:49 +00:00
elm-test:
riichi:
rebar3 compile
elm-test:
$(MAKE) test $(MAKE_FLAGS) --directory priv
test: elm-test
rebar3 eunit
2017-07-19 02:13:27 +00:00
clean:
$(MAKE) clean $(MAKE_FLAGS) --directory priv