Makefile.am 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. ## Process this file with automake to produce Makefile.in
  2. ACLOCAL_AMFLAGS = -I m4
  3. AUTOMAKE_OPTIONS = foreign
  4. # Build . before src so that our all-local and clean-local hooks kicks in at
  5. # the right time.
  6. SUBDIRS = . src
  7. # Always include gtest in distributions.
  8. DIST_SUBDIRS = $(subdirs) src
  9. # Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
  10. # because then "make check" would also build and run all of gtest's own tests,
  11. # which takes a lot of time and is generally not useful to us. Also, we don't
  12. # want "make install" to recurse into gtest since we don't want to overwrite
  13. # the installed version of gtest if there is one.
  14. check-local:
  15. @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
  16. @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
  17. # We would like to clean gtest when "make clean" is invoked. But we have to
  18. # be careful because clean-local is also invoked during "make distclean", but
  19. # "make distclean" already recurses into gtest because it's listed among the
  20. # DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
  21. # cd to the directory again and "make clean" it will fail. So, check that the
  22. # Makefile exists before recursing.
  23. clean-local:
  24. @if test -e gtest/Makefile; then \
  25. echo "Making clean in gtest"; \
  26. cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
  27. fi
  28. pkgconfigdir = $(libdir)/pkgconfig
  29. pkgconfig_DATA = protobuf.pc protobuf-lite.pc
  30. java_EXTRA_DIST= \
  31. java/src/main/java/com/google/protobuf/AbstractMessage.java \
  32. java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
  33. java/src/main/java/com/google/protobuf/AbstractParser.java \
  34. java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  35. java/src/main/java/com/google/protobuf/BlockingService.java \
  36. java/src/main/java/com/google/protobuf/BoundedByteString.java \
  37. java/src/main/java/com/google/protobuf/ByteString.java \
  38. java/src/main/java/com/google/protobuf/CodedInputStream.java \
  39. java/src/main/java/com/google/protobuf/CodedOutputStream.java \
  40. java/src/main/java/com/google/protobuf/Descriptors.java \
  41. java/src/main/java/com/google/protobuf/DynamicMessage.java \
  42. java/src/main/java/com/google/protobuf/Extension.java \
  43. java/src/main/java/com/google/protobuf/ExtensionLite.java \
  44. java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  45. java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  46. java/src/main/java/com/google/protobuf/FieldSet.java \
  47. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  48. java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  49. java/src/main/java/com/google/protobuf/Internal.java \
  50. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  51. java/src/main/java/com/google/protobuf/LazyField.java \
  52. java/src/main/java/com/google/protobuf/LazyFieldLite.java \
  53. java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  54. java/src/main/java/com/google/protobuf/LazyStringList.java \
  55. java/src/main/java/com/google/protobuf/LiteralByteString.java \
  56. java/src/main/java/com/google/protobuf/MapEntry.java \
  57. java/src/main/java/com/google/protobuf/MapEntryLite.java \
  58. java/src/main/java/com/google/protobuf/MapField.java \
  59. java/src/main/java/com/google/protobuf/MapFieldLite.java \
  60. java/src/main/java/com/google/protobuf/Message.java \
  61. java/src/main/java/com/google/protobuf/MessageLite.java \
  62. java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  63. java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  64. java/src/main/java/com/google/protobuf/MessageReflection.java \
  65. java/src/main/java/com/google/protobuf/Parser.java \
  66. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  67. java/src/main/java/com/google/protobuf/ProtocolStringList.java \
  68. java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  69. java/src/main/java/com/google/protobuf/RopeByteString.java \
  70. java/src/main/java/com/google/protobuf/RpcCallback.java \
  71. java/src/main/java/com/google/protobuf/RpcChannel.java \
  72. java/src/main/java/com/google/protobuf/RpcController.java \
  73. java/src/main/java/com/google/protobuf/RpcUtil.java \
  74. java/src/main/java/com/google/protobuf/ServiceException.java \
  75. java/src/main/java/com/google/protobuf/Service.java \
  76. java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  77. java/src/main/java/com/google/protobuf/SmallSortedMap.java \
  78. java/src/main/java/com/google/protobuf/TextFormat.java \
  79. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  80. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  81. java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
  82. java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  83. java/src/main/java/com/google/protobuf/Utf8.java \
  84. java/src/main/java/com/google/protobuf/WireFormat.java \
  85. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  86. java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  87. java/src/test/java/com/google/protobuf/ByteStringTest.java \
  88. java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
  89. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  90. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  91. java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  92. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  93. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  94. java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
  95. java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  96. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  97. java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  98. java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  99. java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
  100. java/src/test/java/com/google/protobuf/LazyFieldTest.java \
  101. java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
  102. java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  103. java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  104. java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
  105. java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  106. java/src/test/java/com/google/protobuf/LiteTest.java \
  107. java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
  108. java/src/test/java/com/google/protobuf/MapForProto2Test.java \
  109. java/src/test/java/com/google/protobuf/MapTest.java \
  110. java/src/test/java/com/google/protobuf/MessageTest.java \
  111. java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  112. java/src/test/java/com/google/protobuf/ParserTest.java \
  113. java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
  114. java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  115. java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  116. java/src/test/java/com/google/protobuf/ServiceTest.java \
  117. java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  118. java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  119. java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  120. java/src/test/java/com/google/protobuf/TestUtil.java \
  121. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  122. java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
  123. java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
  124. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  125. java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  126. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  127. java/src/test/java/com/google/protobuf/field_presence_test.proto \
  128. java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
  129. java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
  130. java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
  131. java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
  132. java/src/test/java/com/google/protobuf/map_test.proto \
  133. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  134. java/src/test/java/com/google/protobuf/nested_builders_test.proto \
  135. java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
  136. java/src/test/java/com/google/protobuf/nested_extension.proto \
  137. java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
  138. java/src/test/java/com/google/protobuf/non_nested_extension.proto \
  139. java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
  140. java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
  141. java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
  142. java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
  143. java/src/test/java/com/google/protobuf/test_check_utf8.proto \
  144. java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
  145. java/src/test/java/com/google/protobuf/test_custom_options.proto \
  146. java/pom.xml \
  147. java/README.txt
  148. javanano_EXTRA_DIST= \
  149. javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
  150. javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
  151. javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
  152. javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
  153. javanano/src/main/java/com/google/protobuf/nano/Extension.java \
  154. javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
  155. javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
  156. javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
  157. javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
  158. javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
  159. javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
  160. javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
  161. javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
  162. javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
  163. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
  164. javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
  165. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
  166. javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
  167. javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
  168. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
  169. javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
  170. javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
  171. javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
  172. javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
  173. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
  174. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
  175. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
  176. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
  177. javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
  178. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
  179. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
  180. javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
  181. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
  182. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
  183. javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
  184. javanano/README.txt \
  185. javanano/pom.xml
  186. python_EXTRA_DIST= \
  187. python/google/protobuf/internal/api_implementation.cc \
  188. python/google/protobuf/internal/api_implementation.py \
  189. python/google/protobuf/internal/containers.py \
  190. python/google/protobuf/internal/cpp_message.py \
  191. python/google/protobuf/internal/decoder.py \
  192. python/google/protobuf/internal/descriptor_database_test.py \
  193. python/google/protobuf/internal/descriptor_pool_test.py \
  194. python/google/protobuf/internal/descriptor_pool_test1.proto \
  195. python/google/protobuf/internal/descriptor_pool_test2.proto \
  196. python/google/protobuf/internal/descriptor_python_test.py \
  197. python/google/protobuf/internal/descriptor_test.py \
  198. python/google/protobuf/internal/encoder.py \
  199. python/google/protobuf/internal/enum_type_wrapper.py \
  200. python/google/protobuf/internal/factory_test1.proto \
  201. python/google/protobuf/internal/factory_test2.proto \
  202. python/google/protobuf/internal/generator_test.py \
  203. python/google/protobuf/internal/message_factory_python_test.py \
  204. python/google/protobuf/internal/message_factory_test.py \
  205. python/google/protobuf/internal/message_listener.py \
  206. python/google/protobuf/internal/message_python_test.py \
  207. python/google/protobuf/internal/message_test.py \
  208. python/google/protobuf/internal/missing_enum_values.proto \
  209. python/google/protobuf/internal/more_extensions.proto \
  210. python/google/protobuf/internal/more_extensions_dynamic.proto \
  211. python/google/protobuf/internal/more_messages.proto \
  212. python/google/protobuf/internal/_parameterized.py \
  213. python/google/protobuf/internal/proto_builder_test.py \
  214. python/google/protobuf/internal/python_message.py \
  215. python/google/protobuf/internal/reflection_test.py \
  216. python/google/protobuf/internal/service_reflection_test.py \
  217. python/google/protobuf/internal/symbol_database_test.py \
  218. python/google/protobuf/internal/test_bad_identifiers.proto \
  219. python/google/protobuf/internal/test_util.py \
  220. python/google/protobuf/internal/text_encoding_test.py \
  221. python/google/protobuf/internal/text_format_test.py \
  222. python/google/protobuf/internal/type_checkers.py \
  223. python/google/protobuf/internal/unknown_fields_test.py \
  224. python/google/protobuf/internal/wire_format.py \
  225. python/google/protobuf/internal/wire_format_test.py \
  226. python/google/protobuf/internal/__init__.py \
  227. python/google/protobuf/internal/import_test_package/__init__.py \
  228. python/google/protobuf/internal/import_test_package/inner.proto \
  229. python/google/protobuf/internal/import_test_package/outer.proto \
  230. python/google/protobuf/pyext/README \
  231. python/google/protobuf/pyext/cpp_message.py \
  232. python/google/protobuf/pyext/descriptor.h \
  233. python/google/protobuf/pyext/descriptor.cc \
  234. python/google/protobuf/pyext/descriptor_pool.h \
  235. python/google/protobuf/pyext/descriptor_pool.cc \
  236. python/google/protobuf/pyext/descriptor_containers.h \
  237. python/google/protobuf/pyext/descriptor_containers.cc \
  238. python/google/protobuf/pyext/extension_dict.h \
  239. python/google/protobuf/pyext/extension_dict.cc \
  240. python/google/protobuf/pyext/message.h \
  241. python/google/protobuf/pyext/message.cc \
  242. python/google/protobuf/pyext/proto2_api_test.proto \
  243. python/google/protobuf/pyext/python.proto \
  244. python/google/protobuf/pyext/python_protobuf.h \
  245. python/google/protobuf/pyext/repeated_composite_container.h \
  246. python/google/protobuf/pyext/repeated_composite_container.cc \
  247. python/google/protobuf/pyext/repeated_scalar_container.h \
  248. python/google/protobuf/pyext/repeated_scalar_container.cc \
  249. python/google/protobuf/pyext/scoped_pyobject_ptr.h \
  250. python/google/protobuf/pyext/__init__.py \
  251. python/google/protobuf/descriptor.py \
  252. python/google/protobuf/descriptor_database.py \
  253. python/google/protobuf/descriptor_pool.py \
  254. python/google/protobuf/message.py \
  255. python/google/protobuf/message_factory.py \
  256. python/google/protobuf/proto_builder.py \
  257. python/google/protobuf/reflection.py \
  258. python/google/protobuf/service.py \
  259. python/google/protobuf/service_reflection.py \
  260. python/google/protobuf/symbol_database.py \
  261. python/google/protobuf/text_encoding.py \
  262. python/google/protobuf/text_format.py \
  263. python/google/protobuf/__init__.py \
  264. python/google/__init__.py \
  265. python/ez_setup.py \
  266. python/setup.py \
  267. python/mox.py \
  268. python/stubout.py \
  269. python/README.txt
  270. ruby_EXTRA_DIST= \
  271. ruby/README.md \
  272. ruby/Rakefile \
  273. ruby/ext/google/protobuf_c/defs.c \
  274. ruby/ext/google/protobuf_c/encode_decode.c \
  275. ruby/ext/google/protobuf_c/extconf.rb \
  276. ruby/ext/google/protobuf_c/map.c \
  277. ruby/ext/google/protobuf_c/message.c \
  278. ruby/ext/google/protobuf_c/protobuf.c \
  279. ruby/ext/google/protobuf_c/protobuf.h \
  280. ruby/ext/google/protobuf_c/repeated_field.c \
  281. ruby/ext/google/protobuf_c/storage.c \
  282. ruby/ext/google/protobuf_c/upb.c \
  283. ruby/ext/google/protobuf_c/upb.h \
  284. ruby/google-protobuf.gemspec \
  285. ruby/lib/google/protobuf.rb \
  286. ruby/tests/basic.rb \
  287. ruby/tests/stress.rb \
  288. ruby/tests/generated_code.proto \
  289. ruby/tests/generated_code.rb \
  290. ruby/tests/generated_code_test.rb
  291. all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
  292. EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
  293. autogen.sh \
  294. generate_descriptor_proto.sh \
  295. README.md \
  296. INSTALL.txt \
  297. LICENSE \
  298. CONTRIBUTORS.txt \
  299. CHANGES.txt \
  300. config.h.include \
  301. editors/README.txt \
  302. editors/proto.vim \
  303. editors/protobuf-mode.el \
  304. vsprojects/config.h \
  305. vsprojects/google/protobuf/stubs/pbconfig.h \
  306. vsprojects/extract_includes.bat \
  307. vsprojects/libprotobuf.vcproj \
  308. vsprojects/libprotobuf-lite.vcproj \
  309. vsprojects/libprotoc.vcproj \
  310. vsprojects/protobuf.sln \
  311. vsprojects/protoc.vcproj \
  312. vsprojects/readme.txt \
  313. vsprojects/test_plugin.vcproj \
  314. vsprojects/tests.vcproj \
  315. vsprojects/lite-test.vcproj \
  316. vsprojects/convert2008to2005.sh \
  317. examples/README.txt \
  318. examples/Makefile \
  319. examples/addressbook.proto \
  320. examples/add_person.cc \
  321. examples/list_people.cc \
  322. examples/AddPerson.java \
  323. examples/ListPeople.java \
  324. examples/add_person.py \
  325. examples/list_people.py
  326. # Deletes all the files generated by autogen.sh.
  327. MAINTAINERCLEANFILES = \
  328. aclocal.m4 \
  329. config.guess \
  330. config.sub \
  331. configure \
  332. depcomp \
  333. install-sh \
  334. ltmain.sh \
  335. Makefile.in \
  336. missing \
  337. mkinstalldirs \
  338. config.h.in \
  339. stamp.h.in \
  340. m4/ltsugar.m4 \
  341. m4/libtool.m4 \
  342. m4/ltversion.m4 \
  343. m4/lt~obsolete.m4 \
  344. m4/ltoptions.m4