Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
IBROWSE_VSN = $(shell sed -n 's/.*{vsn,.*"\(.*\)"}.*/\1/p' src/ibrowse.app.src)
|
|
|
|
all:
|
|
./rebar compile
|
|
|
|
clean:
|
|
./rebar clean
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
|
|
cp -r ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
|
|
|
|
test: all
|
|
./rebar eunit
|
|
(cd test; make)
|
|
erl -noshell -pa ebin -pa test -s ibrowse -s ibrowse_test unit_tests \
|
|
-s ibrowse_test verify_chunked_streaming \
|
|
-s ibrowse_test test_chunked_streaming_once \
|
|
-s erlang halt
|
|
|