mirror of
https://github.com/valitydev/erlang_uac.git
synced 2024-11-06 01:35:23 +00:00
68 lines
1.0 KiB
Makefile
68 lines
1.0 KiB
Makefile
REBAR := $(shell which rebar3 2>/dev/null || which ./rebar3)
|
|
SUBMODULES = build_utils
|
|
SUBTARGETS = $(patsubst %,%/.git,$(SUBMODULES))
|
|
|
|
UTILS_PATH := build_utils
|
|
TEMPLATES_PATH := .
|
|
|
|
# Name of the service
|
|
SERVICE_NAME := erlang_uac
|
|
|
|
BUILD_IMAGE_NAME := build-erlang
|
|
BUILD_IMAGE_TAG := 1333d0926b203e00c47e4fad7e10d2252a020305
|
|
|
|
CALL_ANYWHERE := \
|
|
submodules \
|
|
all compile xref lint dialyze test cover \
|
|
start clean distclean check_format format
|
|
|
|
CALL_W_CONTAINER := $(CALL_ANYWHERE)
|
|
|
|
.PHONY: $(CALL_W_CONTAINER) all
|
|
|
|
all: compile
|
|
|
|
-include $(UTILS_PATH)/make_lib/utils_container.mk
|
|
|
|
$(SUBTARGETS): %/.git: %
|
|
git submodule update --init $<
|
|
touch $@
|
|
|
|
submodules: $(SUBTARGETS)
|
|
|
|
compile:
|
|
$(REBAR) compile
|
|
|
|
xref:
|
|
$(REBAR) xref
|
|
|
|
lint:
|
|
elvis rock -V
|
|
|
|
check_format:
|
|
$(REBAR) fmt -c
|
|
|
|
format:
|
|
$(REBAR) fmt -w
|
|
|
|
dialyze:
|
|
$(REBAR) as test dialyzer
|
|
|
|
start: submodules
|
|
$(REBAR) run
|
|
|
|
clean:
|
|
$(REBAR) cover -r
|
|
$(REBAR) clean
|
|
|
|
distclean:
|
|
$(REBAR) clean
|
|
rm -rf _build
|
|
|
|
cover:
|
|
$(REBAR) cover
|
|
|
|
# CALL_W_CONTAINER
|
|
test:
|
|
$(REBAR) ct
|