Skip to content

Instantly share code, notes, and snippets.

@HJianBo
Created June 28, 2017 04:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HJianBo/48497bf39dfc617d5b7fe35777c55cae to your computer and use it in GitHub Desktop.
Save HJianBo/48497bf39dfc617d5b7fe35777c55cae to your computer and use it in GitHub Desktop.
Rebar3-Makefile
REBAR3_URL=https://s3.amazonaws.com/rebar3/rebar3
ifeq ($(wildcard rebar3),rebar3)
REBAR3 = $(CURDIR)/rebar3
endif
REBAR3 ?= $(shell test -e `which rebar3` 2>/dev/null && which rebar3 || echo "./rebar3")
ifeq ($(REBAR3),)
REBAR3 = $(CURDIR)/rebar3
endif
.PHONY: deps test build
# build test docs
all: build
build: $(REBAR3)
@$(REBAR3) compile
$(REBAR3):
wget $(REBAR3_URL) || curl -Lo rebar3 $(REBAR3_URL)
@chmod a+x rebar3
deps:
@$(REBAR3) get-deps
clean:
@$(REBAR3) clean
distclean: clean
@$(REBAR3) delete-deps
docs:
@$(REBAR3) edoc
test:
@$(REBAR3) do ct, cover
release:
@$(REBAR3) release
prod:
@$(REBAR3) as prod tar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment