blob: 1c0392300c33d87ebead6d5f407d91b0e5a50bac [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
Feng Xiao8f7dec82014-12-02 14:15:26 -080038java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +000039 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000040 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000041 java/src/main/java/com/google/protobuf/AbstractParser.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000042 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
43 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000044 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +000045 java/src/main/java/com/google/protobuf/ByteString.java \
46 java/src/main/java/com/google/protobuf/CodedInputStream.java \
47 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
48 java/src/main/java/com/google/protobuf/Descriptors.java \
49 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000050 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080051 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +000052 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000053 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +000054 java/src/main/java/com/google/protobuf/FieldSet.java \
55 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000056 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
57 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +000058 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000059 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000060 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000061 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
62 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000063 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080064 java/src/main/java/com/google/protobuf/MapEntry.java \
65 java/src/main/java/com/google/protobuf/MapEntryLite.java \
66 java/src/main/java/com/google/protobuf/MapField.java \
67 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +000068 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000069 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000070 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
71 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000072 java/src/main/java/com/google/protobuf/MessageReflection.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000073 java/src/main/java/com/google/protobuf/Parser.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +000074 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000075 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000076 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000077 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +000078 java/src/main/java/com/google/protobuf/RpcCallback.java \
79 java/src/main/java/com/google/protobuf/RpcChannel.java \
80 java/src/main/java/com/google/protobuf/RpcController.java \
81 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000082 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000083 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000084 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
85 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +000086 java/src/main/java/com/google/protobuf/TextFormat.java \
87 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
88 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080089 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000090 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000091 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +000092 java/src/main/java/com/google/protobuf/WireFormat.java \
93 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000094 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
95 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000096 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +000097 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
98 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000099 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000100 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
101 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800102 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000103 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000104 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000105 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
106 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000107 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800108 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000109 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000110 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
111 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000112 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000113 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000114 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800115 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
116 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
117 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000118 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000119 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000120 java/src/test/java/com/google/protobuf/ParserTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000121 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000122 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
123 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000124 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000125 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
126 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
127 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000128 java/src/test/java/com/google/protobuf/TestUtil.java \
129 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800130 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
131 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000132 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000133 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000134 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800135 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000136 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
137 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800138 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800139 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
140 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000141 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000142 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000143 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000144 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000145 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000146 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000147 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
148 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800149 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000150 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000151 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
152 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
153 java/src/test/java/com/google/protobuf/test_custom_options.proto \
temporal40ee5512008-07-10 02:12:20 +0000154 java/pom.xml \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800155 java/README.txt
156
Jisi Liuff35de32015-02-21 14:58:02 -0800157javanano_EXTRA_DIST= \
158 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
159 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
160 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
161 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
162 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
163 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
164 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
165 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
166 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
167 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
168 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
169 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
170 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
171 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
172 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
173 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
174 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
175 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
176 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
177 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
178 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
179 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
180 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
181 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
182 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
183 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
184 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
185 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
186 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
187 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
188 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
189 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
190 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
191 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
192 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
193 javanano/README.txt \
194 javanano/pom.xml
195
196
Feng Xiao8f7dec82014-12-02 14:15:26 -0800197python_EXTRA_DIST= \
jieluo@google.combde4a322014-08-12 21:10:30 +0000198 python/google/protobuf/internal/api_implementation.cc \
199 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000200 python/google/protobuf/internal/containers.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000201 python/google/protobuf/internal/cpp_message.py \
temporal40ee5512008-07-10 02:12:20 +0000202 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000203 python/google/protobuf/internal/descriptor_database_test.py \
204 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000205 python/google/protobuf/internal/descriptor_pool_test1.proto \
206 python/google/protobuf/internal/descriptor_pool_test2.proto \
207 python/google/protobuf/internal/descriptor_python_test.py \
temporal40ee5512008-07-10 02:12:20 +0000208 python/google/protobuf/internal/descriptor_test.py \
209 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000210 python/google/protobuf/internal/enum_type_wrapper.py \
211 python/google/protobuf/internal/factory_test1.proto \
212 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000213 python/google/protobuf/internal/generator_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000214 python/google/protobuf/internal/message_factory_python_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000215 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000216 python/google/protobuf/internal/message_listener.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000217 python/google/protobuf/internal/message_python_test.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000218 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000219 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000220 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000221 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000222 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800223 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800224 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000225 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000226 python/google/protobuf/internal/reflection_test.py \
227 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000228 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000229 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000230 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000231 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000232 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000233 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000234 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000235 python/google/protobuf/internal/wire_format.py \
236 python/google/protobuf/internal/wire_format_test.py \
237 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800238 python/google/protobuf/internal/import_test_package/__init__.py \
239 python/google/protobuf/internal/import_test_package/inner.proto \
240 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000241 python/google/protobuf/pyext/README \
242 python/google/protobuf/pyext/cpp_message.py \
243 python/google/protobuf/pyext/descriptor.h \
244 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800245 python/google/protobuf/pyext/descriptor_pool.h \
246 python/google/protobuf/pyext/descriptor_pool.cc \
247 python/google/protobuf/pyext/descriptor_containers.h \
248 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000249 python/google/protobuf/pyext/extension_dict.h \
250 python/google/protobuf/pyext/extension_dict.cc \
251 python/google/protobuf/pyext/message.h \
252 python/google/protobuf/pyext/message.cc \
253 python/google/protobuf/pyext/proto2_api_test.proto \
254 python/google/protobuf/pyext/python.proto \
255 python/google/protobuf/pyext/python_protobuf.h \
256 python/google/protobuf/pyext/repeated_composite_container.h \
257 python/google/protobuf/pyext/repeated_composite_container.cc \
258 python/google/protobuf/pyext/repeated_scalar_container.h \
259 python/google/protobuf/pyext/repeated_scalar_container.cc \
260 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
261 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000262 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000263 python/google/protobuf/descriptor_database.py \
264 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000265 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000266 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800267 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000268 python/google/protobuf/reflection.py \
269 python/google/protobuf/service.py \
270 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000271 python/google/protobuf/symbol_database.py \
272 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000273 python/google/protobuf/text_format.py \
274 python/google/protobuf/__init__.py \
275 python/google/__init__.py \
276 python/ez_setup.py \
277 python/setup.py \
278 python/mox.py \
279 python/stubout.py \
280 python/README.txt
281
Chris Fallin973f4252014-11-18 14:19:58 -0800282ruby_EXTRA_DIST= \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800283 ruby/README.md \
284 ruby/Rakefile \
285 ruby/ext/google/protobuf_c/defs.c \
286 ruby/ext/google/protobuf_c/encode_decode.c \
287 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800288 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800289 ruby/ext/google/protobuf_c/message.c \
290 ruby/ext/google/protobuf_c/protobuf.c \
291 ruby/ext/google/protobuf_c/protobuf.h \
292 ruby/ext/google/protobuf_c/repeated_field.c \
293 ruby/ext/google/protobuf_c/storage.c \
294 ruby/ext/google/protobuf_c/upb.c \
295 ruby/ext/google/protobuf_c/upb.h \
296 ruby/google-protobuf.gemspec \
297 ruby/lib/google/protobuf.rb \
298 ruby/tests/basic.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800299 ruby/tests/stress.rb \
300 ruby/tests/generated_code.proto \
301 ruby/tests/generated_code.rb \
302 ruby/tests/generated_code_test.rb
Chris Fallin973f4252014-11-18 14:19:58 -0800303
Jisi Liuff35de32015-02-21 14:58:02 -0800304all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800305
306EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
307 autogen.sh \
308 generate_descriptor_proto.sh \
309 README.md \
310 INSTALL.txt \
311 LICENSE \
312 CONTRIBUTORS.txt \
313 CHANGES.txt \
Jisi Liudf184fb2015-02-25 15:28:44 -0800314 config.h.include \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800315 editors/README.txt \
316 editors/proto.vim \
317 editors/protobuf-mode.el \
318 vsprojects/config.h \
Jisi Liudf184fb2015-02-25 15:28:44 -0800319 vsprojects/google/protobuf/stubs/pbconfig.h \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800320 vsprojects/extract_includes.bat \
321 vsprojects/libprotobuf.vcproj \
322 vsprojects/libprotobuf-lite.vcproj \
323 vsprojects/libprotoc.vcproj \
324 vsprojects/protobuf.sln \
325 vsprojects/protoc.vcproj \
326 vsprojects/readme.txt \
327 vsprojects/test_plugin.vcproj \
328 vsprojects/tests.vcproj \
329 vsprojects/lite-test.vcproj \
330 vsprojects/convert2008to2005.sh \
331 examples/README.txt \
332 examples/Makefile \
333 examples/addressbook.proto \
334 examples/add_person.cc \
335 examples/list_people.cc \
336 examples/AddPerson.java \
337 examples/ListPeople.java \
338 examples/add_person.py \
339 examples/list_people.py
340
temporal40ee5512008-07-10 02:12:20 +0000341# Deletes all the files generated by autogen.sh.
342MAINTAINERCLEANFILES = \
343 aclocal.m4 \
344 config.guess \
345 config.sub \
346 configure \
347 depcomp \
348 install-sh \
349 ltmain.sh \
350 Makefile.in \
351 missing \
352 mkinstalldirs \
353 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000354 stamp.h.in \
355 m4/ltsugar.m4 \
356 m4/libtool.m4 \
357 m4/ltversion.m4 \
358 m4/lt~obsolete.m4 \
359 m4/ltoptions.m4