Makefile 165 B

1234567891011121314
  1. ERL=erl
  2. all:
  3. $(ERL) -make
  4. run:
  5. $(ERL) -pa `pwd`/ebin
  6. test:
  7. $(ERL) -noshell -s erlydtl_unittests run_tests
  8. clean:
  9. rm -fv ebin/*.beam
  10. rm -fv erl_crash.dump