jesse/Makefile

76 lines
1.0 KiB
Makefile
Raw Normal View History

# See LICENSE for licensing information.
2020-03-07 15:20:22 +00:00
REBAR ?= $(shell command -v rebar3 >/dev/null 2>&1 && echo "rebar3" || echo "$(CURDIR)/rebar3")
2015-12-05 23:31:05 +00:00
SRCS := $(wildcard src/* include/* rebar.config)
.PHONY: all
2020-03-07 15:20:22 +00:00
all: escript
2015-12-05 23:31:05 +00:00
# Clean
.PHONY: clean
clean:
2015-12-05 23:31:05 +00:00
$(REBAR) clean
2020-03-07 15:20:22 +00:00
.PHONY: distclean
distclean:
$(MAKE) clean
$(RM) -r _build
2015-12-05 23:31:05 +00:00
$(RM) doc/*.html
$(RM) doc/edoc-info
$(RM) doc/erlang.png
$(RM) doc/stylesheet.css
$(RM) -r logs
# Docs
.PHONY: docs
docs:
2020-03-07 15:20:22 +00:00
$(REBAR) edoc
2015-12-05 23:31:05 +00:00
# Compile
ebin/jesse.app: compile
2020-03-07 15:20:22 +00:00
.PHONY: escript
escript: ebin/jesse.app
$(REBAR) escriptize
2020-03-07 15:20:22 +00:00
./_build/default/bin/jesse --help
2015-12-05 23:31:05 +00:00
.PHONY: compile
compile: $(SRCS)
$(REBAR) compile
# Tests.
2020-03-07 15:20:22 +00:00
test/JSON-Schema-Test-Suite/tests:
git submodule init
git submodule update
.PHONY: test
2020-03-07 15:20:22 +00:00
test: elvis eunit ct xref dialyzer cover
2015-12-05 23:31:05 +00:00
.PHONY: eunit
2013-02-05 11:22:48 +00:00
eunit:
2020-03-07 15:20:22 +00:00
$(REBAR) eunit
2015-12-05 23:31:05 +00:00
.PHONY: ct
2020-03-07 15:20:22 +00:00
ct: test/JSON-Schema-Test-Suite/tests
$(REBAR) ct
.PHONY: xref
xref:
2020-03-07 15:20:22 +00:00
$(REBAR) xref
2015-12-05 23:31:05 +00:00
.PHONY: dialyzer
2020-03-07 15:20:22 +00:00
dialyzer:
$(REBAR) dialyzer
2015-12-16 14:04:29 +00:00
.PHONY: elvis
elvis:
2020-03-07 15:20:22 +00:00
$(REBAR) as test lint
.PHONY: cover
cover:
$(REBAR) cover -v