mirror of
https://github.com/valitydev/parse_trans.git
synced 2024-11-06 08:35:17 +00:00
22 lines
211 B
Makefile
22 lines
211 B
Makefile
REBAR=$(shell which rebar || echo ./rebar)
|
|
|
|
.PHONY: rel all deps clean
|
|
|
|
all: deps compile
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
deps:
|
|
./rebar get-deps
|
|
|
|
clean:
|
|
$(REBAR) clean
|
|
|
|
test:
|
|
$(REBAR) eunit
|
|
|
|
doc:
|
|
$(REBAR) doc
|
|
|