Makefile.am 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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. COPYING.txt \
  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/BlockingRpcChannel.java \
  65. java/src/main/java/com/google/protobuf/BlockingService.java \
  66. java/src/main/java/com/google/protobuf/ByteString.java \
  67. java/src/main/java/com/google/protobuf/CodedInputStream.java \
  68. java/src/main/java/com/google/protobuf/CodedOutputStream.java \
  69. java/src/main/java/com/google/protobuf/Descriptors.java \
  70. java/src/main/java/com/google/protobuf/DynamicMessage.java \
  71. java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  72. java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  73. java/src/main/java/com/google/protobuf/FieldSet.java \
  74. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  75. java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  76. java/src/main/java/com/google/protobuf/Internal.java \
  77. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  78. java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  79. java/src/main/java/com/google/protobuf/LazyStringList.java \
  80. java/src/main/java/com/google/protobuf/Message.java \
  81. java/src/main/java/com/google/protobuf/MessageLite.java \
  82. java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  83. java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  84. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  85. java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  86. java/src/main/java/com/google/protobuf/RpcCallback.java \
  87. java/src/main/java/com/google/protobuf/RpcChannel.java \
  88. java/src/main/java/com/google/protobuf/RpcController.java \
  89. java/src/main/java/com/google/protobuf/RpcUtil.java \
  90. java/src/main/java/com/google/protobuf/Service.java \
  91. java/src/main/java/com/google/protobuf/ServiceException.java \
  92. java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  93. java/src/main/java/com/google/protobuf/SmallSortedMap.java \
  94. java/src/main/java/com/google/protobuf/TextFormat.java \
  95. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  96. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  97. java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  98. java/src/main/java/com/google/protobuf/WireFormat.java \
  99. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  100. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  101. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  102. java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  103. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  104. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  105. java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  106. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  107. java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  108. java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  109. java/src/test/java/com/google/protobuf/LiteTest.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/RepeatedFieldBuilderTest.java \
  113. java/src/test/java/com/google/protobuf/ServiceTest.java \
  114. java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  115. java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  116. java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  117. java/src/test/java/com/google/protobuf/TestUtil.java \
  118. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  119. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  120. java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  121. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  122. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  123. java/src/test/java/com/google/protobuf/nested_builders_test.proto \
  124. java/src/test/java/com/google/protobuf/nested_extension.proto \
  125. java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
  126. java/src/test/java/com/google/protobuf/non_nested_extension.proto \
  127. java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
  128. java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
  129. java/pom.xml \
  130. java/README.txt \
  131. python/google/protobuf/internal/generator_test.py \
  132. python/google/protobuf/internal/containers.py \
  133. python/google/protobuf/internal/decoder.py \
  134. python/google/protobuf/internal/descriptor_test.py \
  135. python/google/protobuf/internal/encoder.py \
  136. python/google/protobuf/internal/message_listener.py \
  137. python/google/protobuf/internal/message_test.py \
  138. python/google/protobuf/internal/more_extensions.proto \
  139. python/google/protobuf/internal/more_messages.proto \
  140. python/google/protobuf/internal/python_message.py \
  141. python/google/protobuf/internal/cpp_message.py \
  142. python/google/protobuf/internal/api_implementation.py \
  143. python/google/protobuf/internal/reflection_test.py \
  144. python/google/protobuf/internal/service_reflection_test.py \
  145. python/google/protobuf/internal/test_util.py \
  146. python/google/protobuf/internal/text_format_test.py \
  147. python/google/protobuf/internal/type_checkers.py \
  148. python/google/protobuf/internal/wire_format.py \
  149. python/google/protobuf/internal/wire_format_test.py \
  150. python/google/protobuf/internal/__init__.py \
  151. python/google/protobuf/pyext/python-proto2.cc \
  152. python/google/protobuf/pyext/python_descriptor.cc \
  153. python/google/protobuf/pyext/python_descriptor.h \
  154. python/google/protobuf/pyext/python_protobuf.cc \
  155. python/google/protobuf/pyext/python_protobuf.h \
  156. python/google/protobuf/descriptor.py \
  157. python/google/protobuf/message.py \
  158. python/google/protobuf/reflection.py \
  159. python/google/protobuf/service.py \
  160. python/google/protobuf/service_reflection.py \
  161. python/google/protobuf/text_format.py \
  162. python/google/protobuf/__init__.py \
  163. python/google/__init__.py \
  164. python/ez_setup.py \
  165. python/setup.py \
  166. python/mox.py \
  167. python/stubout.py \
  168. python/README.txt
  169. # Deletes all the files generated by autogen.sh.
  170. MAINTAINERCLEANFILES = \
  171. aclocal.m4 \
  172. config.guess \
  173. config.sub \
  174. configure \
  175. depcomp \
  176. install-sh \
  177. ltmain.sh \
  178. Makefile.in \
  179. missing \
  180. mkinstalldirs \
  181. config.h.in \
  182. stamp.h.in \
  183. m4/ltsugar.m4 \
  184. m4/libtool.m4 \
  185. m4/ltversion.m4 \
  186. m4/lt~obsolete.m4 \
  187. m4/ltoptions.m4