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.

13 lines
337 B

9 years ago
9 years ago
  1. REBAR ?= $(shell which rebar3)
  2. test: compile
  3. @erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test local_unit_tests -s erlang halt
  4. old_tests: compile
  5. @erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test unit_tests -s erlang halt
  6. compile:
  7. @erl -pa ../../ibrowse/ebin -make
  8. clean:
  9. $(REBAR) clean