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.

25 lines
554 B

14 years ago
14 years ago
  1. IBROWSE_VSN = $(shell sed -n 's/.*{vsn,.*"\(.*\)"}.*/\1/p' src/ibrowse.app.src)
  2. all:
  3. ./rebar compile
  4. clean:
  5. ./rebar clean
  6. install: all
  7. mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  8. cp -r ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  9. test: all
  10. ./rebar eunit
  11. erl -noshell -pa .eunit -pa test -s ibrowse -s ibrowse_test unit_tests \
  12. -s ibrowse_test verify_chunked_streaming \
  13. -s ibrowse_test test_chunked_streaming_once \
  14. -s erlang halt
  15. xref: all
  16. ./rebar xref
  17. docs:
  18. erl -noshell \
  19. -eval 'edoc:application(ibrowse, ".", []), init:stop().'