blob: 4a29e1cf7c0a21f188588e6d8aa5061b5b4b43e5 [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
kenton@google.com7516a692008-09-30 20:55:25 +00005AUTOMAKE_OPTIONS = foreign
6
kenton@google.com37ad00d2009-04-21 21:00:39 +00007# Build . before src so that our all-local and clean-local hooks kicks in at
8# the right time.
9SUBDIRS = . src
10
11# Always include gtest in distributions.
12DIST_SUBDIRS = $(subdirs) src
13
14# Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
15# because then "make check" would also build and run all of gtest's own tests,
16# which takes a lot of time and is generally not useful to us. Also, we don't
17# want "make install" to recurse into gtest since we don't want to overwrite
18# the installed version of gtest if there is one.
19check-local:
20 @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
21 @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
22
23# We would like to clean gtest when "make clean" is invoked. But we have to
24# be careful because clean-local is also invoked during "make distclean", but
25# "make distclean" already recurses into gtest because it's listed among the
26# DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
27# cd to the directory again and "make clean" it will fail. So, check that the
28# Makefile exists before recursing.
29clean-local:
30 @if test -e gtest/Makefile; then \
31 echo "Making clean in gtest"; \
32 cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
33 fi
temporal40ee5512008-07-10 02:12:20 +000034
kenton@google.com3c66c2e2009-08-03 21:31:25 +000035pkgconfigdir = $(libdir)/pkgconfig
36pkgconfig_DATA = protobuf.pc protobuf-lite.pc
37
temporal40ee5512008-07-10 02:12:20 +000038EXTRA_DIST = \
39 autogen.sh \
40 generate_descriptor_proto.sh \
Feng Xiaoaa51f2a2014-08-29 17:27:24 -070041 README.md \
temporal40ee5512008-07-10 02:12:20 +000042 INSTALL.txt \
Feng Xiaoe9c00d92014-08-26 16:16:00 -070043 LICENSE \
temporal40ee5512008-07-10 02:12:20 +000044 CONTRIBUTORS.txt \
45 CHANGES.txt \
46 editors/README.txt \
47 editors/proto.vim \
kenton@google.com2cdba5b2009-05-01 21:03:20 +000048 editors/protobuf-mode.el \
temporal40ee5512008-07-10 02:12:20 +000049 vsprojects/config.h \
50 vsprojects/extract_includes.bat \
51 vsprojects/libprotobuf.vcproj \
temporalad2cfe02009-08-01 22:54:30 +000052 vsprojects/libprotobuf-lite.vcproj \
temporal40ee5512008-07-10 02:12:20 +000053 vsprojects/libprotoc.vcproj \
54 vsprojects/protobuf.sln \
55 vsprojects/protoc.vcproj \
56 vsprojects/readme.txt \
kenton@google.com94fd2ad2009-12-21 21:46:25 +000057 vsprojects/test_plugin.vcproj \
temporal40ee5512008-07-10 02:12:20 +000058 vsprojects/tests.vcproj \
temporalad2cfe02009-08-01 22:54:30 +000059 vsprojects/lite-test.vcproj \
temporal40ee5512008-07-10 02:12:20 +000060 vsprojects/convert2008to2005.sh \
61 examples/README.txt \
62 examples/Makefile \
63 examples/addressbook.proto \
64 examples/add_person.cc \
65 examples/list_people.cc \
66 examples/AddPerson.java \
67 examples/ListPeople.java \
68 examples/add_person.py \
69 examples/list_people.py \
70 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000071 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000072 java/src/main/java/com/google/protobuf/AbstractParser.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000073 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
74 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000075 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +000076 java/src/main/java/com/google/protobuf/ByteString.java \
77 java/src/main/java/com/google/protobuf/CodedInputStream.java \
78 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
79 java/src/main/java/com/google/protobuf/Descriptors.java \
80 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000081 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080082 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +000083 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000084 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +000085 java/src/main/java/com/google/protobuf/FieldSet.java \
86 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000087 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
88 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +000089 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000090 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000091 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000092 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
93 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000094 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080095 java/src/main/java/com/google/protobuf/MapEntry.java \
96 java/src/main/java/com/google/protobuf/MapEntryLite.java \
97 java/src/main/java/com/google/protobuf/MapField.java \
98 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +000099 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000100 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000101 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
102 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000103 java/src/main/java/com/google/protobuf/MessageReflection.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000104 java/src/main/java/com/google/protobuf/Parser.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +0000105 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000106 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000107 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000108 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000109 java/src/main/java/com/google/protobuf/RpcCallback.java \
110 java/src/main/java/com/google/protobuf/RpcChannel.java \
111 java/src/main/java/com/google/protobuf/RpcController.java \
112 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +0000113 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000114 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000115 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
116 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +0000117 java/src/main/java/com/google/protobuf/TextFormat.java \
118 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
119 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800120 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000121 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000122 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +0000123 java/src/main/java/com/google/protobuf/WireFormat.java \
124 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000125 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
126 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000127 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000128 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
129 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000130 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000131 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
132 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800133 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000134 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000135 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000136 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
137 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000138 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800139 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000140 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000141 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
142 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000143 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000144 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000145 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800146 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
147 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
148 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000149 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000150 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000151 java/src/test/java/com/google/protobuf/ParserTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000152 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000153 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
154 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000155 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000156 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
157 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
158 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000159 java/src/test/java/com/google/protobuf/TestUtil.java \
160 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800161 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
162 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000163 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000164 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000165 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800166 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000167 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
168 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800169 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
170 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000171 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000172 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000173 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000174 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000175 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000176 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000177 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
178 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800179 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000180 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000181 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
182 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
183 java/src/test/java/com/google/protobuf/test_custom_options.proto \
temporal40ee5512008-07-10 02:12:20 +0000184 java/pom.xml \
185 java/README.txt \
jieluo@google.combde4a322014-08-12 21:10:30 +0000186 python/google/protobuf/internal/api_implementation.cc \
187 python/google/protobuf/internal/api_implementation.py \
188 python/google/protobuf/internal/api_implementation_default_test.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000189 python/google/protobuf/internal/containers.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000190 python/google/protobuf/internal/cpp_message.py \
temporal40ee5512008-07-10 02:12:20 +0000191 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000192 python/google/protobuf/internal/descriptor_database_test.py \
193 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000194 python/google/protobuf/internal/descriptor_pool_test1.proto \
195 python/google/protobuf/internal/descriptor_pool_test2.proto \
196 python/google/protobuf/internal/descriptor_python_test.py \
temporal40ee5512008-07-10 02:12:20 +0000197 python/google/protobuf/internal/descriptor_test.py \
198 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000199 python/google/protobuf/internal/enum_type_wrapper.py \
200 python/google/protobuf/internal/factory_test1.proto \
201 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000202 python/google/protobuf/internal/generator_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000203 python/google/protobuf/internal/message_factory_python_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000204 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000205 python/google/protobuf/internal/message_listener.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000206 python/google/protobuf/internal/message_python_test.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000207 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000208 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000209 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000210 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000211 python/google/protobuf/internal/more_messages.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800212 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000213 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000214 python/google/protobuf/internal/reflection_test.py \
215 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000216 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000217 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000218 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000219 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000220 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000221 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000222 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000223 python/google/protobuf/internal/wire_format.py \
224 python/google/protobuf/internal/wire_format_test.py \
225 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800226 python/google/protobuf/internal/import_test_package/BUILD \
227 python/google/protobuf/internal/import_test_package/__init__.py \
228 python/google/protobuf/internal/import_test_package/inner.proto \
229 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000230 python/google/protobuf/pyext/README \
231 python/google/protobuf/pyext/cpp_message.py \
232 python/google/protobuf/pyext/descriptor.h \
233 python/google/protobuf/pyext/descriptor.cc \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000234 python/google/protobuf/pyext/descriptor_cpp2_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000235 python/google/protobuf/pyext/extension_dict.h \
236 python/google/protobuf/pyext/extension_dict.cc \
237 python/google/protobuf/pyext/message.h \
238 python/google/protobuf/pyext/message.cc \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000239 python/google/protobuf/pyext/message_factory_cpp2_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000240 python/google/protobuf/pyext/proto2_api_test.proto \
241 python/google/protobuf/pyext/python.proto \
242 python/google/protobuf/pyext/python_protobuf.h \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000243 python/google/protobuf/pyext/reflection_cpp2_generated_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000244 python/google/protobuf/pyext/repeated_composite_container.h \
245 python/google/protobuf/pyext/repeated_composite_container.cc \
246 python/google/protobuf/pyext/repeated_scalar_container.h \
247 python/google/protobuf/pyext/repeated_scalar_container.cc \
248 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
249 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000250 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000251 python/google/protobuf/descriptor_database.py \
252 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000253 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000254 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800255 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000256 python/google/protobuf/reflection.py \
257 python/google/protobuf/service.py \
258 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000259 python/google/protobuf/symbol_database.py \
260 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000261 python/google/protobuf/text_format.py \
262 python/google/protobuf/__init__.py \
263 python/google/__init__.py \
264 python/ez_setup.py \
265 python/setup.py \
266 python/mox.py \
267 python/stubout.py \
268 python/README.txt
269
270# Deletes all the files generated by autogen.sh.
271MAINTAINERCLEANFILES = \
272 aclocal.m4 \
273 config.guess \
274 config.sub \
275 configure \
276 depcomp \
277 install-sh \
278 ltmain.sh \
279 Makefile.in \
280 missing \
281 mkinstalldirs \
282 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000283 stamp.h.in \
284 m4/ltsugar.m4 \
285 m4/libtool.m4 \
286 m4/ltversion.m4 \
287 m4/lt~obsolete.m4 \
288 m4/ltoptions.m4