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.

17 lines
210 B

  1. all: build
  2. %.beam: %.erl
  3. erlc -o test/ $<
  4. build: c_src/decoder.c
  5. ./rebar compile
  6. check: test/etap.beam test/util.beam
  7. prove test/*.t
  8. clean:
  9. rm -rf logs .eunit
  10. ct:
  11. ./rebar ct skip_deps=true verbose=1