diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-07-11 10:28:46 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-07-11 10:35:04 +0200 |
commit | 415ba05bc6413695646b41120d149f7a53942001 (patch) | |
tree | d250cb3d67b243fd44ff4b2a5791eceed363a94a /src/Makefile.am | |
parent | 85e4041f910fc168ff524202d93d8bd077cda1c7 (diff) | |
download | cmumble-415ba05bc6413695646b41120d149f7a53942001.tar.gz cmumble-415ba05bc6413695646b41120d149f7a53942001.tar.bz2 cmumble-415ba05bc6413695646b41120d149f7a53942001.zip |
Adjust protocol/header generation rules for silent rules
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 7039ac2..be35cd2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,9 +11,9 @@ AM_CFLAGS = $(GCC_FLAGS) $(cmumble_SOURCES): messages.h mumble.pb-c.h messages.h: messages.txt gen_message.sh - ./gen_message.sh < $< > $@ + $(AM_V_GEN) ./gen_message.sh < $< > $@ mumble.pb-c.c mumble.pb-c.h: mumble.proto - $(PROTOBUF_EXECUTABLE) --c_out=. $< + $(AM_V_GEN) $(PROTOBUF_EXECUTABLE) --c_out=. $< CLEANFILES = mumble.pb-c.c mumble.pb-c.h messages.h |