diff options
author | Loïc Hoguin <[email protected]> | 2014-11-01 16:22:04 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-11-01 16:22:04 +0100 |
commit | 7424068900b645ed4cf12d21fbec5865f3b3a13c (patch) | |
tree | f45486733e68003624549eb5181bed41b5633869 | |
parent | 409f4225a39312e74d1e7ba30cf487a8291bfc80 (diff) | |
download | erlang.mk-7424068900b645ed4cf12d21fbec5865f3b3a13c.tar.gz erlang.mk-7424068900b645ed4cf12d21fbec5865f3b3a13c.tar.bz2 erlang.mk-7424068900b645ed4cf12d21fbec5865f3b3a13c.zip |
Alphabetical order build.config
-rw-r--r-- | build.config | 2 | ||||
-rw-r--r-- | erlang.mk | 44 |
2 files changed, 23 insertions, 23 deletions
diff --git a/build.config b/build.config index f608559..9df8520 100644 --- a/build.config +++ b/build.config @@ -13,8 +13,8 @@ plugins/bootstrap #plugins/c_src plugins/ct plugins/dialyzer +plugins/edoc plugins/elvis plugins/erlydtl -plugins/edoc plugins/relx plugins/shell @@ -656,6 +656,28 @@ dialyze: $(DIALYZER_PLT) endif @dialyzer --no_native --src -r src $(DIALYZER_OPTS) +# Copyright (c) 2013-2014, Loïc Hoguin <[email protected]> +# This file is part of erlang.mk and subject to the terms of the ISC License. + +.PHONY: distclean-edoc + +# Configuration. + +EDOC_OPTS ?= + +# Core targets. + +docs:: distclean-edoc + $(gen_verbose) erl -noshell \ + -eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), init:stop().' + +distclean:: distclean-edoc + +# Plugin-specific targets. + +distclean-edoc: + $(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info + # Copyright (c) 2014, Juan Facorro <[email protected]> # This file is part of erlang.mk and subject to the terms of the ISC License. @@ -727,28 +749,6 @@ endif # Copyright (c) 2013-2014, Loïc Hoguin <[email protected]> # This file is part of erlang.mk and subject to the terms of the ISC License. -.PHONY: distclean-edoc - -# Configuration. - -EDOC_OPTS ?= - -# Core targets. - -docs:: distclean-edoc - $(gen_verbose) erl -noshell \ - -eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), init:stop().' - -distclean:: distclean-edoc - -# Plugin-specific targets. - -distclean-edoc: - $(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info - -# Copyright (c) 2013-2014, Loïc Hoguin <[email protected]> -# This file is part of erlang.mk and subject to the terms of the ISC License. - .PHONY: relx-rel distclean-relx-rel distclean-relx # Configuration. |