summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorViacheslav V. Kovalev <kovyl2404@gmail.com>2015-05-01 00:23:51 +0300
committerViacheslav V. Kovalev <kovyl2404@gmail.com>2015-05-01 00:23:51 +0300
commit33736f32a9a8bfd30711270e8f1376280915d697 (patch)
tree11924915352287650253a73ae7254af241c07625 /Makefile
parent29a855d31c7fe7fd7504f5d0ec95c9a55e27276f (diff)
parent7645a1118f0e5cdc27e010905f5072021559ddfd (diff)
Merge branch 'master' into app-discover-profile-duplication
Conflicts: test/rebar_profiles_SUITE.erl
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile43
1 files changed, 0 insertions, 43 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 49f5758..0000000
--- a/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-.PHONY: clean xref_warnings deps test
-
-REBAR=$(PWD)/rebar3
-RETEST=$(PWD)/deps/retest/retest
-
-DEPS_PLT=$(CURDIR)/.depsolver_plt
-
-all:
- @./bootstrap/rebar get-deps compile escriptize
-
-clean:
- @rm -rf rebar3 ebin/*.beam inttest/rt.work rt.work .eunit
- @rm -f .rebarinfo
-
-distclean: clean
- @rm -rf deps
-
-debug:
- @./bootstrap/bootstrap debug
-
-check: debug xref deps test
-
-xref:
- @./rebar3 xref
-
-$(DEPS_PLT):
- @echo Building local erts plt at $(DEPS_PLT)
- @echo
- dialyzer --output_plt $(DEPS_PLT) --build_plt \
- --apps erts kernel stdlib -r deps
-
-dialyzer: $(DEPS_PLT)
- dialyzer --fullpath --plt $(DEPS_PLT) -Wno_opaque -Wrace_conditions -r ./ebin
-
-binary: VSN = $(shell ./rebar3 -V)
-binary: clean all
- @cp rebar3 ../rebar.wiki/rebar
- (cd ../rebar.wiki && git commit -m "Update $(VSN)" rebar)
-
-test:
- rebar ct
-
-travis: all test