From 605b7e9f7f2f476d5df9d4bd45a2cc97bdb06dfa Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Wed, 22 Apr 2015 22:02:26 -0500 Subject: remove makefile --- Makefile | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Makefile 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 -- cgit v1.1