Created
June 28, 2017 04:12
-
-
Save HJianBo/48497bf39dfc617d5b7fe35777c55cae to your computer and use it in GitHub Desktop.
Rebar3-Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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