updating.asciidoc 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. == Updating Erlang.mk
  2. This chapter describes how to update the 'erlang.mk' file
  3. in your repository.
  4. === Initial bootstrap
  5. The first time you use Erlang.mk, it will bootstrap itself.
  6. It always uses the most recent version for this, so you don't
  7. have to update after creating your project.
  8. === Updating
  9. Later on though, updating becomes a necessity. Erlang.mk
  10. developers and contributors relentlessly improve the project
  11. and add new features; it would be a waste not to benefit
  12. from this.
  13. That's why updating Erlang.mk is so simple. All you need
  14. to do is to call `make erlang-mk`:
  15. [source,bash]
  16. ----
  17. $ make erlang-mk
  18. git clone https://github.com/ninenines/erlang.mk .erlang.mk.build
  19. Cloning into '.erlang.mk.build'...
  20. remote: Counting objects: 4035, done.
  21. remote: Compressing objects: 100% (12/12), done.
  22. remote: Total 4035 (delta 8), reused 4 (delta 4), pack-reused 4019
  23. Receiving objects: 100% (4035/4035), 1.10 MiB | 1000.00 KiB/s, done.
  24. Resolving deltas: 100% (2442/2442), done.
  25. Checking connectivity... done.
  26. if [ -f build.config ]; then cp build.config .erlang.mk.build; fi
  27. cd .erlang.mk.build && make
  28. make[1]: Entering directory '/home/essen/tmp/emkg/hello_joe/.erlang.mk.build'
  29. awk 'FNR==1 && NR!=1{print ""}1' core/core.mk index/*.mk core/index.mk core/deps.mk plugins/protobuffs.mk core/erlc.mk core/docs.mk core/test.mk plugins/asciidoc.mk plugins/bootstrap.mk plugins/c_src.mk plugins/ci.mk plugins/ct.mk plugins/dialyzer.mk plugins/edoc.mk plugins/elvis.mk plugins/erlydtl.mk plugins/escript.mk plugins/eunit.mk plugins/relx.mk plugins/shell.mk plugins/triq.mk plugins/xref.mk plugins/cover.mk \
  30. | sed 's/^ERLANG_MK_VERSION = .*/ERLANG_MK_VERSION = 1.2.0-642-gccd2b9f/' > erlang.mk
  31. make[1]: Leaving directory '/home/essen/tmp/emkg/hello_joe/.erlang.mk.build'
  32. cp .erlang.mk.build/erlang.mk ./erlang.mk
  33. rm -rf .erlang.mk.build
  34. ----
  35. All that's left to do is to commit the file!
  36. Yep, it's that easy.
  37. === Customizing the build
  38. Erlang.mk allows you to customize which plugins are to be included
  39. in the 'erlang.mk' file. You can do so by maintaining your own
  40. 'build.config' file in your repository. Erlang.mk will automatically
  41. use it the next time you run `make erlang-mk`.
  42. The 'build.config' file contains the list of all files that will
  43. be built into the resulting 'erlang.mk' file. You can start from
  44. the https://github.com/ninenines/erlang.mk/blob/master/build.config[most recent version]
  45. and customize to your needs.
  46. You can also name the file differently or put it in a separate folder
  47. by modifying the value for `ERLANG_MK_BUILD_CONFIG`. You can also
  48. tell Erlang.mk to use a different temporary directory by changing
  49. the `ERLANG_MK_BUILD_DIR` variable.