Skip to content

Commit

Permalink
KAZOO-4362: xref from within any app
Browse files Browse the repository at this point in the history
  • Loading branch information
fenollp committed Jan 26, 2016
1 parent 9023bc1 commit 65303f9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion make/kz.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Kazoo Makefile targets

.PHONY: compile json compile-test clean clean-test eunit dialyze
.PHONY: compile json compile-test clean clean-test eunit dialyze xref

SHELL = /bin/bash -o pipefail

Expand Down Expand Up @@ -83,3 +83,8 @@ $(PLT):
dialyze: TO_DIALYZE ?= $(abspath ebin)
dialyze: $(PLT) compile
@$(ROOT)/scripts/check-dialyzer.escript $(ROOT)/.kazoo.plt $(TO_DIALYZE)


xref: TO_XREF = $(EBINS)
xref: compile
@$(ROOT)/scripts/check-xref.escript $(TO_XREF)

0 comments on commit 65303f9

Please sign in to comment.