您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

17 行
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