parse_trans/Makefile

22 lines
211 B
Makefile
Raw Permalink Normal View History

2013-10-14 14:06:30 +00:00
REBAR=$(shell which rebar || echo ./rebar)
.PHONY: rel all deps clean
all: deps compile
2010-09-05 12:32:59 +00:00
compile:
2013-10-14 14:06:30 +00:00
$(REBAR) compile
deps:
./rebar get-deps
2010-09-05 12:32:59 +00:00
clean:
2013-10-14 14:06:30 +00:00
$(REBAR) clean
2013-10-14 14:06:30 +00:00
test:
$(REBAR) eunit
2010-09-05 12:32:59 +00:00
doc:
2013-10-14 14:06:30 +00:00
$(REBAR) doc