diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-09-23 11:45:39 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-09-23 11:48:28 +0200 |
commit | 061c169d277db5611a9d3ea8351f0d4d0d613b0a (patch) | |
tree | 0204b9fc722e4ca5a2abe467bd6c9fec1f0b1fc1 /src/Makefile.am | |
parent | d1fac4d941aaa9dbf9e72540f97d928af241cb5e (diff) | |
download | cmumble-061c169d277db5611a9d3ea8351f0d4d0d613b0a.tar.gz cmumble-061c169d277db5611a9d3ea8351f0d4d0d613b0a.tar.bz2 cmumble-061c169d277db5611a9d3ea8351f0d4d0d613b0a.zip |
Rename message.h to message_list.h
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 8af2758..ef92bee 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ bin_PROGRAMS = cmumble noinst_HEADERS = cmumble.h varint.h io.h connection.h -nodist_noinst_HEADERS = mumble.pb-c.h messages.h +nodist_noinst_HEADERS = mumble.pb-c.h message_list.h cmumble_SOURCES = cmumble.c messages.c varint.c io.c connection.c nodist_cmumble_SOURCES = mumble.pb-c.c @@ -15,14 +15,14 @@ AM_CFLAGS = $(GCC_CFLAGS) BUILT_SOURCES = $(nodist_cmumble_SOURCES) $(nodist_noinst_HEADERS) MAINTAINERCLEANFILES = mumble.pb-c.c mumble.pb-c.h -CLEANFILES = messages.h -EXTRA_DIST = mumble.proto messages.txt gen_messages.sed +CLEANFILES = message_list.h +EXTRA_DIST = mumble.proto messages.txt gen_message_list.sed # Ship files generated by protoc-c in releases, # so that protoc-c (which pulls in the c++ protobuf) is not needed. EXTRA_DIST += mumble.pb-c.c mumble.pb-c.h -messages.h: $(srcdir)/messages.txt $(srcdir)/gen_messages.sed - $(AM_V_GEN) LC_ALL= LC_COLLATE=C $(SED) -f $(srcdir)/gen_messages.sed $< > $@ +message_list.h: $(srcdir)/messages.txt $(srcdir)/gen_message_list.sed + $(AM_V_GEN) LC_ALL= LC_COLLATE=C $(SED) -f $(srcdir)/gen_message_list.sed $< > $@ mumble.pb-c.c mumble.pb-c.h: $(srcdir)/mumble.proto $(AM_V_GEN) $(builddir)/protoc-c.sh $< $@ |