summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUli Schlachter <psychon@znc.in>2013-10-13 11:47:27 +0200
committerMichael Stapelberg <michael@stapelberg.de>2013-10-13 21:37:41 +0200
commit0d84049a454bc613c38c26a8e78b0398ec704385 (patch)
tree2eeec2f6dccf439426a56f191616b76545baf5d1
parent3097d12ba67a51faa4507b6868e3b99f3c0e1096 (diff)
Use $(AM_V_GEN) when calling gperf
This adds support for automake's silent mode to the gperf rule. In silent mode, make will not print the whole command lines, but only a short version of what it does. For this rule, "GEN shape_to_id.c" will be printed. Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r--cursor/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/cursor/Makefile.am b/cursor/Makefile.am
index 186a39e..6982845 100644
--- a/cursor/Makefile.am
+++ b/cursor/Makefile.am
@@ -21,7 +21,7 @@ GPERFFLAGS = --includes --struct-type --language=ANSI-C --switch=1
CLEANFILES = shape_to_id.c
shape_to_id.c: shape_to_id.gperf
- if $(GPERF) $(GPERFFLAGS) shape_to_id.gperf >$@t; then \
+ $(AM_V_GEN)if $(GPERF) $(GPERFFLAGS) shape_to_id.gperf >$@t; then \
mv $@t $@; \
elif $(GPERF) --version >/dev/null 2>&1; then \
rm $@t; \