Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

33 rader
318 B

  1. REBAR?=./rebar
  2. all: build
  3. clean:
  4. $(REBAR) clean
  5. rm -rf logs
  6. rm -rf .eunit
  7. rm -f test/*.beam
  8. distclean: clean
  9. git clean -fxd
  10. build:
  11. $(REBAR) compile
  12. eunit:
  13. $(REBAR) eunit skip_deps=true
  14. check: build eunit
  15. %.beam: %.erl
  16. erlc -o test/ $<
  17. .PHONY: all clean distclean depends build etap eunit check