blob: e4ca4c1203b1aa51effaa1299f6664ea94005980 [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 \
Bo Yang5db21732015-05-21 14:28:59 -070046 java/src/main/java/com/google/protobuf/AbstractProtobufList.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000047 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
48 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000049 java/src/main/java/com/google/protobuf/BoundedByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -070050 java/src/main/java/com/google/protobuf/BooleanArrayList.java \
temporal40ee5512008-07-10 02:12:20 +000051 java/src/main/java/com/google/protobuf/ByteString.java \
52 java/src/main/java/com/google/protobuf/CodedInputStream.java \
53 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
54 java/src/main/java/com/google/protobuf/Descriptors.java \
Bo Yang5db21732015-05-21 14:28:59 -070055 java/src/main/java/com/google/protobuf/DoubleArrayList.java \
temporal40ee5512008-07-10 02:12:20 +000056 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000057 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080058 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +000059 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000060 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +000061 java/src/main/java/com/google/protobuf/FieldSet.java \
Bo Yang5db21732015-05-21 14:28:59 -070062 java/src/main/java/com/google/protobuf/FloatArrayList.java \
temporal40ee5512008-07-10 02:12:20 +000063 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000064 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
65 java/src/main/java/com/google/protobuf/Internal.java \
Bo Yang5db21732015-05-21 14:28:59 -070066 java/src/main/java/com/google/protobuf/IntArrayList.java \
temporal40ee5512008-07-10 02:12:20 +000067 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000068 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000069 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000070 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
71 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000072 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -070073 java/src/main/java/com/google/protobuf/LongArrayList.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080074 java/src/main/java/com/google/protobuf/MapEntry.java \
75 java/src/main/java/com/google/protobuf/MapEntryLite.java \
76 java/src/main/java/com/google/protobuf/MapField.java \
77 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +000078 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000079 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000080 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
81 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000082 java/src/main/java/com/google/protobuf/MessageReflection.java \
Bo Yang5db21732015-05-21 14:28:59 -070083 java/src/main/java/com/google/protobuf/MutabilityOracle.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000084 java/src/main/java/com/google/protobuf/Parser.java \
Bo Yang5db21732015-05-21 14:28:59 -070085 java/src/main/java/com/google/protobuf/ProtobufArrayList.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +000086 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000087 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000088 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000089 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +000090 java/src/main/java/com/google/protobuf/RpcCallback.java \
91 java/src/main/java/com/google/protobuf/RpcChannel.java \
92 java/src/main/java/com/google/protobuf/RpcController.java \
93 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000094 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000095 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000096 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
97 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +000098 java/src/main/java/com/google/protobuf/TextFormat.java \
99 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
100 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800101 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000102 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000103 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +0000104 java/src/main/java/com/google/protobuf/WireFormat.java \
105 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000106 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700107 java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000108 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000109 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000110 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
111 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000112 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000113 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700114 java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000115 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800116 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700117 java/src/test/java/com/google/protobuf/FloatArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000118 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000119 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700120 java/src/test/java/com/google/protobuf/IntArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000121 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
122 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000123 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800124 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000125 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000126 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
127 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000128 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000129 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000130 java/src/test/java/com/google/protobuf/LiteTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700131 java/src/test/java/com/google/protobuf/LongArrayListTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800132 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
133 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
134 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000135 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000136 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000137 java/src/test/java/com/google/protobuf/ParserTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700138 java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000139 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000140 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
141 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000142 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000143 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
144 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
145 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000146 java/src/test/java/com/google/protobuf/TestUtil.java \
147 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800148 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
149 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000150 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000151 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000152 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800153 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000154 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
155 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800156 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800157 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
158 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000159 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000160 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000161 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000162 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000163 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000164 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000165 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
166 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800167 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000168 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000169 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
170 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
171 java/src/test/java/com/google/protobuf/test_custom_options.proto \
temporal40ee5512008-07-10 02:12:20 +0000172 java/pom.xml \
jesse0481bf32015-03-17 12:14:55 -0700173 java/README.md
Feng Xiao8f7dec82014-12-02 14:15:26 -0800174
Jisi Liuff35de32015-02-21 14:58:02 -0800175javanano_EXTRA_DIST= \
176 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
177 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
178 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
179 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
180 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
181 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
182 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
183 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
184 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
185 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
186 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
187 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
188 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
189 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
190 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
191 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
192 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
193 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
194 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
195 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
196 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
197 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
198 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
199 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
200 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
201 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
202 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
203 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
204 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
205 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
206 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
207 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
208 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
209 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
210 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
jesse0481bf32015-03-17 12:14:55 -0700211 javanano/README.md \
Jisi Liuff35de32015-02-21 14:58:02 -0800212 javanano/pom.xml
213
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400214objectivec_EXTRA_DIST= \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400215 objectivec/DevTools/check_version_stamps.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700216 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400217 objectivec/DevTools/pddm.py \
218 objectivec/DevTools/pddm_tests.py \
Bo Yang50a765b2015-05-25 12:48:03 -0700219 objectivec//google/protobuf/Any.pbobjc.h \
220 objectivec//google/protobuf/Any.pbobjc.m \
221 objectivec//google/protobuf/Api.pbobjc.h \
222 objectivec//google/protobuf/Api.pbobjc.m \
223 objectivec//google/protobuf/Descriptor.pbobjc.h \
224 objectivec//google/protobuf/Descriptor.pbobjc.m \
225 objectivec//google/protobuf/Duration.pbobjc.h \
226 objectivec//google/protobuf/Duration.pbobjc.m \
227 objectivec//google/protobuf/Empty.pbobjc.h \
228 objectivec//google/protobuf/Empty.pbobjc.m \
229 objectivec//google/protobuf/FieldMask.pbobjc.h \
230 objectivec//google/protobuf/FieldMask.pbobjc.m \
231 objectivec//google/protobuf/SourceContext.pbobjc.h \
232 objectivec//google/protobuf/SourceContext.pbobjc.m \
233 objectivec//google/protobuf/Struct.pbobjc.h \
234 objectivec//google/protobuf/Struct.pbobjc.m \
235 objectivec//google/protobuf/Timestamp.pbobjc.h \
236 objectivec//google/protobuf/Timestamp.pbobjc.m \
237 objectivec//google/protobuf/Type.pbobjc.h \
238 objectivec//google/protobuf/Type.pbobjc.m \
239 objectivec//google/protobuf/Wrappers.pbobjc.h \
240 objectivec//google/protobuf/Wrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400241 objectivec/GPBArray.h \
242 objectivec/GPBArray.m \
243 objectivec/GPBArray_PackagePrivate.h \
244 objectivec/GPBBootstrap.h \
245 objectivec/GPBCodedInputStream.h \
246 objectivec/GPBCodedInputStream.m \
247 objectivec/GPBCodedInputStream_PackagePrivate.h \
248 objectivec/GPBCodedOutputStream.h \
249 objectivec/GPBCodedOutputStream.m \
250 objectivec/GPBDescriptor.h \
251 objectivec/GPBDescriptor.m \
252 objectivec/GPBDescriptor_PackagePrivate.h \
253 objectivec/GPBDictionary.h \
254 objectivec/GPBDictionary.m \
255 objectivec/GPBDictionary_PackagePrivate.h \
256 objectivec/GPBExtensionField.h \
257 objectivec/GPBExtensionField.m \
258 objectivec/GPBExtensionField_PackagePrivate.h \
259 objectivec/GPBExtensionRegistry.h \
260 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400261 objectivec/GPBField.h \
262 objectivec/GPBField.m \
263 objectivec/GPBField_PackagePrivate.h \
264 objectivec/GPBMessage.h \
265 objectivec/GPBMessage.m \
266 objectivec/GPBMessage_PackagePrivate.h \
267 objectivec/GPBProtocolBuffers.h \
268 objectivec/GPBProtocolBuffers.m \
269 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
270 objectivec/GPBRootObject.h \
271 objectivec/GPBRootObject.m \
272 objectivec/GPBRootObject_PackagePrivate.h \
273 objectivec/GPBTypes.h \
274 objectivec/GPBUnknownFieldSet.h \
275 objectivec/GPBUnknownFieldSet.m \
276 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
277 objectivec/GPBUtilities.h \
278 objectivec/GPBUtilities.m \
279 objectivec/GPBUtilities_PackagePrivate.h \
280 objectivec/GPBWellKnownTypes.h \
281 objectivec/GPBWellKnownTypes.m \
282 objectivec/GPBWireFormat.h \
283 objectivec/GPBWireFormat.m \
284 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
285 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
286 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
287 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
288 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
289 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
290 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
291 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
292 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
293 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
294 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
295 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700296 objectivec/README.md \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400297 objectivec/Tests/Filter1.txt \
298 objectivec/Tests/Filter2.txt \
299 objectivec/Tests/golden_message \
300 objectivec/Tests/golden_packed_fields_message \
301 objectivec/Tests/GPBARCUnittestProtos.m \
302 objectivec/Tests/GPBArrayTests.m \
303 objectivec/Tests/GPBCodedInputStreamTests.m \
304 objectivec/Tests/GPBCodedOuputStreamTests.m \
305 objectivec/Tests/GPBConcurrencyTests.m \
306 objectivec/Tests/GPBDescriptorTests.m \
307 objectivec/Tests/GPBDictionaryTests+Bool.m \
308 objectivec/Tests/GPBDictionaryTests+Int32.m \
309 objectivec/Tests/GPBDictionaryTests+Int64.m \
310 objectivec/Tests/GPBDictionaryTests+String.m \
311 objectivec/Tests/GPBDictionaryTests+UInt32.m \
312 objectivec/Tests/GPBDictionaryTests+UInt64.m \
313 objectivec/Tests/GPBDictionaryTests.pddm \
314 objectivec/Tests/GPBFilteredMessageTests.m \
315 objectivec/Tests/GPBMessageTests+Merge.m \
316 objectivec/Tests/GPBMessageTests+Runtime.m \
317 objectivec/Tests/GPBMessageTests+Serialization.m \
318 objectivec/Tests/GPBMessageTests.m \
319 objectivec/Tests/GPBPerfTests.m \
320 objectivec/Tests/GPBStringTests.m \
321 objectivec/Tests/GPBSwiftTests.swift \
322 objectivec/Tests/GPBTestUtilities.h \
323 objectivec/Tests/GPBTestUtilities.m \
324 objectivec/Tests/GPBUnittestProtos.m \
325 objectivec/Tests/GPBUnknownFieldSetTest.m \
326 objectivec/Tests/GPBUtilitiesTests.m \
327 objectivec/Tests/GPBWellKnownTypesTest.m \
328 objectivec/Tests/GPBWireFormatTests.m \
329 objectivec/Tests/iOSTestHarness/AppDelegate.m \
330 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
Bo Yang50a765b2015-05-25 12:48:03 -0700331 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
332 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
333 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6@2x.png \
334 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
335 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7@2x.png \
336 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
337 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6@2x.png \
338 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@2x.png \
339 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@3x.png \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400340 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
341 objectivec/Tests/iOSTestHarness/Info.plist \
342 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
343 objectivec/Tests/text_format_map_unittest_data.txt \
344 objectivec/Tests/text_format_unittest_data.txt \
345 objectivec/Tests/unittest_cycle.proto \
346 objectivec/Tests/unittest_filter.proto \
347 objectivec/Tests/unittest_name_mangling.proto \
348 objectivec/Tests/unittest_objc.proto \
349 objectivec/Tests/unittest_runtime_proto2.proto \
350 objectivec/Tests/unittest_runtime_proto3.proto \
351 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700352 objectivec/Tests/UnitTests-Info.plist \
353 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800354
Feng Xiao8f7dec82014-12-02 14:15:26 -0800355python_EXTRA_DIST= \
jieluo@google.combde4a322014-08-12 21:10:30 +0000356 python/google/protobuf/internal/api_implementation.cc \
357 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000358 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000359 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000360 python/google/protobuf/internal/descriptor_database_test.py \
361 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000362 python/google/protobuf/internal/descriptor_pool_test1.proto \
363 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000364 python/google/protobuf/internal/descriptor_test.py \
365 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000366 python/google/protobuf/internal/enum_type_wrapper.py \
367 python/google/protobuf/internal/factory_test1.proto \
368 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000369 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000370 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000371 python/google/protobuf/internal/message_listener.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000372 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000373 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000374 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000375 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000376 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800377 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800378 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000379 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000380 python/google/protobuf/internal/reflection_test.py \
381 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000382 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000383 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000384 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000385 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000386 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000387 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000388 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000389 python/google/protobuf/internal/wire_format.py \
390 python/google/protobuf/internal/wire_format_test.py \
391 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800392 python/google/protobuf/internal/import_test_package/__init__.py \
393 python/google/protobuf/internal/import_test_package/inner.proto \
394 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000395 python/google/protobuf/pyext/README \
396 python/google/protobuf/pyext/cpp_message.py \
397 python/google/protobuf/pyext/descriptor.h \
398 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800399 python/google/protobuf/pyext/descriptor_pool.h \
400 python/google/protobuf/pyext/descriptor_pool.cc \
401 python/google/protobuf/pyext/descriptor_containers.h \
402 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000403 python/google/protobuf/pyext/extension_dict.h \
404 python/google/protobuf/pyext/extension_dict.cc \
405 python/google/protobuf/pyext/message.h \
406 python/google/protobuf/pyext/message.cc \
407 python/google/protobuf/pyext/proto2_api_test.proto \
408 python/google/protobuf/pyext/python.proto \
409 python/google/protobuf/pyext/python_protobuf.h \
410 python/google/protobuf/pyext/repeated_composite_container.h \
411 python/google/protobuf/pyext/repeated_composite_container.cc \
412 python/google/protobuf/pyext/repeated_scalar_container.h \
413 python/google/protobuf/pyext/repeated_scalar_container.cc \
414 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
415 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000416 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000417 python/google/protobuf/descriptor_database.py \
418 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000419 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000420 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800421 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000422 python/google/protobuf/reflection.py \
423 python/google/protobuf/service.py \
424 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000425 python/google/protobuf/symbol_database.py \
426 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000427 python/google/protobuf/text_format.py \
428 python/google/protobuf/__init__.py \
429 python/google/__init__.py \
430 python/ez_setup.py \
431 python/setup.py \
432 python/mox.py \
433 python/stubout.py \
jesse0481bf32015-03-17 12:14:55 -0700434 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000435
Chris Fallin973f4252014-11-18 14:19:58 -0800436ruby_EXTRA_DIST= \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800437 ruby/README.md \
438 ruby/Rakefile \
439 ruby/ext/google/protobuf_c/defs.c \
440 ruby/ext/google/protobuf_c/encode_decode.c \
441 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800442 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800443 ruby/ext/google/protobuf_c/message.c \
444 ruby/ext/google/protobuf_c/protobuf.c \
445 ruby/ext/google/protobuf_c/protobuf.h \
446 ruby/ext/google/protobuf_c/repeated_field.c \
447 ruby/ext/google/protobuf_c/storage.c \
448 ruby/ext/google/protobuf_c/upb.c \
449 ruby/ext/google/protobuf_c/upb.h \
450 ruby/google-protobuf.gemspec \
451 ruby/lib/google/protobuf.rb \
452 ruby/tests/basic.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800453 ruby/tests/stress.rb \
454 ruby/tests/generated_code.proto \
455 ruby/tests/generated_code.rb \
456 ruby/tests/generated_code_test.rb
Chris Fallin973f4252014-11-18 14:19:58 -0800457
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400458all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800459
460EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
461 autogen.sh \
462 generate_descriptor_proto.sh \
463 README.md \
464 INSTALL.txt \
465 LICENSE \
466 CONTRIBUTORS.txt \
467 CHANGES.txt \
Jisi Liudf184fb2015-02-25 15:28:44 -0800468 config.h.include \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800469 editors/README.txt \
470 editors/proto.vim \
471 editors/protobuf-mode.el \
472 vsprojects/config.h \
Jisi Liudf184fb2015-02-25 15:28:44 -0800473 vsprojects/google/protobuf/stubs/pbconfig.h \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800474 vsprojects/extract_includes.bat \
475 vsprojects/libprotobuf.vcproj \
476 vsprojects/libprotobuf-lite.vcproj \
477 vsprojects/libprotoc.vcproj \
478 vsprojects/protobuf.sln \
479 vsprojects/protoc.vcproj \
480 vsprojects/readme.txt \
481 vsprojects/test_plugin.vcproj \
482 vsprojects/tests.vcproj \
483 vsprojects/lite-test.vcproj \
484 vsprojects/convert2008to2005.sh \
485 examples/README.txt \
486 examples/Makefile \
487 examples/addressbook.proto \
488 examples/add_person.cc \
489 examples/list_people.cc \
490 examples/AddPerson.java \
491 examples/ListPeople.java \
492 examples/add_person.py \
493 examples/list_people.py
494
temporal40ee5512008-07-10 02:12:20 +0000495# Deletes all the files generated by autogen.sh.
496MAINTAINERCLEANFILES = \
497 aclocal.m4 \
498 config.guess \
499 config.sub \
500 configure \
501 depcomp \
502 install-sh \
503 ltmain.sh \
504 Makefile.in \
505 missing \
506 mkinstalldirs \
507 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000508 stamp.h.in \
509 m4/ltsugar.m4 \
510 m4/libtool.m4 \
511 m4/ltversion.m4 \
512 m4/lt~obsolete.m4 \
513 m4/ltoptions.m4