You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 regels
357 B

.PHONY: all compile deps clean distclean test check_plt build_plt dialyzer \
cleanplt
all: deps compile
compile: deps
./rebar compile
deps:
test -d deps || ./rebar get-deps
clean:
./rebar clean
distclean: clean
./rebar delete-deps
DIALYZER_APPS = kernel stdlib erts sasl eunit syntax_tools compiler crypto \
common_test
include tools.mk