jsx/Makefile

19 lines
191 B
Makefile
Raw Permalink Normal View History

all: deps
deps:
rebar get-deps
rebar compile
app:
rebar compile
tests:
rebar eunit
clean:
rebar clean
distclean: clean
rebar delete-deps
.PHONY: all deps app tests clean distclean