24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-12 21:52:07 +02:00

Update dialyzer target

This commit is contained in:
Evgeniy Khramtsov 2013-05-09 01:14:58 +10:00
parent 7f11f4a1fb
commit 3d4775d555

View File

@ -79,12 +79,6 @@ src:
translations:
contrib/extract_translations/prepare-translation.sh -updateall
doc:
@subdirs="$(SUBDIRS)"; for subdir in $$subdirs; do \
echo making $$target in $$subdir; \
(cd $$subdir && $(MAKE) $$target) || exit 1; \
done
doc:
echo making $$target in doc; \
(cd doc && $(MAKE) $$target) || exit 1
@ -225,7 +219,17 @@ TAGS:
Makefile: Makefile.in
dialyzer: $(BEAMS)
@dialyzer -c .
erlang.plt:
-dialyzer --build_plt --output_plt erlang.plt \
--apps kernel stdlib sasl crypto public_key ssl mnesia \
inets odbc tools compiler erts webtool runtime_tools asn1 \
observer xmerl et gs wx deps/*/ebin
.PHONY: src doc edoc dialyzer Makefile TAGS clean distclean rel
plt: erlang.plt
dialyzer: plt
-dialyzer --plt erlang.plt --add_to_plt --output_plt ejabberd.plt \
--get_warnings -o dialyzer.log ebin
.PHONY: src doc edoc dialyzer Makefile TAGS clean clean-rel distclean rel plt \
install uninstall uninstall-binary uninstall-all translations