25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
226 B

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