blob: 3cabcf57e51bfddb6634c5c94ad1c934c9f584c8 [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.
Josh Haberman35a1cc72015-04-01 17:23:48 -070012DIST_SUBDIRS = $(subdirs) src conformance
kenton@google.com37ad00d2009-04-21 21:00:39 +000013
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; \
Josh Haberman35a1cc72015-04-01 17:23:48 -070033 fi; \
34 if test -e conformance/Makefile; then \
35 echo "Making clean in conformance"; \
36 cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \
kenton@google.com37ad00d2009-04-21 21:00:39 +000037 fi
temporal40ee5512008-07-10 02:12:20 +000038
kenton@google.com3c66c2e2009-08-03 21:31:25 +000039pkgconfigdir = $(libdir)/pkgconfig
40pkgconfig_DATA = protobuf.pc protobuf-lite.pc
41
Feng Xiao8f7dec82014-12-02 14:15:26 -080042java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +000043 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000044 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000045 java/src/main/java/com/google/protobuf/AbstractParser.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000046 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
47 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000048 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +000049 java/src/main/java/com/google/protobuf/ByteString.java \
50 java/src/main/java/com/google/protobuf/CodedInputStream.java \
51 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
52 java/src/main/java/com/google/protobuf/Descriptors.java \
53 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000054 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080055 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +000056 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000057 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +000058 java/src/main/java/com/google/protobuf/FieldSet.java \
59 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000060 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
61 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +000062 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000063 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000064 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000065 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
66 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000067 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080068 java/src/main/java/com/google/protobuf/MapEntry.java \
69 java/src/main/java/com/google/protobuf/MapEntryLite.java \
70 java/src/main/java/com/google/protobuf/MapField.java \
71 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +000072 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000073 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000074 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
75 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000076 java/src/main/java/com/google/protobuf/MessageReflection.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000077 java/src/main/java/com/google/protobuf/Parser.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +000078 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000079 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000080 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000081 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +000082 java/src/main/java/com/google/protobuf/RpcCallback.java \
83 java/src/main/java/com/google/protobuf/RpcChannel.java \
84 java/src/main/java/com/google/protobuf/RpcController.java \
85 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000086 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000087 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000088 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
89 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +000090 java/src/main/java/com/google/protobuf/TextFormat.java \
91 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
92 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080093 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000094 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000095 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +000096 java/src/main/java/com/google/protobuf/WireFormat.java \
97 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000098 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
99 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000100 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000101 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
102 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000103 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000104 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
105 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800106 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000107 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000108 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000109 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
110 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000111 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800112 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000113 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000114 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
115 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000116 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000117 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000118 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800119 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
120 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
121 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000122 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000123 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000124 java/src/test/java/com/google/protobuf/ParserTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000125 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000126 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
127 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000128 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000129 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
130 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
131 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000132 java/src/test/java/com/google/protobuf/TestUtil.java \
133 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800134 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
135 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000136 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000137 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000138 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800139 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000140 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
141 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800142 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800143 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
144 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000145 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000146 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000147 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000148 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000149 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000150 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000151 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
152 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800153 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000154 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000155 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
156 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
157 java/src/test/java/com/google/protobuf/test_custom_options.proto \
temporal40ee5512008-07-10 02:12:20 +0000158 java/pom.xml \
jesse0481bf32015-03-17 12:14:55 -0700159 java/README.md
Feng Xiao8f7dec82014-12-02 14:15:26 -0800160
Jisi Liuff35de32015-02-21 14:58:02 -0800161javanano_EXTRA_DIST= \
162 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
163 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
164 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
165 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
166 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
167 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
168 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
169 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
170 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
171 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
172 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
173 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
174 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
175 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
176 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
177 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
178 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
179 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
180 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
181 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
182 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
183 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
184 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
185 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
186 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
187 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
188 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
189 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
190 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
191 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
192 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
193 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
194 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
195 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
196 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
jesse0481bf32015-03-17 12:14:55 -0700197 javanano/README.md \
Jisi Liuff35de32015-02-21 14:58:02 -0800198 javanano/pom.xml
199
200
Feng Xiao8f7dec82014-12-02 14:15:26 -0800201python_EXTRA_DIST= \
jieluo@google.combde4a322014-08-12 21:10:30 +0000202 python/google/protobuf/internal/api_implementation.cc \
203 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000204 python/google/protobuf/internal/containers.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000205 python/google/protobuf/internal/cpp_message.py \
temporal40ee5512008-07-10 02:12:20 +0000206 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000207 python/google/protobuf/internal/descriptor_database_test.py \
208 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000209 python/google/protobuf/internal/descriptor_pool_test1.proto \
210 python/google/protobuf/internal/descriptor_pool_test2.proto \
211 python/google/protobuf/internal/descriptor_python_test.py \
temporal40ee5512008-07-10 02:12:20 +0000212 python/google/protobuf/internal/descriptor_test.py \
213 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000214 python/google/protobuf/internal/enum_type_wrapper.py \
215 python/google/protobuf/internal/factory_test1.proto \
216 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000217 python/google/protobuf/internal/generator_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000218 python/google/protobuf/internal/message_factory_python_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000219 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000220 python/google/protobuf/internal/message_listener.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000221 python/google/protobuf/internal/message_python_test.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000222 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000223 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000224 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000225 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000226 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800227 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800228 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000229 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000230 python/google/protobuf/internal/reflection_test.py \
231 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000232 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000233 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000234 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000235 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000236 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000237 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000238 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000239 python/google/protobuf/internal/wire_format.py \
240 python/google/protobuf/internal/wire_format_test.py \
241 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800242 python/google/protobuf/internal/import_test_package/__init__.py \
243 python/google/protobuf/internal/import_test_package/inner.proto \
244 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000245 python/google/protobuf/pyext/README \
246 python/google/protobuf/pyext/cpp_message.py \
247 python/google/protobuf/pyext/descriptor.h \
248 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800249 python/google/protobuf/pyext/descriptor_pool.h \
250 python/google/protobuf/pyext/descriptor_pool.cc \
251 python/google/protobuf/pyext/descriptor_containers.h \
252 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000253 python/google/protobuf/pyext/extension_dict.h \
254 python/google/protobuf/pyext/extension_dict.cc \
255 python/google/protobuf/pyext/message.h \
256 python/google/protobuf/pyext/message.cc \
257 python/google/protobuf/pyext/proto2_api_test.proto \
258 python/google/protobuf/pyext/python.proto \
259 python/google/protobuf/pyext/python_protobuf.h \
260 python/google/protobuf/pyext/repeated_composite_container.h \
261 python/google/protobuf/pyext/repeated_composite_container.cc \
262 python/google/protobuf/pyext/repeated_scalar_container.h \
263 python/google/protobuf/pyext/repeated_scalar_container.cc \
264 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
265 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000266 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000267 python/google/protobuf/descriptor_database.py \
268 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000269 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000270 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800271 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000272 python/google/protobuf/reflection.py \
273 python/google/protobuf/service.py \
274 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000275 python/google/protobuf/symbol_database.py \
276 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000277 python/google/protobuf/text_format.py \
278 python/google/protobuf/__init__.py \
279 python/google/__init__.py \
280 python/ez_setup.py \
281 python/setup.py \
282 python/mox.py \
283 python/stubout.py \
jesse0481bf32015-03-17 12:14:55 -0700284 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000285
Chris Fallin973f4252014-11-18 14:19:58 -0800286ruby_EXTRA_DIST= \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800287 ruby/README.md \
288 ruby/Rakefile \
289 ruby/ext/google/protobuf_c/defs.c \
290 ruby/ext/google/protobuf_c/encode_decode.c \
291 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800292 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800293 ruby/ext/google/protobuf_c/message.c \
294 ruby/ext/google/protobuf_c/protobuf.c \
295 ruby/ext/google/protobuf_c/protobuf.h \
296 ruby/ext/google/protobuf_c/repeated_field.c \
297 ruby/ext/google/protobuf_c/storage.c \
298 ruby/ext/google/protobuf_c/upb.c \
299 ruby/ext/google/protobuf_c/upb.h \
300 ruby/google-protobuf.gemspec \
301 ruby/lib/google/protobuf.rb \
302 ruby/tests/basic.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800303 ruby/tests/stress.rb \
304 ruby/tests/generated_code.proto \
305 ruby/tests/generated_code.rb \
306 ruby/tests/generated_code_test.rb
Chris Fallin973f4252014-11-18 14:19:58 -0800307
Jisi Liuff35de32015-02-21 14:58:02 -0800308all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800309
310EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
311 autogen.sh \
312 generate_descriptor_proto.sh \
313 README.md \
314 INSTALL.txt \
315 LICENSE \
316 CONTRIBUTORS.txt \
317 CHANGES.txt \
Jisi Liudf184fb2015-02-25 15:28:44 -0800318 config.h.include \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800319 editors/README.txt \
320 editors/proto.vim \
321 editors/protobuf-mode.el \
322 vsprojects/config.h \
Jisi Liudf184fb2015-02-25 15:28:44 -0800323 vsprojects/google/protobuf/stubs/pbconfig.h \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800324 vsprojects/extract_includes.bat \
325 vsprojects/libprotobuf.vcproj \
326 vsprojects/libprotobuf-lite.vcproj \
327 vsprojects/libprotoc.vcproj \
328 vsprojects/protobuf.sln \
329 vsprojects/protoc.vcproj \
330 vsprojects/readme.txt \
331 vsprojects/test_plugin.vcproj \
332 vsprojects/tests.vcproj \
333 vsprojects/lite-test.vcproj \
334 vsprojects/convert2008to2005.sh \
335 examples/README.txt \
336 examples/Makefile \
337 examples/addressbook.proto \
338 examples/add_person.cc \
339 examples/list_people.cc \
340 examples/AddPerson.java \
341 examples/ListPeople.java \
342 examples/add_person.py \
343 examples/list_people.py
344
temporal40ee5512008-07-10 02:12:20 +0000345# Deletes all the files generated by autogen.sh.
346MAINTAINERCLEANFILES = \
347 aclocal.m4 \
348 config.guess \
349 config.sub \
350 configure \
351 depcomp \
352 install-sh \
353 ltmain.sh \
354 Makefile.in \
355 missing \
356 mkinstalldirs \
357 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000358 stamp.h.in \
359 m4/ltsugar.m4 \
360 m4/libtool.m4 \
361 m4/ltversion.m4 \
362 m4/lt~obsolete.m4 \
363 m4/ltoptions.m4