diff options
author | Loïc Hoguin <[email protected]> | 2014-11-25 18:37:52 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-11-25 18:37:52 +0200 |
commit | 7a408bc52f99f80df921b87891f7a98294fdd90b (patch) | |
tree | e2bca99f7fe7ab30a02d82a397f0fb6b95467c2c | |
parent | 78df4508a2e43ddc1676e27dd2f8267ccae3f9d6 (diff) | |
download | erlang.mk-7a408bc52f99f80df921b87891f7a98294fdd90b.tar.gz erlang.mk-7a408bc52f99f80df921b87891f7a98294fdd90b.tar.bz2 erlang.mk-7a408bc52f99f80df921b87891f7a98294fdd90b.zip |
Group clean-app commands
Smaller non-verbose output.
-rw-r--r-- | core/erlc.mk | 4 | ||||
-rw-r--r-- | erlang.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/erlc.mk b/core/erlc.mk index cbb7471..1737bc4 100644 --- a/core/erlc.mk +++ b/core/erlc.mk @@ -93,5 +93,5 @@ erlc-include: fi clean-app: - $(gen_verbose) rm -rf ebin/ priv/mibs/ - $(gen_verbose) rm -f $(addprefix include/,$(addsuffix .hrl,$(notdir $(basename $(wildcard mibs/*.mib))))) + $(gen_verbose) rm -rf ebin/ priv/mibs/ \ + $(addprefix include/,$(addsuffix .hrl,$(notdir $(basename $(wildcard mibs/*.mib))))) @@ -294,8 +294,8 @@ erlc-include: fi clean-app: - $(gen_verbose) rm -rf ebin/ priv/mibs/ - $(gen_verbose) rm -f $(addprefix include/,$(addsuffix .hrl,$(notdir $(basename $(wildcard mibs/*.mib))))) + $(gen_verbose) rm -rf ebin/ priv/mibs/ \ + $(addprefix include/,$(addsuffix .hrl,$(notdir $(basename $(wildcard mibs/*.mib))))) # Copyright (c) 2014, Loïc Hoguin <[email protected]> # This file is part of erlang.mk and subject to the terms of the ISC License. |