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 rivejä
357 B

14 vuotta sitten
14 vuotta sitten
11 vuotta sitten
  1. .PHONY: all compile deps clean distclean test check_plt build_plt dialyzer \
  2. cleanplt
  3. all: deps compile
  4. compile: deps
  5. ./rebar compile
  6. deps:
  7. test -d deps || ./rebar get-deps
  8. clean:
  9. ./rebar clean
  10. distclean: clean
  11. ./rebar delete-deps
  12. DIALYZER_APPS = kernel stdlib erts sasl eunit syntax_tools compiler crypto \
  13. common_test
  14. include tools.mk