blob: 566b28501f6348a5cd6e19ce2e8d073315848faa [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
kenton@google.com7516a692008-09-30 20:55:25 +00005AUTOMAKE_OPTIONS = foreign
6
kenton@google.com37ad00d2009-04-21 21:00:39 +00007# Build . before src so that our all-local and clean-local hooks kicks in at
8# the right time.
9SUBDIRS = . src
10
11# Always include gtest in distributions.
12DIST_SUBDIRS = $(subdirs) src
13
14# Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
15# because then "make check" would also build and run all of gtest's own tests,
16# which takes a lot of time and is generally not useful to us. Also, we don't
17# want "make install" to recurse into gtest since we don't want to overwrite
18# the installed version of gtest if there is one.
19check-local:
20 @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
21 @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
22
23# We would like to clean gtest when "make clean" is invoked. But we have to
24# be careful because clean-local is also invoked during "make distclean", but
25# "make distclean" already recurses into gtest because it's listed among the
26# DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
27# cd to the directory again and "make clean" it will fail. So, check that the
28# Makefile exists before recursing.
29clean-local:
30 @if test -e gtest/Makefile; then \
31 echo "Making clean in gtest"; \
32 cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
33 fi
temporal40ee5512008-07-10 02:12:20 +000034
kenton@google.com3c66c2e2009-08-03 21:31:25 +000035pkgconfigdir = $(libdir)/pkgconfig
36pkgconfig_DATA = protobuf.pc protobuf-lite.pc
37
Feng Xiao8f7dec82014-12-02 14:15:26 -080038java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +000039 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000040 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000041 java/src/main/java/com/google/protobuf/AbstractParser.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000042 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
43 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000044 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +000045 java/src/main/java/com/google/protobuf/ByteString.java \
46 java/src/main/java/com/google/protobuf/CodedInputStream.java \
47 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
48 java/src/main/java/com/google/protobuf/Descriptors.java \
49 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000050 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080051 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +000052 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000053 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +000054 java/src/main/java/com/google/protobuf/FieldSet.java \
55 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000056 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
57 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +000058 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000059 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000060 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000061 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
62 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000063 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080064 java/src/main/java/com/google/protobuf/MapEntry.java \
65 java/src/main/java/com/google/protobuf/MapEntryLite.java \
66 java/src/main/java/com/google/protobuf/MapField.java \
67 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +000068 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +000069 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000070 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
71 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000072 java/src/main/java/com/google/protobuf/MessageReflection.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000073 java/src/main/java/com/google/protobuf/Parser.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +000074 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000075 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000076 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000077 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +000078 java/src/main/java/com/google/protobuf/RpcCallback.java \
79 java/src/main/java/com/google/protobuf/RpcChannel.java \
80 java/src/main/java/com/google/protobuf/RpcController.java \
81 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +000082 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000083 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000084 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
85 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +000086 java/src/main/java/com/google/protobuf/TextFormat.java \
87 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
88 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -080089 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000090 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000091 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +000092 java/src/main/java/com/google/protobuf/WireFormat.java \
93 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +000094 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
95 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +000096 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +000097 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
98 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +000099 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000100 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
101 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800102 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000103 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000104 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000105 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
106 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000107 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800108 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000109 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000110 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
111 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000112 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000113 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000114 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800115 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
116 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
117 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000118 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000119 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000120 java/src/test/java/com/google/protobuf/ParserTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000121 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000122 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
123 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000124 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000125 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
126 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
127 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000128 java/src/test/java/com/google/protobuf/TestUtil.java \
129 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800130 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
131 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000132 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000133 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000134 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800135 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000136 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
137 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800138 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800139 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
140 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000141 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000142 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000143 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000144 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000145 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000146 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000147 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
148 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800149 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000150 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000151 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
152 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
153 java/src/test/java/com/google/protobuf/test_custom_options.proto \
temporal40ee5512008-07-10 02:12:20 +0000154 java/pom.xml \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800155 java/README.txt
156
157python_EXTRA_DIST= \
jieluo@google.combde4a322014-08-12 21:10:30 +0000158 python/google/protobuf/internal/api_implementation.cc \
159 python/google/protobuf/internal/api_implementation.py \
160 python/google/protobuf/internal/api_implementation_default_test.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000161 python/google/protobuf/internal/containers.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000162 python/google/protobuf/internal/cpp_message.py \
temporal40ee5512008-07-10 02:12:20 +0000163 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000164 python/google/protobuf/internal/descriptor_database_test.py \
165 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000166 python/google/protobuf/internal/descriptor_pool_test1.proto \
167 python/google/protobuf/internal/descriptor_pool_test2.proto \
168 python/google/protobuf/internal/descriptor_python_test.py \
temporal40ee5512008-07-10 02:12:20 +0000169 python/google/protobuf/internal/descriptor_test.py \
170 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000171 python/google/protobuf/internal/enum_type_wrapper.py \
172 python/google/protobuf/internal/factory_test1.proto \
173 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000174 python/google/protobuf/internal/generator_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000175 python/google/protobuf/internal/message_factory_python_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000176 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000177 python/google/protobuf/internal/message_listener.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000178 python/google/protobuf/internal/message_python_test.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000179 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000180 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000181 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000182 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000183 python/google/protobuf/internal/more_messages.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800184 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000185 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000186 python/google/protobuf/internal/reflection_test.py \
187 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000188 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000189 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000190 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000191 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000192 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000193 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000194 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000195 python/google/protobuf/internal/wire_format.py \
196 python/google/protobuf/internal/wire_format_test.py \
197 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800198 python/google/protobuf/internal/import_test_package/BUILD \
199 python/google/protobuf/internal/import_test_package/__init__.py \
200 python/google/protobuf/internal/import_test_package/inner.proto \
201 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000202 python/google/protobuf/pyext/README \
203 python/google/protobuf/pyext/cpp_message.py \
204 python/google/protobuf/pyext/descriptor.h \
205 python/google/protobuf/pyext/descriptor.cc \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000206 python/google/protobuf/pyext/descriptor_cpp2_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000207 python/google/protobuf/pyext/extension_dict.h \
208 python/google/protobuf/pyext/extension_dict.cc \
209 python/google/protobuf/pyext/message.h \
210 python/google/protobuf/pyext/message.cc \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000211 python/google/protobuf/pyext/message_factory_cpp2_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000212 python/google/protobuf/pyext/proto2_api_test.proto \
213 python/google/protobuf/pyext/python.proto \
214 python/google/protobuf/pyext/python_protobuf.h \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000215 python/google/protobuf/pyext/reflection_cpp2_generated_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000216 python/google/protobuf/pyext/repeated_composite_container.h \
217 python/google/protobuf/pyext/repeated_composite_container.cc \
218 python/google/protobuf/pyext/repeated_scalar_container.h \
219 python/google/protobuf/pyext/repeated_scalar_container.cc \
220 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
221 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000222 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000223 python/google/protobuf/descriptor_database.py \
224 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000225 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000226 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800227 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000228 python/google/protobuf/reflection.py \
229 python/google/protobuf/service.py \
230 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000231 python/google/protobuf/symbol_database.py \
232 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000233 python/google/protobuf/text_format.py \
234 python/google/protobuf/__init__.py \
235 python/google/__init__.py \
236 python/ez_setup.py \
237 python/setup.py \
238 python/mox.py \
239 python/stubout.py \
240 python/README.txt
241
Chris Fallin973f4252014-11-18 14:19:58 -0800242ruby_EXTRA_DIST= \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800243 ruby/README.md \
244 ruby/Rakefile \
245 ruby/ext/google/protobuf_c/defs.c \
246 ruby/ext/google/protobuf_c/encode_decode.c \
247 ruby/ext/google/protobuf_c/extconf.rb \
248 ruby/ext/google/protobuf_c/message.c \
249 ruby/ext/google/protobuf_c/protobuf.c \
250 ruby/ext/google/protobuf_c/protobuf.h \
251 ruby/ext/google/protobuf_c/repeated_field.c \
252 ruby/ext/google/protobuf_c/storage.c \
253 ruby/ext/google/protobuf_c/upb.c \
254 ruby/ext/google/protobuf_c/upb.h \
255 ruby/google-protobuf.gemspec \
256 ruby/lib/google/protobuf.rb \
257 ruby/tests/basic.rb \
258 ruby/tests/stress.rb
Chris Fallin973f4252014-11-18 14:19:58 -0800259
260all_EXTRA_DIST=$(java_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800261
262EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
263 autogen.sh \
264 generate_descriptor_proto.sh \
265 README.md \
266 INSTALL.txt \
267 LICENSE \
268 CONTRIBUTORS.txt \
269 CHANGES.txt \
270 editors/README.txt \
271 editors/proto.vim \
272 editors/protobuf-mode.el \
273 vsprojects/config.h \
274 vsprojects/extract_includes.bat \
275 vsprojects/libprotobuf.vcproj \
276 vsprojects/libprotobuf-lite.vcproj \
277 vsprojects/libprotoc.vcproj \
278 vsprojects/protobuf.sln \
279 vsprojects/protoc.vcproj \
280 vsprojects/readme.txt \
281 vsprojects/test_plugin.vcproj \
282 vsprojects/tests.vcproj \
283 vsprojects/lite-test.vcproj \
284 vsprojects/convert2008to2005.sh \
285 examples/README.txt \
286 examples/Makefile \
287 examples/addressbook.proto \
288 examples/add_person.cc \
289 examples/list_people.cc \
290 examples/AddPerson.java \
291 examples/ListPeople.java \
292 examples/add_person.py \
293 examples/list_people.py
294
temporal40ee5512008-07-10 02:12:20 +0000295# Deletes all the files generated by autogen.sh.
296MAINTAINERCLEANFILES = \
297 aclocal.m4 \
298 config.guess \
299 config.sub \
300 configure \
301 depcomp \
302 install-sh \
303 ltmain.sh \
304 Makefile.in \
305 missing \
306 mkinstalldirs \
307 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000308 stamp.h.in \
309 m4/ltsugar.m4 \
310 m4/libtool.m4 \
311 m4/ltversion.m4 \
312 m4/lt~obsolete.m4 \
313 m4/ltoptions.m4