Browse Source

Alphabetical order build.config

Loïc Hoguin 10 years ago
parent
commit
7424068900
2 changed files with 23 additions and 23 deletions
  1. 1 1
      build.config
  2. 22 22
      erlang.mk

+ 1 - 1
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

+ 22 - 22
erlang.mk

@@ -656,6 +656,28 @@ dialyze: $(DIALYZER_PLT)
 endif
 	@dialyzer --no_native --src -r src $(DIALYZER_OPTS)
 
+# Copyright (c) 2013-2014, Loïc Hoguin <essen@ninenines.eu>
+# 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 <juan@inaka.net>
 # 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 <essen@ninenines.eu>
 # 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 <essen@ninenines.eu>
-# 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.