log_monitor/Makefile

25 lines
209 B
Makefile
Raw Normal View History

2017-07-03 11:09:25 +02:00
REBAR=rebar3
all: release
2017-07-03 17:33:30 +02:00
prod:
${REBAR} as prod tar
2017-07-03 11:09:25 +02:00
release:
${REBAR} release
compile:
${REBAR} compile
2017-07-03 17:33:30 +02:00
code:
${REBAR} dialyzer
test:
${REBAR} eunit
2017-07-03 11:09:25 +02:00
doc:
${REBAR} edoc
clean:
${REBAR} clean