25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

Makefile: Add support to run "make format" when compiling with mix

This commit is contained in:
Badlop 2024-11-22 10:48:05 +01:00
parent c7b29b5a9a
commit 2137602a6a

View File

@ -3,7 +3,8 @@
#
ESCRIPT = @ESCRIPT@
REBAR = @rebar@
REBAR = @rebar@ # This rebar|rebar3|mix binary (or path to binary)
REBAR3 = @REBAR3@ # This is path to rebar3 binary
MIX = @rebar@
AWK = @AWK@
INSTALL = @INSTALL@
@ -266,7 +267,7 @@ _build/edoc/logo.png: edoc_compile
#
format:
tools/rebar3-format.sh $(REBAR)
tools/rebar3-format.sh $(REBAR3)
indent:
tools/emacs-indent.sh
@ -702,7 +703,7 @@ help:
@echo " translations Extract translation files"
@echo " TAGS Generate tags file for text editors"
@echo ""
@echo " format Format source code using rebar3_format [rebar3]"
@echo " format Format source code using rebar3_format"
@echo " indent Indent source code using erlang-mode [emacs]"
@echo ""
@echo " dialyzer Run Dialyzer static analyzer"