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.

31 line
303 B

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