Makefile.am 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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. EXTRA_DIST = \
  31. autogen.sh \
  32. generate_descriptor_proto.sh \
  33. README.txt \
  34. INSTALL.txt \
  35. LICENSE \
  36. CONTRIBUTORS.txt \
  37. CHANGES.txt \
  38. editors/README.txt \
  39. editors/proto.vim \
  40. editors/protobuf-mode.el \
  41. vsprojects/config.h \
  42. vsprojects/extract_includes.bat \
  43. vsprojects/libprotobuf.vcproj \
  44. vsprojects/libprotobuf-lite.vcproj \
  45. vsprojects/libprotoc.vcproj \
  46. vsprojects/protobuf.sln \
  47. vsprojects/protoc.vcproj \
  48. vsprojects/readme.txt \
  49. vsprojects/test_plugin.vcproj \
  50. vsprojects/tests.vcproj \
  51. vsprojects/lite-test.vcproj \
  52. vsprojects/convert2008to2005.sh \
  53. examples/README.txt \
  54. examples/Makefile \
  55. examples/addressbook.proto \
  56. examples/add_person.cc \
  57. examples/list_people.cc \
  58. examples/AddPerson.java \
  59. examples/ListPeople.java \
  60. examples/add_person.py \
  61. examples/list_people.py \
  62. java/src/main/java/com/google/protobuf/AbstractMessage.java \
  63. java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
  64. java/src/main/java/com/google/protobuf/AbstractParser.java \
  65. java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  66. java/src/main/java/com/google/protobuf/BlockingService.java \
  67. java/src/main/java/com/google/protobuf/BoundedByteString.java \
  68. java/src/main/java/com/google/protobuf/ByteString.java \
  69. java/src/main/java/com/google/protobuf/CodedInputStream.java \
  70. java/src/main/java/com/google/protobuf/CodedOutputStream.java \
  71. java/src/main/java/com/google/protobuf/Descriptors.java \
  72. java/src/main/java/com/google/protobuf/DynamicMessage.java \
  73. java/src/main/java/com/google/protobuf/Extension.java \
  74. java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  75. java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  76. java/src/main/java/com/google/protobuf/FieldSet.java \
  77. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  78. java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  79. java/src/main/java/com/google/protobuf/Internal.java \
  80. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  81. java/src/main/java/com/google/protobuf/LazyField.java \
  82. java/src/main/java/com/google/protobuf/LazyFieldLite.java \
  83. java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  84. java/src/main/java/com/google/protobuf/LazyStringList.java \
  85. java/src/main/java/com/google/protobuf/LiteralByteString.java \
  86. java/src/main/java/com/google/protobuf/Message.java \
  87. java/src/main/java/com/google/protobuf/MessageLite.java \
  88. java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  89. java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  90. java/src/main/java/com/google/protobuf/MessageReflection.java \
  91. java/src/main/java/com/google/protobuf/Parser.java \
  92. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  93. java/src/main/java/com/google/protobuf/ProtocolStringList.java \
  94. java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  95. java/src/main/java/com/google/protobuf/RopeByteString.java \
  96. java/src/main/java/com/google/protobuf/RpcCallback.java \
  97. java/src/main/java/com/google/protobuf/RpcChannel.java \
  98. java/src/main/java/com/google/protobuf/RpcController.java \
  99. java/src/main/java/com/google/protobuf/RpcUtil.java \
  100. java/src/main/java/com/google/protobuf/ServiceException.java \
  101. java/src/main/java/com/google/protobuf/Service.java \
  102. java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  103. java/src/main/java/com/google/protobuf/SmallSortedMap.java \
  104. java/src/main/java/com/google/protobuf/TextFormat.java \
  105. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  106. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  107. java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  108. java/src/main/java/com/google/protobuf/Utf8.java \
  109. java/src/main/java/com/google/protobuf/WireFormat.java \
  110. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  111. java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  112. java/src/test/java/com/google/protobuf/ByteStringTest.java \
  113. java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
  114. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  115. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  116. java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  117. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  118. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  119. java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  120. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  121. java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  122. java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  123. java/src/test/java/com/google/protobuf/LazyFieldTest.java \
  124. java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
  125. java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
  126. java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  127. java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  128. java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
  129. java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  130. java/src/test/java/com/google/protobuf/LiteTest.java \
  131. java/src/test/java/com/google/protobuf/MessageTest.java \
  132. java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  133. java/src/test/java/com/google/protobuf/ParserTest.java \
  134. java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
  135. java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  136. java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  137. java/src/test/java/com/google/protobuf/ServiceTest.java \
  138. java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  139. java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  140. java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  141. java/src/test/java/com/google/protobuf/TestUtil.java \
  142. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  143. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  144. java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  145. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  146. java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
  147. java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
  148. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  149. java/src/test/java/com/google/protobuf/nested_builders_test.proto \
  150. java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
  151. java/src/test/java/com/google/protobuf/nested_extension.proto \
  152. java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
  153. java/src/test/java/com/google/protobuf/non_nested_extension.proto \
  154. java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
  155. java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
  156. java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
  157. java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
  158. java/src/test/java/com/google/protobuf/test_check_utf8.proto \
  159. java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
  160. java/src/test/java/com/google/protobuf/test_custom_options.proto \
  161. java/pom.xml \
  162. java/README.txt \
  163. python/google/protobuf/internal/api_implementation.cc \
  164. python/google/protobuf/internal/api_implementation.py \
  165. python/google/protobuf/internal/api_implementation_default_test.py \
  166. python/google/protobuf/internal/containers.py \
  167. python/google/protobuf/internal/cpp_message.py \
  168. python/google/protobuf/internal/decoder.py \
  169. python/google/protobuf/internal/descriptor_database_test.py \
  170. python/google/protobuf/internal/descriptor_pool_test.py \
  171. python/google/protobuf/internal/descriptor_pool_test1.proto \
  172. python/google/protobuf/internal/descriptor_pool_test2.proto \
  173. python/google/protobuf/internal/descriptor_python_test.py \
  174. python/google/protobuf/internal/descriptor_test.py \
  175. python/google/protobuf/internal/encoder.py \
  176. python/google/protobuf/internal/enum_type_wrapper.py \
  177. python/google/protobuf/internal/factory_test1.proto \
  178. python/google/protobuf/internal/factory_test2.proto \
  179. python/google/protobuf/internal/generator_test.py \
  180. python/google/protobuf/internal/message_factory_python_test.py \
  181. python/google/protobuf/internal/message_factory_test.py \
  182. python/google/protobuf/internal/message_listener.py \
  183. python/google/protobuf/internal/message_python_test.py \
  184. python/google/protobuf/internal/message_test.py \
  185. python/google/protobuf/internal/missing_enum_values.proto \
  186. python/google/protobuf/internal/more_extensions.proto \
  187. python/google/protobuf/internal/more_extensions_dynamic.proto \
  188. python/google/protobuf/internal/more_messages.proto \
  189. python/google/protobuf/internal/python_message.py \
  190. python/google/protobuf/internal/reflection_test.py \
  191. python/google/protobuf/internal/service_reflection_test.py \
  192. python/google/protobuf/internal/symbol_database_test.py \
  193. python/google/protobuf/internal/test_bad_identifiers.proto \
  194. python/google/protobuf/internal/test_util.py \
  195. python/google/protobuf/internal/text_encoding_test.py \
  196. python/google/protobuf/internal/text_format_test.py \
  197. python/google/protobuf/internal/type_checkers.py \
  198. python/google/protobuf/internal/unknown_fields_test.py \
  199. python/google/protobuf/internal/wire_format.py \
  200. python/google/protobuf/internal/wire_format_test.py \
  201. python/google/protobuf/internal/__init__.py \
  202. 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 \
  206. python/google/protobuf/pyext/descriptor_cpp2_test.py \
  207. 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 \
  211. python/google/protobuf/pyext/message_factory_cpp2_test.py \
  212. python/google/protobuf/pyext/proto2_api_test.proto \
  213. python/google/protobuf/pyext/python.proto \
  214. python/google/protobuf/pyext/python_protobuf.h \
  215. python/google/protobuf/pyext/reflection_cpp2_generated_test.py \
  216. 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 \
  222. python/google/protobuf/descriptor.py \
  223. python/google/protobuf/descriptor_database.py \
  224. python/google/protobuf/descriptor_pool.py \
  225. python/google/protobuf/message.py \
  226. python/google/protobuf/message_factory.py \
  227. python/google/protobuf/reflection.py \
  228. python/google/protobuf/service.py \
  229. python/google/protobuf/service_reflection.py \
  230. python/google/protobuf/symbol_database.py \
  231. python/google/protobuf/text_encoding.py \
  232. python/google/protobuf/text_format.py \
  233. python/google/protobuf/__init__.py \
  234. python/google/__init__.py \
  235. python/ez_setup.py \
  236. python/setup.py \
  237. python/mox.py \
  238. python/stubout.py \
  239. python/README.txt
  240. # Deletes all the files generated by autogen.sh.
  241. MAINTAINERCLEANFILES = \
  242. aclocal.m4 \
  243. config.guess \
  244. config.sub \
  245. configure \
  246. depcomp \
  247. install-sh \
  248. ltmain.sh \
  249. Makefile.in \
  250. missing \
  251. mkinstalldirs \
  252. config.h.in \
  253. stamp.h.in \
  254. m4/ltsugar.m4 \
  255. m4/libtool.m4 \
  256. m4/ltversion.m4 \
  257. m4/lt~obsolete.m4 \
  258. m4/ltoptions.m4