Fix missing newline in Graphite msg serialization
[beam_stats.git] / Makefile
index 3362d04..8727235 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-REBAR := ./rebar --config rebar_test_build.config
+REBAR := ./rebar
 
 .PHONY: \
        all \
@@ -10,14 +10,18 @@ REBAR := ./rebar --config rebar_test_build.config
        deps_get \
        deps_update \
        dialyze \
-       dialyzer_blt_build \
-       test
+       dialyzer_plt_build \
+       test \
+       travis_ci
 
 all: \
+       travis_ci \
+       dialyze
+
+travis_ci: \
        clean_all \
        deps_get \
        compile_all \
-       dialyze \
        test
 
 deps_get:
@@ -43,9 +47,13 @@ clean_app:
        $(REBAR) clean skip_deps=true
 
 dialyze:
-       @dialyzer deps/*/ebin ebin
+       @dialyzer $(shell \
+               find . -name '*.beam' \
+               | grep -v deps/meck/ \
+       )
+
 
-dialyzer_blt_build:
+dialyzer_plt_build:
        @dialyzer \
                --build_plt \
                --apps $(shell ls $(shell \
This page took 0.024377 seconds and 4 git commands to generate.