diff options
-rw-r--r-- | core/core.mk | 8 | ||||
-rw-r--r-- | doc/src/guide/getting_started.asciidoc | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/core/core.mk b/core/core.mk index d0c701a..fd88dec 100644 --- a/core/core.mk +++ b/core/core.mk @@ -73,13 +73,9 @@ endif # Core targets. -ifneq ($(words $(MAKECMDGOALS)),1) .NOTPARALLEL: -endif -all:: deps - $(verbose) $(MAKE) --no-print-directory app - $(verbose) $(MAKE) --no-print-directory rel +all:: deps app rel # Noop to avoid a Make warning when there's nothing to do. rel:: @@ -101,7 +97,7 @@ help:: "erlang.mk (version $(ERLANG_MK_VERSION)) is distributed under the terms of the ISC License." \ "Copyright (c) 2013-2015 Loïc Hoguin <[email protected]>" \ "" \ - "Usage: [V=1] $(MAKE) [-jNUM] [target]..." \ + "Usage: [V=1] $(MAKE) [target]..." \ "" \ "Core targets:" \ " all Run deps, app and rel targets in that order" \ diff --git a/doc/src/guide/getting_started.asciidoc b/doc/src/guide/getting_started.asciidoc index 3fd9ebd..34280d1 100644 --- a/doc/src/guide/getting_started.asciidoc +++ b/doc/src/guide/getting_started.asciidoc @@ -228,7 +228,7 @@ $ make help erlang.mk (version 1.2.0-642-gccd2b9f) is distributed under the terms of the ISC License. Copyright (c) 2013-2015 Loïc Hoguin <[email protected]> -Usage: [V=1] make [-jNUM] [target]... +Usage: [V=1] make [target]... Core targets: all Run deps, app and rel targets in that order |