diff --git a/.gitignore b/.gitignore index 11646f6..29ee67f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ ebin/ *~ .eunit/ -test/ *beam - diff --git a/Makefile b/Makefile index 53dfb6b..29ea9fa 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,6 @@ install: all test: all ./rebar eunit - (cd test; make) erl -noshell -pa .eunit -pa test -s ibrowse -s ibrowse_test unit_tests \ -s ibrowse_test verify_chunked_streaming \ -s ibrowse_test test_chunked_streaming_once \ diff --git a/test/Makefile b/test/Makefile deleted file mode 100644 index 2851ed2..0000000 --- a/test/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -ERL_FILES = ibrowse_test_server.erl - - -INCLUDE_DIRS = -I./ - -ERLC ?= erlc -ERLC_EMULATOR ?= erl -boot start_clean -COMPILER_OPTIONS = -W +warn_unused_vars +nowarn_shadow_vars +warn_unused_import - -.SUFFIXES: .erl .beam $(SUFFIXES) - -all: $(ERL_FILES:%.erl=%.beam) - -%.beam: %.erl - ${ERLC} $(COMPILER_OPTIONS) $(INCLUDE_DIRS) -o ./ $< - -clean: - rm -f *.beam -