diff options
author | Loïc Hoguin <[email protected]> | 2015-01-10 12:18:30 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-01-10 12:19:43 +0100 |
commit | 098aa65854199fe1f58e4bd870f948bdd597741a (patch) | |
tree | 522a981e54b5b1719171e52a2560a1f6e7b7bdfc /core/core.mk | |
parent | c458582b1bd6d7f221befb5e461a1e15da7f32d2 (diff) | |
download | erlang.mk-098aa65854199fe1f58e4bd870f948bdd597741a.tar.gz erlang.mk-098aa65854199fe1f58e4bd870f948bdd597741a.tar.bz2 erlang.mk-098aa65854199fe1f58e4bd870f948bdd597741a.zip |
Improve the target 'all'
No more plugin stuff creeping into core.
Diffstat (limited to 'core/core.mk')
-rw-r--r-- | core/core.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/core.mk b/core/core.mk index 95b4c57..0d3fcf9 100644 --- a/core/core.mk +++ b/core/core.mk @@ -38,13 +38,13 @@ ifneq ($(words $(MAKECMDGOALS)),1) .NOTPARALLEL: endif -all:: - @$(MAKE) --no-print-directory deps +all:: deps @$(MAKE) --no-print-directory app -# @todo Plugin stuff creeping inside Core, not good. -ifneq ($(wildcard $(RELX_CONFIG)),) @$(MAKE) --no-print-directory rel -endif + +# Noop to avoid a Make warning when there's nothing to do. +rel:: + @echo -n clean:: $(gen_verbose) rm -f erl_crash.dump |