aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/erlydtl.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2018-11-28 13:33:57 +0100
committerLoïc Hoguin <[email protected]>2018-11-28 13:33:57 +0100
commit7a514c6a372219fee528e0bc2ed0b2f2ba9c758d (patch)
treea0f4ef115bf87479c319d4392e25825a1da9b18c /plugins/erlydtl.mk
parent31c93f4ad6b55b90ccb07a047acb941af645c059 (diff)
downloaderlang.mk-7a514c6a372219fee528e0bc2ed0b2f2ba9c758d.tar.gz
erlang.mk-7a514c6a372219fee528e0bc2ed0b2f2ba9c758d.tar.bz2
erlang.mk-7a514c6a372219fee528e0bc2ed0b2f2ba9c758d.zip
Modernize the protobuffs plugin
Diffstat (limited to 'plugins/erlydtl.mk')
-rw-r--r--plugins/erlydtl.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/erlydtl.mk b/plugins/erlydtl.mk
index c88252e..79a1581 100644
--- a/plugins/erlydtl.mk
+++ b/plugins/erlydtl.mk
@@ -27,11 +27,11 @@ BEAM_FILES += $(addsuffix .beam,$(addprefix ebin/,$(DTL_MODULES)))
ifneq ($(words $(DTL_FILES)),0)
# Rebuild templates when the Makefile changes.
$(ERLANG_MK_TMP)/last-makefile-change-erlydtl: $(MAKEFILE_LIST)
- @mkdir -p $(ERLANG_MK_TMP)
- @if test -f $@; then \
+ $(verbose) mkdir -p $(ERLANG_MK_TMP)
+ $(verbose) if test -f $@; then \
touch $(DTL_FILES); \
fi
- @touch $@
+ $(verbose) touch $@
ebin/$(PROJECT).app:: $(ERLANG_MK_TMP)/last-makefile-change-erlydtl
endif