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.

30 line
287 B

  1. all: build
  2. clean:
  3. ./rebar clean
  4. rm -rf logs
  5. rm -rf .eunit
  6. deps: ./deps/
  7. ./rebar get-deps update-deps
  8. build: deps
  9. ./rebar compile
  10. etap: test/etap.beam test/util.beam
  11. prove test/*.t
  12. eunit:
  13. ./rebar eunit skip_deps=true
  14. check: etap eunit
  15. %.beam: %.erl
  16. erlc -o test/ $<