From 1a6311a3a4933e767ba057780cefe1600f50f5c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 7 Dec 2018 14:45:07 +0100 Subject: Update user guide --- guide/asciidoc.html | 10 +++---- guide/ci.html | 8 ++--- guide/compat.html | 12 ++++---- guide/contributing.html | 14 ++++----- guide/coverage.html | 2 +- guide/cross_compiling.html | 73 ++++++++++++++++++++++++++++++++++++++++++++++ guide/ct.html | 10 +++---- guide/deps.html | 19 ++++++++---- guide/dialyzer.html | 14 +++++---- guide/edoc.html | 10 +++---- guide/eunit.html | 10 +++---- guide/history.html | 6 ++-- guide/index.html | 2 +- guide/kerl.html | 6 ++-- guide/overview.html | 20 ++++++------- guide/plugins_list.html | 24 ++++++++------- guide/plugins_usage.html | 12 ++++---- guide/shell.html | 6 ++-- guide/sphinx.html | 10 +++---- guide/triq.html | 2 +- guide/why.html | 14 ++++----- guide/xref.html | 2 +- 22 files changed, 186 insertions(+), 100 deletions(-) create mode 100644 guide/cross_compiling.html (limited to 'guide') diff --git a/guide/asciidoc.html b/guide/asciidoc.html index 33a6481..88f7ca3 100644 --- a/guide/asciidoc.html +++ b/guide/asciidoc.html @@ -33,12 +33,12 @@ div.navfooter{margin-bottom:1em}
-

Chapter 14. AsciiDoc documentation

Erlang.mk provides rules for generating documentation from +

Chapter 15. AsciiDoc documentation

Erlang.mk provides rules for generating documentation from AsciiDoc files. It can automatically build a user guide PDF, -chunked HTML documentation and Unix manual pages.

14.1. Requirements

It is necessary to have AsciiDoc, +chunked HTML documentation and Unix manual pages.

15.1. Requirements

It is necessary to have AsciiDoc, xsltproc and dblatex installed on your -system for Erlang.mk to generate documentation from AsciiDoc sources.

14.2. Writing AsciiDoc documentation

AsciiDoc is a text document format for +system for Erlang.mk to generate documentation from AsciiDoc sources.

15.2. Writing AsciiDoc documentation

AsciiDoc is a text document format for writing notes, documentation, articles, books, ebooks, slideshows, web pages, man pages and blogs. AsciiDoc files can be translated to many formats including HTML, PDF, EPUB, man page.

The AsciiDoc user guide @@ -48,8 +48,8 @@ file is doc/src/guide/ for the user guide, and doc/src/manual/ for the function reference. In the case of the user guide, the entry point is always doc/src/guide/book.asciidoc.

For manual pages, it is good practice to use section 3 for -modules, and section 7 for the application itself.

14.3. Configuration

All of the AsciiDoc related configuration can be done directly -inside the files themselves.

14.4. Usage

To build all documentation:

$ make docs

To build only the AsciiDoc documentation:

$ make asciidoc

To build only the user guide:

$ make asciidoc-guide

To build only the manual:

$ make asciidoc-manual

To install man pages on Unix:

$ make install-docs

Erlang.mk allows customizing the installation path and sections +modules, and section 7 for the application itself.

15.3. Configuration

All of the AsciiDoc related configuration can be done directly +inside the files themselves.

15.4. Usage

To build all documentation:

$ make docs

To build only the AsciiDoc documentation:

$ make asciidoc

To build only the user guide:

$ make asciidoc-guide

To build only the manual:

$ make asciidoc-manual

To install man pages on Unix:

$ make install-docs

Erlang.mk allows customizing the installation path and sections of the man pages to be installed. The MAN_INSTALL_PATH variable defines where man pages will be installed. It defaults to /usr/local/share/man. The MAN_SECTIONS variable defines diff --git a/guide/ci.html b/guide/ci.html index 998c3cf..436b63d 100644 --- a/guide/ci.html +++ b/guide/ci.html @@ -33,11 +33,11 @@ div.navfooter{margin-bottom:1em}

-

Chapter 22. Continuous integration

Erlang.mk comes with some support for continuous integration, +

Chapter 23. Continuous integration

Erlang.mk comes with some support for continuous integration, aimed at open source projects that need to support more than one specific Erlang/OTP release. (If you target one specific release, check the OTP version pinning -section of the OTP version management chapter.)

22.1. Configuring Erlang/OTP versions to test

To use the CI plugin you must first configure which versions +section of the OTP version management chapter.)

23.1. Configuring Erlang/OTP versions to test

To use the CI plugin you must first configure which versions of Erlang/OTP will be used. Erlang.mk provides three separate configuration variables depending on whether you need a normal OTP release, a HiPE-enabled release or an ErLLVM-enabled release.

At the time of writing, this is how you would test against all @@ -45,9 +45,9 @@ the most recent patch releases of Erlang/OTP 19 and above:

CI_HIPE = $(lastword $(CI_OTP))
 CI_ERLLVM = $(CI_HIPE)

Consult the OTP version management chapter for more information about Erlang/OTP versions and customization of the -Erlang/OTP builds.

22.2. Running tests across all configured versions

The recommended way to run the ci target is with the option +Erlang/OTP builds.

23.2. Running tests across all configured versions

The recommended way to run the ci target is with the option -k. It will ensure that tests are run for all configured -Erlang/OTP versions, even if there are errors:

$ make ci -k

22.3. Extending the CI targets

The ci target can be extended. For example to run Dialyzer +Erlang/OTP versions, even if there are errors:

$ make ci -k

23.3. Extending the CI targets

The ci target can be extended. For example to run Dialyzer at the end of CI:

ci:: dialyze

Additional setup can be done by extending the ci-setup target. This target is ran before testing each individual Erlang/OTP version.

For example, to ensure dependencies are re-fetched/built diff --git a/guide/compat.html b/guide/compat.html index 18377ee..f8bf98d 100644 --- a/guide/compat.html +++ b/guide/compat.html @@ -33,24 +33,24 @@ div.navfooter{margin-bottom:1em}

-

Chapter 13. Compatibility with other build tools

Erlang.mk tries its best to be compatible with the other Erlang +

Chapter 14. Compatibility with other build tools

Erlang.mk tries its best to be compatible with the other Erlang build tools. It can use dependencies written with other build tools in mind, and can also make your projects usable by those build tools as well. Erlang.mk is like the cool kid that gets along with everybody.

In this chapter I will use the term Rebar project to refer to a project built using Rebar 2, Rebar 3 or Mad. These three build tools are very similar and share the same configuration -file.

13.1. Rebar projects as Erlang.mk dependencies

Erlang.mk comes with a feature called Autoload which will +file.

14.1. Rebar projects as Erlang.mk dependencies

Erlang.mk comes with a feature called Autoload which will use Rebar 2 to patch any Rebar project and make it compatible with Erlang.mk. This feature essentially patches Rebar out and adds a Makefile to the project that Erlang.mk can then use for building:

Autoload is documented in more details in the -Packages and dependencies chapter.

13.2. Erlang.mk projects as Rebar dependencies

Erlang.mk projects can be made compatible with the Rebar family +Packages and dependencies chapter.

14.2. Erlang.mk projects as Rebar dependencies

Erlang.mk projects can be made compatible with the Rebar family of build tools pretty easily, as Erlang.mk will generate all the files they require for building.

The Rebar family requires two files: a rebar.config file containing compilation options and the list of dependencies, and the application resource file, found either at -ebin/$(PROJECT).app or at src/$(PROJECT).app.src.

13.2.1. Rebar configuration

Erlang.mk comes with a target that generates a rebar.config +ebin/$(PROJECT).app or at src/$(PROJECT).app.src.

14.2.1. Rebar configuration

Erlang.mk comes with a target that generates a rebar.config file when invoked:

$ make rebar.config

Careful! This will build the file even if it already existed before.

To build this file, Erlang.mk uses information it finds in the DEPS and ERLC_OPTS variables, among others. This @@ -65,7 +65,7 @@ target:

app:: rebar.config

Don’t forget feature specific to Erlang.mk, like the cp fetch method. It could also be that we forgot to handle something! Sorry. We are of course interested to hear about any compatibility -problems you may have, just open a ticket!

13.2.2. Application resource file

Erlang.mk has two ways to generate an application resource +problems you may have, just open a ticket!

14.2.2. Application resource file

Erlang.mk has two ways to generate an application resource file: from the information found in the Makefile, or from the information found in the src/$(PROJECT).app.src file. Needless to say, if you have this file in your repository, @@ -74,7 +74,7 @@ build tools.

If you don’t, however, it’s not much harder. Every time Erlang.mk will compile your application, it will produce a new ebin/$(PROJECT).app file. Simply commit this file when it changes. It will only change when you modify the -configuration, add or remove modules.

+configuration, add or remove modules.

diff --git a/guide/contributing.html b/guide/contributing.html index 9da6481..c536434 100644 --- a/guide/contributing.html +++ b/guide/contributing.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}
-

Chapter 29. Contributing

You are welcome and encouraged to contribute.

This is how.

29.1. Priorities

From the most important to the least important:

  • +

    Chapter 30. Contributing

    You are welcome and encouraged to contribute.

    This is how.

    30.1. Priorities

    From the most important to the least important:

    • Bugs
    • Package issues/additions @@ -41,7 +41,7 @@ Package issues/additions Refactoring
    • Features -

    29.2. Bugs

    If you have found a bug, you should open a ticket. Include +

30.2. Bugs

If you have found a bug, you should open a ticket. Include everything relevant including the command you used, output, a link to the code that triggers the issue, why you think this is a bug, etc.

If you think you have found a bug but you are not sure, you @@ -49,7 +49,7 @@ should open a ticket as previously explained.

If you have found a bug and NOW, open a ticket as previously explained.

Once you have opened a ticket, be patient, try to answer questions in a timely manner and confirm that the bug was indeed fixed when it is.

If you can’t be patient, either try to solve the bug and -contribute the fix back or become a paying customer.

29.3. Code

The code is located in the core/*.mk and plugins/*.mk files. +contribute the fix back or become a paying customer.

30.3. Code

The code is located in the core/*.mk and plugins/*.mk files. The tests are located in the test/Makefile and test/*.mk files.

If you have a fix or a hack for a bug, you should open a pull request. Any fix should include a test case that fails before the fix and is working after.

If you have a test case that reproduces a bug, but no fix for @@ -62,7 +62,7 @@ The value 4 is particular and shows expanded commands right before they are executed.

To run tests in parallel, use the -j option. It is generally a good idea to also use the -k option to run all tests even if one fails. For example: make check -j 32 -k.

Some changes should be tested against all packages. Continue -reading for more details on testing them.

29.4. Packages

You can search existing packages using the make search q=STRING +reading for more details on testing them.

30.4. Packages

You can search existing packages using the make search q=STRING command. This can be done both from an Erlang.mk project or directly from the Erlang.mk repository.

Packages can be added to the index using the pkg_add.sh script.

$ git clone https://github.com/$YOURUSERNAME/erlang.mk
 $ cd erlang.mk
@@ -75,11 +75,11 @@ where PACKAGE is the name of the package, for examp
 This can take a long time. Some packages will fail with certain
 versions of Erlang, or if a prerequisite is missing from your system.
 You can of course speed things up using the -j and -k flags.

After all packages have been tested, you can run the command -make summary to know what changed since the previous run.

29.5. Documentation

The documentation is always right.

If you think you have found a mistake in the documentation, +make summary to know what changed since the previous run.

30.5. Documentation

The documentation is always right.

If you think you have found a mistake in the documentation, this is a bug. You can either open a ticket or send a pull request.

To make sure that the documentation changes work, install -the listed Requirements on your system and -run make docs.

29.6. Feature requests

If you have an awesome idea or need something that Erlang.mk +the listed Requirements on your system and +run make docs.

30.6. Feature requests

If you have an awesome idea or need something that Erlang.mk doesn’t provide yet, open a ticket. Provide as much detail as possible.

If you have code, great! Open a pull request as previously explained.

If not, you can still improve your feature request by writing diff --git a/guide/coverage.html b/guide/coverage.html index d269e73..9cbd27a 100644 --- a/guide/coverage.html +++ b/guide/coverage.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}

-

Chapter 21. Code coverage

Placeholder chapter.

+

Chapter 22. Code coverage

Placeholder chapter.

diff --git a/guide/cross_compiling.html b/guide/cross_compiling.html new file mode 100644 index 0000000..c81bd02 --- /dev/null +++ b/guide/cross_compiling.html @@ -0,0 +1,73 @@ + + + + +Erlang.mk User Guide + + + +
+ + + +
+
+ +

Chapter 13. Cross compiling

Erlang.mk supports cross-compiling. While the compiled +Erlang code is portable as-is, the C code is not and +releases need to use the correct runtime system for the +target environment.

There are therefore two steps that might require some +intervention: compiling and building the release. If +you do not have any C code you can just compile as you +would normally, however.

13.1. Compiling

To cross-compile the C code you need a cross compiler. If you +were to target Windows from an Arch Linux machine you would +install the mingw-w64-gcc +package. You would then need to define the CC environment +variable to point to this compiler instead of the default:

CC=/usr/bin/x86_64-w64-mingw32-gcc

Additionally, on Windows the shared libraries use a different +extension than on Linux, so it needs to be specified as well:

C_SRC_OUTPUT_SHARED_EXTENSION=.dll

These values can be added to the Makefile or given from the +command line, for example:

$ CC=/usr/bin/x86_64-w64-mingw32-gcc C_SRC_OUTPUT_SHARED_EXTENSION=.dll make
+ DEPEND my_nif.d
+ ERLC   my_nif.erl
+ APP    my_nif
+ C      my_nif.c
+ LD     my_nif.dll
+$ file priv/my_nif.dll
+priv/my_nif.dll: PE32+ executable (DLL) (console) x86-64, for MS Windows

You could also add this configuration to your Makefile hidden +behind a flag:

ifdef WINDOWS_BUILD
+CC = /usr/bin/x86_64-w64-mingw32-gcc
+C_SRC_OUTPUT_SHARED_EXTENSION = .dll
+endif

And then just compile like this:

$ make WINDOWS_BUILD=1

13.2. Building the release

For the release there are two options. You can either include +the correct runtime system directly in the release; or you +can not include the runtime system in the release and instead +let it use the one installed in the target environment.

To include the target runtime system, add the include_erts +tuple to your relx.config file:

{include_erts, "/path/to/alternate/erlang"}.

If you were to target Windows for example, you could copy +the Erlang installation from the Program Files directory +and then configure relx.config like this:

{include_erts, "/path/to/erl10.1"}.

You need to make sure that the runtime system version you +will use is capable of running the compiled Erlang code +you used to build your project, otherwise it will fail +to run.

If you choose to not include the runtime system at all, +configure relx.config as follow:

{include_erts, false}.

In that case the runtime system needs to be available +in the $PATH of the target environment.

+
+ + diff --git a/guide/ct.html b/guide/ct.html index 141c668..d0b588a 100644 --- a/guide/ct.html +++ b/guide/ct.html @@ -33,13 +33,13 @@ div.navfooter{margin-bottom:1em}
-

Chapter 19. Common Test

Common Test is Erlang’s functional testing framework. +

Chapter 20. Common Test

Common Test is Erlang’s functional testing framework. Erlang.mk automates the discovery and running of Common -Test suites.

19.1. Writing tests

The Common Test user guide +Test suites.

20.1. Writing tests

The Common Test user guide is the best place to learn how to write tests. Erlang.mk requires that file names for test suites end with _SUITE.erl and that the files be located in the $(TEST_DIR) directory. -This defaults to test/.

19.2. Configuration

The CT_OPTS variable allows you to set extra Common Test +This defaults to test/.

20.2. Configuration

The CT_OPTS variable allows you to set extra Common Test options. Options are documented in the Common Test user guide. You can use it to set Common Test hooks, for example:

CT_OPTS = -ct_hooks cowboy_ct_hook

The CT_SUITES variable can be used to override what @@ -48,7 +48,7 @@ not normally need to be set as Erlang.mk will find the test suites automatically.

The name of the suite is the part before _SUITE.erl. If the file is named http_SUITE.erl, the test suite is http:

CT_SUITES = http ws

The CT_LOGS_DIR variable can be used to set where HTML -log files are to be written. This defaults to logs/.

CT_LOGS_DIR = ct_output_log_dir

19.3. Usage

To run all tests (including Common Test):

$ make tests

To run all tests and static checks (including Common Test):

$ make check

You can also run Common Test separately:

$ make ct

Erlang.mk will create targets for all test suites it finds. +log files are to be written. This defaults to logs/.

CT_LOGS_DIR = ct_output_log_dir

20.3. Usage

To run all tests (including Common Test):

$ make tests

To run all tests and static checks (including Common Test):

$ make check

You can also run Common Test separately:

$ make ct

Erlang.mk will create targets for all test suites it finds. If you have a file named test/http_SUITE.erl, then the target ct-http will run that specific test suite:

$ make ct-http

Erlang.mk provides a convenient way to run a specific group or a specific test case within a specific group, @@ -57,7 +57,7 @@ suite-specific targets, like the ct-http example ab http_SUITE test suite, write:

$ make ct-http t=http_compress

Similarly, to run a specific test case in that group:

$ make ct-http t=http_compress:headers_dupe

To do the same against a multi-application repository, you can use the -C option:

$ make -C apps/my_app ct-http t=my_group:my_case

Note that this also applies to dependencies. When using Cowboy as a dependency, you can run the following directly:

$ make -C deps/cowboy ct-http t=http_compress

The variable c can be used to run a specific test when -the test suite does not group test cases:

$ make ct-http c=headers_dupe

Finally, code coverage is available, +the test suite does not group test cases:

$ make ct-http c=headers_dupe

Finally, code coverage is available, but covered in its own chapter.

diff --git a/guide/deps.html b/guide/deps.html index 0cfe95a..0853870 100644 --- a/guide/deps.html +++ b/guide/deps.html @@ -264,11 +264,10 @@ If it contains a configure script, run it
  • Run autopatch on the project
  • Autopatch first checks if there is any project-specific patch -enabled. There are currently two: RABBITMQ_CLIENT_PATCH for -the amqp_client dependency, and RABBITMQ_SERVER_PATCH for -the rabbit dependency. These are needed only for RabbitMQ -versions before 3.6.0 (assuming you are using upstream RabbitMQ, -and not a fork).

    Otherwise, autopatch performs different operations depending +enabled. There are currently three: RABBITMQ_CLIENT_PATCH for +the amqp_client dependency (before 3.6.0), RABBITMQ_SERVER_PATCH +for the rabbit dependency (before 3.6.0) and ELIXIR_PATCH +for the elixir dependency.

    Otherwise, autopatch performs different operations depending on the kind of project it finds the dependency to be.

    • Rebar projects are automatically converted to use Erlang.mk as their build tool. This essentially patches Rebar out, and @@ -287,7 +286,15 @@ Projects with no source directory and no Makefile get an empty Makefile generated, for compatibility purposes.
    • Other projects with no Makefile are left untouched. -

    You can disable the replacing of the erlang.mk file by +

    You can add additional commands to be run immediately before +or after autopatch is done by extending the target +autopatch-$(dep)::, for example this would remove +a module:

    autopatch-ranch::
    +    rm -f $(DEPS_DIR)/ranch/src/ranch_proxy_header.erl

    A common use case for this feature is to apply a PATCH +file on the dependency immediately after fetching it. +It can also be used to add compiler options, for example:

    autopatch-couchbeam::
    +    printf "\nERLC_OPTS += -DWITH_JIFFY\n" >> $(DEPS_DIR)/couchbeam/Makefile

    The commands will run before autopatch when the target is +defined before including erlang.mk, and after otherwise.

    You can disable the replacing of the erlang.mk file by defining the NO_AUTOPATCH_ERLANG_MK variable:

    NO_AUTOPATCH_ERLANG_MK = 1

    You can also disable autopatch entirely for a few select projects using the NO_AUTOPATCH variable:

    NO_AUTOPATCH = cowboy ranch cowlib

    7.10. Dealing with duplicate modules

    When there are duplicate modules found in both applications and their dependencies, some tasks may fail. Erlang expects diff --git a/guide/dialyzer.html b/guide/dialyzer.html index 3626a75..aa9dc66 100644 --- a/guide/dialyzer.html +++ b/guide/dialyzer.html @@ -33,18 +33,18 @@ div.navfooter{margin-bottom:1em}

    -

    Chapter 23. Dialyzer

    Dialyzer is a tool that will detect discrepancies in your +

    Chapter 24. Dialyzer

    Dialyzer is a tool that will detect discrepancies in your program. It does so using a technique known as success typing analysis which has the advantage of providing no false positives. Dialyzer is able to detect type errors, -dead code and more.

    Erlang.mk provides a wrapper around Dialyzer.

    23.1. How it works

    Dialyzer requires a PLT file to work. The PLT file contains +dead code and more.

    Erlang.mk provides a wrapper around Dialyzer.

    24.1. How it works

    Dialyzer requires a PLT file to work. The PLT file contains the analysis information from all applications which are not expected to change, or rarely do. These would be all the dependencies of the application or applications you are currently working on, including standard applications in Erlang/OTP itself.

    Dialyzer can generate this PLT file. Erlang.mk includes rules to automatically generate the PLT file when it is missing.

    Once the PLT file is generated, Dialyzer can perform the -analysis in record time.

    23.2. Configuration

    In a typical usage scenario, no variable needs to be set. +analysis in record time.

    24.2. Configuration

    In a typical usage scenario, no variable needs to be set. The defaults should be enough. Do note however that the dependencies need to be set properly using the DEPS and LOCAL_DEPS variables.

    The DIALYZER_PLT file indicates where the PLT file will @@ -59,10 +59,14 @@ The former one defines which directories should be part of the analysis. The latter defines what extra warnings Dialyzer should report.

    Note that Erlang.mk enables the race condition warnings by default. As it can take considerably large resources -to run, you may want to disable it on larger projects.

    23.3. Usage

    To perform an analysis, run the following command:

    $ make dialyze

    This will create the PLT file if it doesn’t exist.

    The analysis will also be performed when you run the +to run, you may want to disable it on larger projects.

    24.3. Usage

    To perform an analysis, run the following command:

    $ make dialyze

    This will create the PLT file if it doesn’t exist.

    The analysis will also be performed when you run the following command, alongside tests:

    $ make check

    You can use the plt target to create the PLT file if it doesn’t exist. This is normally not necessary as -Dialyzer creates it automatically.

    The PLT file will be removed when you run make distclean.

    +Dialyzer creates it automatically.

    The PLT file will be removed when you run make distclean.

    24.4. Dialyzing beam files

    By default Erlang.mk will run Dialyzer against the source +code. It is possible to configure Erlang.mk to use the +compiled source files instead. This is done using the +DIALYZER_DIRS variable:

    DIALYZER_DIRS = -r ebin

    This value must be set before including Erlang.mk to +function properly.

    diff --git a/guide/edoc.html b/guide/edoc.html index f13d5db..49e5e36 100644 --- a/guide/edoc.html +++ b/guide/edoc.html @@ -33,17 +33,17 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 15. EDoc comments

    Erlang.mk provides a thin wrapper on top of EDoc, an application -that generates documentation based on comments found in modules.

    15.1. Writing EDoc comments

    The EDoc user guide -explains everything you need to know about EDoc comments.

    15.2. Configuration

    The EDOC_OPTS variable allows you to specify additional +

    Chapter 16. EDoc comments

    Erlang.mk provides a thin wrapper on top of EDoc, an application +that generates documentation based on comments found in modules.

    16.1. Writing EDoc comments

    The EDoc user guide +explains everything you need to know about EDoc comments.

    16.2. Configuration

    The EDOC_OPTS variable allows you to specify additional EDoc options. Options are documented in the EDoc manual.

    A common use for this variable is to enable Markdown in doc comments, using the edown application:

    DOC_DEPS = edown
    -EDOC_OPTS = {doclet, edown_doclet}

    15.3. Usage

    To build all documentation, you would typically use:

    $ make docs

    Do note, however, that EDoc comments will only be generated +EDOC_OPTS = {doclet, edown_doclet}

    16.3. Usage

    To build all documentation, you would typically use:

    $ make docs

    Do note, however, that EDoc comments will only be generated automatically if the doc/overview.edoc file exists. If you do not want that file and still want to generate doc comments, two solutions are available.

    You can generate EDoc documentation directly:

    $ make edoc

    You can enable automatic generation on make docs by adding -the following to your Makefile:

    docs:: edoc

    15.4. Running EDoc on all applications

    In a multi-application project you may want to run EDoc +the following to your Makefile:

    docs:: edoc

    16.4. Running EDoc on all applications

    In a multi-application project you may want to run EDoc against all applications at the same time, instead of against each applications independently. To do so, you need to configure the EDOC_SRC_DIRS at the end of diff --git a/guide/eunit.html b/guide/eunit.html index 8c054ec..ff5f4e9 100644 --- a/guide/eunit.html +++ b/guide/eunit.html @@ -33,9 +33,9 @@ div.navfooter{margin-bottom:1em}

    -

    Chapter 18. EUnit

    EUnit is the tool of choice for unit testing. Erlang.mk +

    Chapter 19. EUnit

    EUnit is the tool of choice for unit testing. Erlang.mk automates a few things on top of EUnit, including the -discovery and running of unit tests.

    18.1. Writing tests

    The EUnit user guide +discovery and running of unit tests.

    19.1. Writing tests

    The EUnit user guide is the best place to learn how to write tests. Of note is that all functions ending with _test or _test_ will be picked up as EUnit test cases.

    Erlang.mk will automatically pick up tests found in any of @@ -58,19 +58,19 @@ compiled.

    -ifdef(TEST).
     %% Insert tests here.
     
     -endif.

    Erlang.mk will automatically recompile your code when you -perform a normal build after running tests, and vice versa.

    18.2. Configuration

    The EUNIT_OPTS variable allows you to specify additional +perform a normal build after running tests, and vice versa.

    19.2. Configuration

    The EUNIT_OPTS variable allows you to specify additional EUnit options. Options are documented in the EUnit manual. At the time of writing, the only available option is verbose:

    EUNIT_OPTS = verbose

    The EUNIT_ERL_OPTS variable allows you to specify options to be passed to erl when running EUnit tests. For example, -you can load the vm.args and sys.config files:

    EUNIT_ERL_OPTS = -args_file config/vm.args -config config/sys.config

    18.3. Usage

    To run all tests (including EUnit):

    $ make tests

    To run all tests and static checks (including EUnit):

    $ make check

    You can also run EUnit separately:

    $ make eunit

    EUnit will be quiet by default, only outputting errors. +you can load the vm.args and sys.config files:

    EUNIT_ERL_OPTS = -args_file config/vm.args -config config/sys.config

    19.3. Usage

    To run all tests (including EUnit):

    $ make tests

    To run all tests and static checks (including EUnit):

    $ make check

    You can also run EUnit separately:

    $ make eunit

    EUnit will be quiet by default, only outputting errors. You can easily make it verbose for a single invocation:

    $ make eunit EUNIT_OPTS=verbose

    Erlang.mk allows you to run all tests from a specific module, or a specific test case from that module, using the variable t.

    For example, to run all tests from the cow_http_hd module (instead of all tests from the entire project), one could write:

    $ make eunit t=cow_http_hd

    Similarly, to run a specific test case:

    $ make eunit t=cow_http_hd:parse_accept_test_

    To do the same against a multi-application repository, you can use the -C option:

    $ make -C apps/my_app eunit t=my_module:hello_test

    Note that this also applies to dependencies. From Cowboy, -you can run the following directly:

    $ make -C deps/cowlib eunit t=cow_http_hd

    Finally, code coverage is available, +you can run the following directly:

    $ make -C deps/cowlib eunit t=cow_http_hd

    Finally, code coverage is available, but covered in its own chapter.

    diff --git a/guide/history.html b/guide/history.html index 17e3741..d8ec295 100644 --- a/guide/history.html +++ b/guide/history.html @@ -33,8 +33,8 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 28. Short history

    This chapter aims to be a brief record of the life of the -Erlang.mk project.

    28.1. Before Erlang.mk

    Erlang.mk originates from the Cowboy project. Cowboy started +

    Chapter 29. Short history

    This chapter aims to be a brief record of the life of the +Erlang.mk project.

    29.1. Before Erlang.mk

    Erlang.mk originates from the Cowboy project. Cowboy started as a Rebar project and I, Loïc Hoguin, was very happy with it for a couple years. Over time however I started getting annoyed and frustrated by a number of things, including bad defaults, @@ -46,7 +46,7 @@ than a minute to complete.

    Following this success I started removing a lit on the fateful day of January 5th, 2013, removed the dependency on Rebar entirely. Rebar, and in particular the concept of dependencies, was, and still is, a pretty strong influence.

    Erlang.mk was conceived.

    A few months passed and, on May 1st, 2013, the Erlang.mk -repository was created. Erlang.mk was born.

    Little did I know how much it would grow.

    28.2. Lifetime of the project

    Erlang.mk would eventually become a much larger file able to +repository was created. Erlang.mk was born.

    Little did I know how much it would grow.

    29.2. Lifetime of the project

    Erlang.mk would eventually become a much larger file able to deal with many more projects than just Cowboy. From the birth of the project, the biggest force for growth was user contributions, because Erlang.mk appealed to a variety of people with different diff --git a/guide/index.html b/guide/index.html index ac7ea7e..88e29e1 100644 --- a/guide/index.html +++ b/guide/index.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}

    -

    Erlang.mk User Guide

    Loïc Hoguin


    Table of Contents

    1. Installation
    1.1. On Unix
    1.2. On Windows
    2. Getting started
    2.1. Creating a folder for your project
    2.2. Downloading Erlang.mk
    2.3. Getting started with OTP applications
    2.4. Getting started with OTP libraries
    2.5. Getting started with OTP releases
    2.6. Getting started from scratch
    2.7. Using spaces instead of tabs
    2.8. Using templates
    2.9. Hiding Erlang.mk from git
    2.10. Getting help
    3. Overview
    3.1. Building your project
    3.2. Exploring the package index
    3.3. Generating documentation
    3.4. Running tests
    3.5. Need more?
    4. Updating Erlang.mk
    4.1. Initial bootstrap
    4.2. Updating
    4.3. Customizing the build
    5. Limitations
    5.1. Erlang must be available
    5.2. Spaces in path
    5.3. Dependency tracking and modification times
    I. Code
    6. Building
    6.1. How to build
    6.2. What to build
    6.3. Application resource file
    6.4. Automatic application resource file values
    6.5. File formats
    6.6. Compilation options
    6.7. Cold and hot builds
    6.8. Dependency tracking
    6.9. Generating Erlang source
    6.10. Cleaning
    7. Packages and dependencies
    7.1. Searching packages
    7.2. Adding dependencies to your project
    7.3. How deps are fetched and built
    7.4. Fetching and listing dependencies only
    7.5. Ignoring unwanted dependencies
    7.6. Dependencies directory
    7.7. Many applications in one repository
    7.8. Repositories with no application at the root level
    7.9. Autopatch
    7.10. Dealing with duplicate modules
    7.11. Skipping deps
    8. NIFs and port drivers
    8.1. C source code location and Erlang environment
    8.2. Using a custom Makefile
    8.3. Using Erlang.mk directly
    8.4. Propagating compile and linker flags to sub-Makefiles
    9. Releases
    9.1. Setup
    9.2. Configuration
    9.3. Generating the release
    9.4. Running the release
    9.5. Upgrading a release
    9.6. Getting Relx semver value
    10. Self-extracting releases
    10.1. Generating the self-extracting archive
    10.2. Running the release
    11. Escripts
    11.1. Requirements
    11.2. Generating an escript
    11.3. Configuration
    11.4. Extra files
    11.5. Optimizing for size
    12. OTP version management
    12.1. Erlang versions
    12.2. OTP version pinning
    12.3. Continuous integration
    12.4. Configuring Kerl
    13. Compatibility with other build tools
    13.1. Rebar projects as Erlang.mk dependencies
    13.2. Erlang.mk projects as Rebar dependencies
    II. Documentation
    14. AsciiDoc documentation
    14.1. Requirements
    14.2. Writing AsciiDoc documentation
    14.3. Configuration
    14.4. Usage
    15. EDoc comments
    15.1. Writing EDoc comments
    15.2. Configuration
    15.3. Usage
    15.4. Running EDoc on all applications
    16. Sphinx documentation
    16.1. Writing Sphinx documentation
    16.2. Basic setup
    16.3. Erlang.mk configuration
    16.4. Generating man pages
    III. Tests
    17. Erlang shell
    17.1. Configuration
    17.2. Usage
    18. EUnit
    18.1. Writing tests
    18.2. Configuration
    18.3. Usage
    19. Common Test
    19.1. Writing tests
    19.2. Configuration
    19.3. Usage
    20. Triq
    21. Code coverage
    22. Continuous integration
    22.1. Configuring Erlang/OTP versions to test
    22.2. Running tests across all configured versions
    22.3. Extending the CI targets
    23. Dialyzer
    23.1. How it works
    23.2. Configuration
    23.3. Usage
    24. Xref
    IV. Third-party plugins
    25. External plugins
    25.1. Loading all plugins from a dependency
    25.2. Loading one plugin from a dependency
    25.3. Writing external plugins
    25.4. Early-stage plugins
    25.5. Loading plugins local to the application
    26. List of plugins
    26.1. efene.mk
    26.2. elixir.mk
    26.3. elvis.mk
    26.4. geas
    26.5. hexer.mk
    26.6. hexpm.mk
    26.7. jorel
    26.8. lfe.mk
    26.9. mix.mk
    26.10. reload.mk
    26.11. rust.mk
    V. About Erlang.mk
    27. Why Erlang.mk
    27.1. Erlang.mk is fast
    27.2. Erlang.mk gives you the full power of Unix
    27.3. Erlang.mk is a text file
    27.4. Erlang.mk can manage Erlang itself
    27.5. Erlang.mk can do more than Erlang
    27.6. Erlang.mk integrates nicely in Make and Automake projects
    28. Short history
    28.1. Before Erlang.mk
    28.2. Lifetime of the project
    29. Contributing
    29.1. Priorities
    29.2. Bugs
    29.3. Code
    29.4. Packages
    29.5. Documentation
    29.6. Feature requests
    +

    Erlang.mk User Guide

    Loïc Hoguin


    Table of Contents

    1. Installation
    1.1. On Unix
    1.2. On Windows
    2. Getting started
    2.1. Creating a folder for your project
    2.2. Downloading Erlang.mk
    2.3. Getting started with OTP applications
    2.4. Getting started with OTP libraries
    2.5. Getting started with OTP releases
    2.6. Getting started from scratch
    2.7. Using spaces instead of tabs
    2.8. Using templates
    2.9. Hiding Erlang.mk from git
    2.10. Getting help
    3. Overview
    3.1. Building your project
    3.2. Exploring the package index
    3.3. Generating documentation
    3.4. Running tests
    3.5. Need more?
    4. Updating Erlang.mk
    4.1. Initial bootstrap
    4.2. Updating
    4.3. Customizing the build
    5. Limitations
    5.1. Erlang must be available
    5.2. Spaces in path
    5.3. Dependency tracking and modification times
    I. Code
    6. Building
    6.1. How to build
    6.2. What to build
    6.3. Application resource file
    6.4. Automatic application resource file values
    6.5. File formats
    6.6. Compilation options
    6.7. Cold and hot builds
    6.8. Dependency tracking
    6.9. Generating Erlang source
    6.10. Cleaning
    7. Packages and dependencies
    7.1. Searching packages
    7.2. Adding dependencies to your project
    7.3. How deps are fetched and built
    7.4. Fetching and listing dependencies only
    7.5. Ignoring unwanted dependencies
    7.6. Dependencies directory
    7.7. Many applications in one repository
    7.8. Repositories with no application at the root level
    7.9. Autopatch
    7.10. Dealing with duplicate modules
    7.11. Skipping deps
    8. NIFs and port drivers
    8.1. C source code location and Erlang environment
    8.2. Using a custom Makefile
    8.3. Using Erlang.mk directly
    8.4. Propagating compile and linker flags to sub-Makefiles
    9. Releases
    9.1. Setup
    9.2. Configuration
    9.3. Generating the release
    9.4. Running the release
    9.5. Upgrading a release
    9.6. Getting Relx semver value
    10. Self-extracting releases
    10.1. Generating the self-extracting archive
    10.2. Running the release
    11. Escripts
    11.1. Requirements
    11.2. Generating an escript
    11.3. Configuration
    11.4. Extra files
    11.5. Optimizing for size
    12. OTP version management
    12.1. Erlang versions
    12.2. OTP version pinning
    12.3. Continuous integration
    12.4. Configuring Kerl
    13. Cross compiling
    13.1. Compiling
    13.2. Building the release
    14. Compatibility with other build tools
    14.1. Rebar projects as Erlang.mk dependencies
    14.2. Erlang.mk projects as Rebar dependencies
    II. Documentation
    15. AsciiDoc documentation
    15.1. Requirements
    15.2. Writing AsciiDoc documentation
    15.3. Configuration
    15.4. Usage
    16. EDoc comments
    16.1. Writing EDoc comments
    16.2. Configuration
    16.3. Usage
    16.4. Running EDoc on all applications
    17. Sphinx documentation
    17.1. Writing Sphinx documentation
    17.2. Basic setup
    17.3. Erlang.mk configuration
    17.4. Generating man pages
    III. Tests
    18. Erlang shell
    18.1. Configuration
    18.2. Usage
    19. EUnit
    19.1. Writing tests
    19.2. Configuration
    19.3. Usage
    20. Common Test
    20.1. Writing tests
    20.2. Configuration
    20.3. Usage
    21. Triq
    22. Code coverage
    23. Continuous integration
    23.1. Configuring Erlang/OTP versions to test
    23.2. Running tests across all configured versions
    23.3. Extending the CI targets
    24. Dialyzer
    24.1. How it works
    24.2. Configuration
    24.3. Usage
    24.4. Dialyzing beam files
    25. Xref
    IV. Third-party plugins
    26. External plugins
    26.1. Loading all plugins from a dependency
    26.2. Loading one plugin from a dependency
    26.3. Writing external plugins
    26.4. Early-stage plugins
    26.5. Loading plugins local to the application
    27. List of plugins
    27.1. ci.erlang.mk
    27.2. efene.mk
    27.3. elixir.mk
    27.4. elvis.mk
    27.5. geas
    27.6. hexer.mk
    27.7. hexpm.mk
    27.8. jorel
    27.9. lfe.mk
    27.10. mix.mk
    27.11. reload.mk
    27.12. rust.mk
    27.13. version.mk
    V. About Erlang.mk
    28. Why Erlang.mk
    28.1. Erlang.mk is fast
    28.2. Erlang.mk gives you the full power of Unix
    28.3. Erlang.mk is a text file
    28.4. Erlang.mk can manage Erlang itself
    28.5. Erlang.mk can do more than Erlang
    28.6. Erlang.mk integrates nicely in Make and Automake projects
    29. Short history
    29.1. Before Erlang.mk
    29.2. Lifetime of the project
    30. Contributing
    30.1. Priorities
    30.2. Bugs
    30.3. Code
    30.4. Packages
    30.5. Documentation
    30.6. Feature requests
    diff --git a/guide/kerl.html b/guide/kerl.html index 72a0aa5..1b4348e 100644 --- a/guide/kerl.html +++ b/guide/kerl.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 12. OTP version management

    Erlang.mk comes with integrated support for +

    Chapter 12. OTP version management

    Erlang.mk comes with integrated support for Kerl, a shell script that automates the downloading, building and installing of Erlang/OTP. It can be used to easily build a specific @@ -62,13 +62,13 @@ use the version you configured.

    Note that there has been reports that this is not compatible with the .ONESHELL feature from GNU Make.

    12.3. Continuous integration

    Erlang.mk can automatically test your project against many different Erlang/OTP versions. This functionality -is documented in the Continuous integration chapter.

    12.4. Configuring Kerl

    All of the Kerl variables can be configured directly in the +is documented in the Continuous integration chapter.

    12.4. Configuring Kerl

    All of the Kerl variables can be configured directly in the Makefile. All you need to do is to export them. For example, to change the installation directory for the Erlang/OTP versions managed by Kerl, you could add the following to your Makefile:

    export KERL_INSTALL_DIR = $(CURDIR)/erlang

    When configuring paths like this, always make sure to provide an absolute path in the value. Erlang.mk will NOT expand them -automatically for you.

    +automatically for you.

    diff --git a/guide/overview.html b/guide/overview.html index 87768e4..c78efdc 100644 --- a/guide/overview.html +++ b/guide/overview.html @@ -47,24 +47,24 @@ meant to be used for discovery purposes.

    No package is ever installed, the and are always project-specific. They can be thought of as a shortcut over plain dependencies.

    You can get a list of all packages known to Erlang.mk by using the search target:

    $ make search

    You can also use this target to search across all packages, for -example to find all packages related to Cowboy:

    $ make search q=cowboy

    3.3. Generating documentation

    Erlang.mk supports EDoc and Asciidoc.

    EDoc generates HTML documentation directly from +example to find all packages related to Cowboy:

    $ make search q=cowboy

    3.3. Generating documentation

    Erlang.mk supports EDoc and Asciidoc.

    EDoc generates HTML documentation directly from your source code.

    While it is convenient, ask yourself: if all the documentation is inside the source code, why not just open the source code directly? -That’s where Asciidoc comes in.

    The Asciidoc plugin expects all documentation +That’s where Asciidoc comes in.

    The Asciidoc plugin expects all documentation to be separate from source. It will generate HTML, PDF, man pages and more from the documentation you write in the doc/src/ folder in your repository.

    3.4. Running tests

    Erlang.mk supports a lot of different testing and static -analysis tools.

    The make shell command allows you +analysis tools.

    The make shell command allows you to test your project manually. You can automate these -unit tests with EUnit and test -your entire system with Common Test. -Code coverage can of course +unit tests with EUnit and test +your entire system with Common Test. +Code coverage can of course be enabled during tests.

    Erlang.mk comes with features to make your life easier when -setting up and using Continuous integration.

    On the static analysis side of things, Erlang.mk comes with -support for Dialyzer and Xref, +setting up and using Continuous integration.

    On the static analysis side of things, Erlang.mk comes with +support for Dialyzer and Xref, to perform success typing analysis and cross referencing -of the code.

    3.5. Need more?

    Not convinced yet? You can read about why you should use Erlang.mk -and its history. And if you’re still not +of the code.

    3.5. Need more?

    Not convinced yet? You can read about why you should use Erlang.mk +and its history. And if you’re still not convinced after that, it’s OK! The world would be boring if everyone agreed on everything all the time.

    diff --git a/guide/plugins_list.html b/guide/plugins_list.html index 2a4e5bc..18d1a8f 100644 --- a/guide/plugins_list.html +++ b/guide/plugins_list.html @@ -33,21 +33,23 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 26. List of plugins

    This is a non-exhaustive list of Erlang.mk plugins, sorted -alphabetically.

    26.1. efene.mk

    An Efene plugin for Erlang.mk. -Efene is an alternative language for the BEAM.

    26.2. elixir.mk

    An Elixir plugin for +

    Chapter 27. List of plugins

    This is a non-exhaustive list of Erlang.mk plugins, sorted +alphabetically.

    27.1. ci.erlang.mk

    A plugin that keeps +track of released OTP versions to always run CI builds on the +most recent patch(es).

    27.2. efene.mk

    An Efene plugin for Erlang.mk. +Efene is an alternative language for the BEAM.

    27.3. elixir.mk

    An Elixir plugin for Erlang.mk. Elixir is an alternative -language for the BEAM.

    26.3. elvis.mk

    An Elvis plugin for Erlang.mk. -Elvis is an Erlang style reviewer.

    26.4. geas

    Geas gives aggregated +language for the BEAM.

    27.4. elvis.mk

    An Elvis plugin for Erlang.mk. +Elvis is an Erlang style reviewer.

    27.5. geas

    Geas gives aggregated information on a project and its dependencies, and is available -as an Erlang.mk plugin.

    26.5. hexer.mk

    An Hex plugin for Erlang.mk -using the hexer tool.

    26.6. hexpm.mk

    Another Hex plugin for -Erlang.mk, with support for Hex dependency operators.

    26.7. jorel

    Jorel is Just anOther RELease -assembler for Erlang/OTP, and is available as an Erlang.mk plugin.

    26.8. lfe.mk

    An LFE plugin for Erlang.mk. +as an Erlang.mk plugin.

    27.6. hexer.mk

    An Hex plugin for Erlang.mk +using the hexer tool.

    27.7. hexpm.mk

    Another Hex plugin for +Erlang.mk, with support for Hex dependency operators.

    27.8. jorel

    Jorel is Just anOther RELease +assembler for Erlang/OTP, and is available as an Erlang.mk plugin.

    27.9. lfe.mk

    An LFE plugin for Erlang.mk. LFE, or Lisp Flavoured Erlang, is an alternative -language for the BEAM.

    26.9. mix.mk

    A Mix plugin for Erlang.mk, +language for the BEAM.

    27.10. mix.mk

    A Mix plugin for Erlang.mk, to generate a compatible configuration file for -Mix.

    26.10. reload.mk

    A live reload plugin for Erlang.mk.

    26.11. rust.mk

    A plugin to build Rust crates and install binaries into priv/.

    +Mix.

    27.11. reload.mk

    A live reload plugin for Erlang.mk.

    27.12. rust.mk

    A plugin to build Rust crates and install binaries into priv/.

    27.13. version.mk

    A plugin to apply a semantic version automatically to Erlang.mk projects.

    diff --git a/guide/plugins_usage.html b/guide/plugins_usage.html index a2f01a3..f13f1f1 100644 --- a/guide/plugins_usage.html +++ b/guide/plugins_usage.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 25. External plugins

    It is often convenient to be able to keep the build files +

    Chapter 26. External plugins

    It is often convenient to be able to keep the build files used by all your projects in one place. Those files could be Makefiles, configuration files, templates and more.

    Erlang.mk allows you to automatically load plugins from dependencies. Plugins can do anything, including defining @@ -42,19 +42,19 @@ inside the normal Erlang.mk processing or even adding new rules.

    You can load plugins using one of two methods. You can either load all plugins from a dependency, or just one. We will also cover conventions about writing external -plugins.

    25.1. Loading all plugins from a dependency

    To load plugins from a dependency, all you need to do is add +plugins.

    26.1. Loading all plugins from a dependency

    To load plugins from a dependency, all you need to do is add the dependency name to DEP_PLUGINS in addition to the list of dependencies.

    For example, if you have cowboy in DEPS, add cowboy in DEP_PLUGINS also:

    DEPS = cowboy
     DEP_PLUGINS = cowboy

    This will load the file plugins.mk in the root folder of -the Cowboy repository.

    25.2. Loading one plugin from a dependency

    Now that we know how to load all plugins, let’s take a look +the Cowboy repository.

    26.2. Loading one plugin from a dependency

    Now that we know how to load all plugins, let’s take a look at how to load one specific plugin from a dependency.

    To do this, instead of writing only the name of the dependency, we will write its name and the path to the plugin file. This means that writing DEP_PLUGINS = cowboy is equivalent to writing DEP_PLUGINS = cowboy/plugins.mk.

    Knowing this, if we were to load the plugin mk/dist.mk from Cowboy and no other, we would write the following in our Makefile:

    DEPS = cowboy
    -DEP_PLUGINS = cowboy/mk/dist.mk

    25.3. Writing external plugins

    The plugins.mk file is a convention. It is meant to load +DEP_PLUGINS = cowboy/mk/dist.mk

    26.3. Writing external plugins

    The plugins.mk file is a convention. It is meant to load all the plugins from the dependency. The code for the plugin can be written directly in plugins.mk or be separate.

    If you are providing more than one plugin with your repository, the recommended way is to create one file per plugin in the @@ -67,7 +67,7 @@ include $(THIS)/mk/templates.mk

    The THIS va plugins, but also select all plugins from the dependency in one go if they wish to do so.

    Plugins can include some help text by extending the target help-plugins:

    help-plugins::
    -    $(verbose) printf "%s\n" "" "Run benchmark: $(MAKE) perfs"

    25.4. Early-stage plugins

    Plugins declared in DEP_PLUGINS are loaded near the end of Erlang.mk. + $(verbose) printf "%s\n" "" "Run benchmark: $(MAKE) perfs"

    26.4. Early-stage plugins

    Plugins declared in DEP_PLUGINS are loaded near the end of Erlang.mk. That’s why you have access to all previously initialized variables. However, if you want your plugin to add common dependencies to your applications, a regular is loaded too late in the process. @@ -81,7 +81,7 @@ BUILD_DEPS = common_deps DEP_EARLY_PLUGINS = common_deps

    # In the plugin's early-plugins.mk
     DEPS += cowboy
     TEST_DEPS = ct_helper
    -dep_ct_helper = git https://github.com/ninenines/ct_helper master

    25.5. Loading plugins local to the application

    If the Erlang.mk plugin lives in the same directory or repository as your +dep_ct_helper = git https://github.com/ninenines/ct_helper master

    26.5. Loading plugins local to the application

    If the Erlang.mk plugin lives in the same directory or repository as your application or library, then you can load it exactly like an external plugin: the dependency name is simply the name of your application or library.

    For example, the following Makefile loads a plugin in the mk diff --git a/guide/shell.html b/guide/shell.html index 0d389a5..7a6d3c7 100644 --- a/guide/shell.html +++ b/guide/shell.html @@ -33,15 +33,15 @@ div.navfooter{margin-bottom:1em}

    -

    Chapter 17. Erlang shell

    Erlang.mk provides a convenient target for starting a shell -with all the paths set properly to experiment with your code.

    17.1. Configuration

    The SHELL_DEPS variable can be used to define dependencies +

    Chapter 18. Erlang shell

    Erlang.mk provides a convenient target for starting a shell +with all the paths set properly to experiment with your code.

    18.1. Configuration

    The SHELL_DEPS variable can be used to define dependencies that are only to be used when the make shell command is called. For example, if you want to use kjell as your shell:

    SHELL_DEPS = kjell

    Dependencies are downloaded and compiled the first time you run the make shell command.

    You can customize the executable used to start the Erlang shell. To continue with our example, if you want to use kjell as your shell, you also need to change SHELL_ERL and point it to the kjell executable:

    SHELL_ERL = $(DEPS_DIR)/kjell/bin/kjell

    You can specify additional options to be used when starting the -shell using the SHELL_OPTS variable:

    SHELL_OPTS = -setcookie chocolate

    Any of the usual erl options can be used, including -eval:

    SHELL_OPTS = -eval 'my_app:run()'

    17.2. Usage

    To start the shell, all you need is the following command:

    $ make shell

    The shell can be stopped as usual with a double Ctrl+C or the +shell using the SHELL_OPTS variable:

    SHELL_OPTS = -setcookie chocolate

    Any of the usual erl options can be used, including -eval:

    SHELL_OPTS = -eval 'my_app:run()'

    18.2. Usage

    To start the shell, all you need is the following command:

    $ make shell

    The shell can be stopped as usual with a double Ctrl+C or the command q()..

    Note that the shell target does not build the application. To do it, use either the app target or, if you want to include also test modules, the test-build target.

    diff --git a/guide/sphinx.html b/guide/sphinx.html index 91be9b0..6b4532b 100644 --- a/guide/sphinx.html +++ b/guide/sphinx.html @@ -33,13 +33,13 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 16. Sphinx documentation

    Erlang.mk includes targets for running the +

    Chapter 17. Sphinx documentation

    Erlang.mk includes targets for running the Sphinx documentation generator, which can produce documentation in various formats, like HTML, man pages, Texinfo, LaTeX, and -others.

    16.1. Writing Sphinx documentation

    Sphinx generates documentation from a set of +others.

    17.1. Writing Sphinx documentation

    Sphinx generates documentation from a set of reST documents. There is a quick start guide on -Sphinx' website. For Erlang.mk, we’ll set up a minimal environment instead.

    16.2. Basic setup

    By default, Erlang.mk expects Sphinx documentation to be placed in the doc +Sphinx' website. For Erlang.mk, we’ll set up a minimal environment instead.

    17.2. Basic setup

    By default, Erlang.mk expects Sphinx documentation to be placed in the doc directory, with doc/conf.py config file in particular. The file contains information about the project, among the other things.

    A minimal doc/conf.py will look similar to this:

    project = 'My Project'
     version = '0.0'
    @@ -66,7 +66,7 @@ header with some text will do for now:

    Other Page
     ==========
     
     Lorem ipsum dolor sit amet...

    The files above are enough to build HTML documentation to the html directory.

    $ make docs     # all the docs, including EDoc and AsciiDoc if applicable
    -$ make sphinx   # Sphinx docs specifically

    16.3. Erlang.mk configuration

    Erlang.mk defaults to the following configuration:

    SPHINX_FORMATS = html
    +$ make sphinx   # Sphinx docs specifically

    17.3. Erlang.mk configuration

    Erlang.mk defaults to the following configuration:

    SPHINX_FORMATS = html
     SPHINX_SOURCE = doc

    To change the location of Sphinx sources, you need to set the $(SPHINX_SOURCE) variable. The conf.py file should also be placed in that directory, unless you specify $(SPHINX_CONFDIR).

    The variable $(SPHINX_OPTS) allows to provide options to sphinx-build, which @@ -82,7 +82,7 @@ for sphinx-build for a list of known formats.

    $(sphinx_$(format)_output) variable, e.g. $(sphinx_html_output) for html or $(sphinx_man_output) for man. There are also $(sphinx_$(format)_opts) variables for setting sphinx-build -options for a single format only.

    16.4. Generating man pages

    To generate man pages, you need to include man in $(SPHINX_FORMATS) in +options for a single format only.

    17.4. Generating man pages

    To generate man pages, you need to include man in $(SPHINX_FORMATS) in your Makefile and define the man_pages option in doc/conf.py:

    man_pages = [
         ('doc_name', 'page_name', 'Manpage Title', ['Page Author'], 1),
     ]

    As the diff --git a/guide/triq.html b/guide/triq.html index dde4b76..eaed248 100644 --- a/guide/triq.html +++ b/guide/triq.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}

    -

    Chapter 20. Triq

    Triq is a QuickCheck-like library for +

    Chapter 21. Triq

    Triq is a QuickCheck-like library for property-based testing. Erlang.mk automates discovery and checking of Triq properties.

    To run all tests (including Triq):

    $ make tests

    To run all tests and static checks (including Triq):

    $ make check

    You can also run Triq separately:

    $ make triq

    To check properties from a single module:

    $ make triq t=foo_tests

    To check a single property:

    $ make triq t=foo_tests:bar
    diff --git a/guide/why.html b/guide/why.html index f7a9bdb..3d1416c 100644 --- a/guide/why.html +++ b/guide/why.html @@ -33,14 +33,14 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 27. Why Erlang.mk

    Why would you choose Erlang.mk, if not for its +

    Chapter 28. Why Erlang.mk

    Why would you choose Erlang.mk, if not for its many features? This chapter will -attempt to answer that.

    27.1. Erlang.mk is fast

    Erlang.mk is as fast as it gets.

    Erlang.mk will group the compilation of files so as to avoid +attempt to answer that.

    28.1. Erlang.mk is fast

    Erlang.mk is as fast as it gets.

    Erlang.mk will group the compilation of files so as to avoid running the BEAM more than necessary. This saves many seconds compared to traditional Makefiles, even on small projects.

    Erlang.mk will not try to be too smart. It provides a simple solution that works for most people, and gives additional options for projects that run into edge cases, often in the -form of extra variables or rules to be defined.

    27.2. Erlang.mk gives you the full power of Unix

    Erlang.mk is a Makefile.

    You could use Erlang.mk directly without configuring anything +form of extra variables or rules to be defined.

    28.2. Erlang.mk gives you the full power of Unix

    Erlang.mk is a Makefile.

    You could use Erlang.mk directly without configuring anything and it would just work. But you can also extend it greatly either through configuration or hooks, and you can of course add your own rules to the Makefile.

    In all cases: for configuration, hooks or custom rules, you @@ -48,22 +48,22 @@ have all the power of Unix at your disposal, and can call any utility or even any language interpreter you want, every time you need to. Erlang.mk also allows you to write scripts in this small language called Erlang directly inside -your Makefile if you ever need to…

    27.3. Erlang.mk is a text file

    Erlang.mk is a Makefile.

    Which means Erlang.mk is a simple text file. You can edit a +your Makefile if you ever need to…

    28.3. Erlang.mk is a text file

    Erlang.mk is a Makefile.

    Which means Erlang.mk is a simple text file. You can edit a text file. Nothing stops you. If you run into any bug, or behavior that does not suit you, you can just open the erlang.mk file in your favorite editor, fix and/or comment -a few lines, save, and try again. It’s as simple as it gets.

    Currently using a binary build tool? Good luck with that.

    27.4. Erlang.mk can manage Erlang itself

    Erlang.mk isn’t written in Erlang.

    That’s not a good thing, you say? Well, here’s one thing +a few lines, save, and try again. It’s as simple as it gets.

    Currently using a binary build tool? Good luck with that.

    28.4. Erlang.mk can manage Erlang itself

    Erlang.mk isn’t written in Erlang.

    That’s not a good thing, you say? Well, here’s one thing that Erlang.mk and Makefiles can do for you that Erlang build tool can’t easily: choose what version of Erlang is to be used for compiling the project.

    This really is a one-liner in Erlang.mk (a few more lines if you also let it download and build Erlang directly) and allows for even greater things, like testing your project across all supported Erlang versions in one small -command: make -k ci.

    27.5. Erlang.mk can do more than Erlang

    Erlang.mk doesn’t care what your dependencies are written in.

    Erlang.mk will happily compile any dependency, as long as +command: make -k ci.

    28.5. Erlang.mk can do more than Erlang

    Erlang.mk doesn’t care what your dependencies are written in.

    Erlang.mk will happily compile any dependency, as long as they come with a Makefile. The dependency can be written in C, C++ or even Javascript… Who cares, really? If you need Erlang.mk to fetch it, then Erlang.mk will fetch it -and compile it as needed.

    27.6. Erlang.mk integrates nicely in Make and Automake projects

    If you are planning to put your project in the middle of +and compile it as needed.

    28.6. Erlang.mk integrates nicely in Make and Automake projects

    If you are planning to put your project in the middle of a Make or Automake-based build environment, then the most logical thing to do is to use a Makefile.

    Erlang.mk will happily sit in such an environment and behave as you expect it to.

    diff --git a/guide/xref.html b/guide/xref.html index a4a9aff..0f87df2 100644 --- a/guide/xref.html +++ b/guide/xref.html @@ -33,7 +33,7 @@ div.navfooter{margin-bottom:1em}
    -

    Chapter 24. Xref

    Placeholder chapter.

    +

    Chapter 25. Xref

    Placeholder chapter.

    -- cgit v1.2.3