blob: 45d44f5c5107c36c3e20772d7699e8525b3670ba [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
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400200objectivec_EXTRA_DIST= \
201 objectivec/DevTools/generate_descriptors_proto.sh \
202 objectivec/DevTools/pddm.py \
203 objectivec/DevTools/pddm_tests.py \
204 objectivec/google/protobuf/Descriptor.pbobjc.h \
205 objectivec/google/protobuf/Descriptor.pbobjc.m \
206 objectivec/google/protobuf/Duration.pbobjc.h \
207 objectivec/google/protobuf/Duration.pbobjc.m \
208 objectivec/google/protobuf/Timestamp.pbobjc.h \
209 objectivec/google/protobuf/Timestamp.pbobjc.m \
210 objectivec/GPBArray.h \
211 objectivec/GPBArray.m \
212 objectivec/GPBArray_PackagePrivate.h \
213 objectivec/GPBBootstrap.h \
214 objectivec/GPBCodedInputStream.h \
215 objectivec/GPBCodedInputStream.m \
216 objectivec/GPBCodedInputStream_PackagePrivate.h \
217 objectivec/GPBCodedOutputStream.h \
218 objectivec/GPBCodedOutputStream.m \
219 objectivec/GPBDescriptor.h \
220 objectivec/GPBDescriptor.m \
221 objectivec/GPBDescriptor_PackagePrivate.h \
222 objectivec/GPBDictionary.h \
223 objectivec/GPBDictionary.m \
224 objectivec/GPBDictionary_PackagePrivate.h \
225 objectivec/GPBExtensionField.h \
226 objectivec/GPBExtensionField.m \
227 objectivec/GPBExtensionField_PackagePrivate.h \
228 objectivec/GPBExtensionRegistry.h \
229 objectivec/GPBExtensionRegistry.m \
230 objectivec/GPBExtensionRegistry_PackagePrivate.h \
231 objectivec/GPBField.h \
232 objectivec/GPBField.m \
233 objectivec/GPBField_PackagePrivate.h \
234 objectivec/GPBMessage.h \
235 objectivec/GPBMessage.m \
236 objectivec/GPBMessage_PackagePrivate.h \
237 objectivec/GPBProtocolBuffers.h \
238 objectivec/GPBProtocolBuffers.m \
239 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
240 objectivec/GPBRootObject.h \
241 objectivec/GPBRootObject.m \
242 objectivec/GPBRootObject_PackagePrivate.h \
243 objectivec/GPBTypes.h \
244 objectivec/GPBUnknownFieldSet.h \
245 objectivec/GPBUnknownFieldSet.m \
246 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
247 objectivec/GPBUtilities.h \
248 objectivec/GPBUtilities.m \
249 objectivec/GPBUtilities_PackagePrivate.h \
250 objectivec/GPBWellKnownTypes.h \
251 objectivec/GPBWellKnownTypes.m \
252 objectivec/GPBWireFormat.h \
253 objectivec/GPBWireFormat.m \
254 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
255 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
256 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
257 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
258 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
259 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
260 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
261 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
262 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
263 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
264 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
265 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
266 objectivec/Tests/Filter1.txt \
267 objectivec/Tests/Filter2.txt \
268 objectivec/Tests/golden_message \
269 objectivec/Tests/golden_packed_fields_message \
270 objectivec/Tests/GPBARCUnittestProtos.m \
271 objectivec/Tests/GPBArrayTests.m \
272 objectivec/Tests/GPBCodedInputStreamTests.m \
273 objectivec/Tests/GPBCodedOuputStreamTests.m \
274 objectivec/Tests/GPBConcurrencyTests.m \
275 objectivec/Tests/GPBDescriptorTests.m \
276 objectivec/Tests/GPBDictionaryTests+Bool.m \
277 objectivec/Tests/GPBDictionaryTests+Int32.m \
278 objectivec/Tests/GPBDictionaryTests+Int64.m \
279 objectivec/Tests/GPBDictionaryTests+String.m \
280 objectivec/Tests/GPBDictionaryTests+UInt32.m \
281 objectivec/Tests/GPBDictionaryTests+UInt64.m \
282 objectivec/Tests/GPBDictionaryTests.pddm \
283 objectivec/Tests/GPBFilteredMessageTests.m \
284 objectivec/Tests/GPBMessageTests+Merge.m \
285 objectivec/Tests/GPBMessageTests+Runtime.m \
286 objectivec/Tests/GPBMessageTests+Serialization.m \
287 objectivec/Tests/GPBMessageTests.m \
288 objectivec/Tests/GPBPerfTests.m \
289 objectivec/Tests/GPBStringTests.m \
290 objectivec/Tests/GPBSwiftTests.swift \
291 objectivec/Tests/GPBTestUtilities.h \
292 objectivec/Tests/GPBTestUtilities.m \
293 objectivec/Tests/GPBUnittestProtos.m \
294 objectivec/Tests/GPBUnknownFieldSetTest.m \
295 objectivec/Tests/GPBUtilitiesTests.m \
296 objectivec/Tests/GPBWellKnownTypesTest.m \
297 objectivec/Tests/GPBWireFormatTests.m \
298 objectivec/Tests/iOSTestHarness/AppDelegate.m \
299 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
300 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
301 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
302 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6@2x.png \
303 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
304 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7@2x.png \
305 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
306 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6@2x.png \
307 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@2x.png \
308 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@3x.png \
309 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
310 objectivec/Tests/iOSTestHarness/Info.plist \
311 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
312 objectivec/Tests/text_format_map_unittest_data.txt \
313 objectivec/Tests/text_format_unittest_data.txt \
314 objectivec/Tests/unittest_cycle.proto \
315 objectivec/Tests/unittest_filter.proto \
316 objectivec/Tests/unittest_name_mangling.proto \
317 objectivec/Tests/unittest_objc.proto \
318 objectivec/Tests/unittest_runtime_proto2.proto \
319 objectivec/Tests/unittest_runtime_proto3.proto \
320 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700321 objectivec/Tests/UnitTests-Info.plist \
322 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800323
Feng Xiao8f7dec82014-12-02 14:15:26 -0800324python_EXTRA_DIST= \
jieluo@google.combde4a322014-08-12 21:10:30 +0000325 python/google/protobuf/internal/api_implementation.cc \
326 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000327 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000328 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000329 python/google/protobuf/internal/descriptor_database_test.py \
330 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000331 python/google/protobuf/internal/descriptor_pool_test1.proto \
332 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000333 python/google/protobuf/internal/descriptor_test.py \
334 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000335 python/google/protobuf/internal/enum_type_wrapper.py \
336 python/google/protobuf/internal/factory_test1.proto \
337 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000338 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000339 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000340 python/google/protobuf/internal/message_listener.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000341 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000342 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000343 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000344 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000345 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800346 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800347 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000348 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000349 python/google/protobuf/internal/reflection_test.py \
350 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000351 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000352 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000353 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000354 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000355 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000356 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000357 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000358 python/google/protobuf/internal/wire_format.py \
359 python/google/protobuf/internal/wire_format_test.py \
360 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800361 python/google/protobuf/internal/import_test_package/__init__.py \
362 python/google/protobuf/internal/import_test_package/inner.proto \
363 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000364 python/google/protobuf/pyext/README \
365 python/google/protobuf/pyext/cpp_message.py \
366 python/google/protobuf/pyext/descriptor.h \
367 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800368 python/google/protobuf/pyext/descriptor_pool.h \
369 python/google/protobuf/pyext/descriptor_pool.cc \
370 python/google/protobuf/pyext/descriptor_containers.h \
371 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000372 python/google/protobuf/pyext/extension_dict.h \
373 python/google/protobuf/pyext/extension_dict.cc \
374 python/google/protobuf/pyext/message.h \
375 python/google/protobuf/pyext/message.cc \
376 python/google/protobuf/pyext/proto2_api_test.proto \
377 python/google/protobuf/pyext/python.proto \
378 python/google/protobuf/pyext/python_protobuf.h \
379 python/google/protobuf/pyext/repeated_composite_container.h \
380 python/google/protobuf/pyext/repeated_composite_container.cc \
381 python/google/protobuf/pyext/repeated_scalar_container.h \
382 python/google/protobuf/pyext/repeated_scalar_container.cc \
383 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
384 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000385 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000386 python/google/protobuf/descriptor_database.py \
387 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000388 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000389 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800390 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000391 python/google/protobuf/reflection.py \
392 python/google/protobuf/service.py \
393 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000394 python/google/protobuf/symbol_database.py \
395 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000396 python/google/protobuf/text_format.py \
397 python/google/protobuf/__init__.py \
398 python/google/__init__.py \
399 python/ez_setup.py \
400 python/setup.py \
401 python/mox.py \
402 python/stubout.py \
jesse0481bf32015-03-17 12:14:55 -0700403 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000404
Chris Fallin973f4252014-11-18 14:19:58 -0800405ruby_EXTRA_DIST= \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800406 ruby/README.md \
407 ruby/Rakefile \
408 ruby/ext/google/protobuf_c/defs.c \
409 ruby/ext/google/protobuf_c/encode_decode.c \
410 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800411 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800412 ruby/ext/google/protobuf_c/message.c \
413 ruby/ext/google/protobuf_c/protobuf.c \
414 ruby/ext/google/protobuf_c/protobuf.h \
415 ruby/ext/google/protobuf_c/repeated_field.c \
416 ruby/ext/google/protobuf_c/storage.c \
417 ruby/ext/google/protobuf_c/upb.c \
418 ruby/ext/google/protobuf_c/upb.h \
419 ruby/google-protobuf.gemspec \
420 ruby/lib/google/protobuf.rb \
421 ruby/tests/basic.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800422 ruby/tests/stress.rb \
423 ruby/tests/generated_code.proto \
424 ruby/tests/generated_code.rb \
425 ruby/tests/generated_code_test.rb
Chris Fallin973f4252014-11-18 14:19:58 -0800426
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400427all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800428
429EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
430 autogen.sh \
431 generate_descriptor_proto.sh \
432 README.md \
433 INSTALL.txt \
434 LICENSE \
435 CONTRIBUTORS.txt \
436 CHANGES.txt \
Jisi Liudf184fb2015-02-25 15:28:44 -0800437 config.h.include \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800438 editors/README.txt \
439 editors/proto.vim \
440 editors/protobuf-mode.el \
441 vsprojects/config.h \
Jisi Liudf184fb2015-02-25 15:28:44 -0800442 vsprojects/google/protobuf/stubs/pbconfig.h \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800443 vsprojects/extract_includes.bat \
444 vsprojects/libprotobuf.vcproj \
445 vsprojects/libprotobuf-lite.vcproj \
446 vsprojects/libprotoc.vcproj \
447 vsprojects/protobuf.sln \
448 vsprojects/protoc.vcproj \
449 vsprojects/readme.txt \
450 vsprojects/test_plugin.vcproj \
451 vsprojects/tests.vcproj \
452 vsprojects/lite-test.vcproj \
453 vsprojects/convert2008to2005.sh \
454 examples/README.txt \
455 examples/Makefile \
456 examples/addressbook.proto \
457 examples/add_person.cc \
458 examples/list_people.cc \
459 examples/AddPerson.java \
460 examples/ListPeople.java \
461 examples/add_person.py \
462 examples/list_people.py
463
temporal40ee5512008-07-10 02:12:20 +0000464# Deletes all the files generated by autogen.sh.
465MAINTAINERCLEANFILES = \
466 aclocal.m4 \
467 config.guess \
468 config.sub \
469 configure \
470 depcomp \
471 install-sh \
472 ltmain.sh \
473 Makefile.in \
474 missing \
475 mkinstalldirs \
476 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000477 stamp.h.in \
478 m4/ltsugar.m4 \
479 m4/libtool.m4 \
480 m4/ltversion.m4 \
481 m4/lt~obsolete.m4 \
482 m4/ltoptions.m4