PageRenderTime 48ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Makefile.am

http://protobuf.googlecode.com/
Makefile | 225 lines | 200 code | 9 blank | 16 comment | 2 complexity | 6d954b12c38e756ab9a6d31914889fa2 MD5 | raw file
Possible License(s): BSD-3-Clause
  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/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/ExtensionRegistry.java \
  74. java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  75. java/src/main/java/com/google/protobuf/FieldSet.java \
  76. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  77. java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  78. java/src/main/java/com/google/protobuf/Internal.java \
  79. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  80. java/src/main/java/com/google/protobuf/LazyField.java \
  81. java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  82. java/src/main/java/com/google/protobuf/LazyStringList.java \
  83. java/src/main/java/com/google/protobuf/LiteralByteString.java \
  84. java/src/main/java/com/google/protobuf/Message.java \
  85. java/src/main/java/com/google/protobuf/MessageLite.java \
  86. java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  87. java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  88. java/src/main/java/com/google/protobuf/Parser.java \
  89. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  90. java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  91. java/src/main/java/com/google/protobuf/RopeByteString.java \
  92. java/src/main/java/com/google/protobuf/RpcCallback.java \
  93. java/src/main/java/com/google/protobuf/RpcChannel.java \
  94. java/src/main/java/com/google/protobuf/RpcController.java \
  95. java/src/main/java/com/google/protobuf/RpcUtil.java \
  96. java/src/main/java/com/google/protobuf/ServiceException.java \
  97. java/src/main/java/com/google/protobuf/Service.java \
  98. java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  99. java/src/main/java/com/google/protobuf/SmallSortedMap.java \
  100. java/src/main/java/com/google/protobuf/TextFormat.java \
  101. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  102. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  103. java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  104. java/src/main/java/com/google/protobuf/Utf8.java \
  105. java/src/main/java/com/google/protobuf/WireFormat.java \
  106. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  107. java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  108. java/src/test/java/com/google/protobuf/ByteStringTest.java \
  109. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  110. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  111. java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  112. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  113. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  114. java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  115. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  116. java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  117. java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  118. java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  119. java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  120. java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  121. java/src/test/java/com/google/protobuf/LiteTest.java \
  122. java/src/test/java/com/google/protobuf/MessageTest.java \
  123. java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  124. java/src/test/java/com/google/protobuf/ParserTest.java \
  125. java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
  126. java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  127. java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  128. java/src/test/java/com/google/protobuf/ServiceTest.java \
  129. java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  130. java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  131. java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  132. java/src/test/java/com/google/protobuf/TestUtil.java \
  133. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  134. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  135. java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  136. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  137. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  138. java/src/test/java/com/google/protobuf/nested_builders_test.proto \
  139. java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
  140. java/src/test/java/com/google/protobuf/nested_extension.proto \
  141. java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
  142. java/src/test/java/com/google/protobuf/non_nested_extension.proto \
  143. java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
  144. java/pom.xml \
  145. java/README.txt \
  146. python/google/protobuf/internal/generator_test.py \
  147. python/google/protobuf/internal/containers.py \
  148. python/google/protobuf/internal/decoder.py \
  149. python/google/protobuf/internal/descriptor_database_test.py \
  150. python/google/protobuf/internal/descriptor_pool_test.py \
  151. python/google/protobuf/internal/descriptor_test.py \
  152. python/google/protobuf/internal/encoder.py \
  153. python/google/protobuf/internal/enum_type_wrapper.py \
  154. python/google/protobuf/internal/factory_test1.proto \
  155. python/google/protobuf/internal/factory_test2.proto \
  156. python/google/protobuf/internal/message_cpp_test.py \
  157. python/google/protobuf/internal/message_factory_test.py \
  158. python/google/protobuf/internal/message_listener.py \
  159. python/google/protobuf/internal/message_test.py \
  160. python/google/protobuf/internal/more_extensions.proto \
  161. python/google/protobuf/internal/more_extensions_dynamic.proto \
  162. python/google/protobuf/internal/more_messages.proto \
  163. python/google/protobuf/internal/python_message.py \
  164. python/google/protobuf/internal/cpp_message.py \
  165. python/google/protobuf/internal/api_implementation.py \
  166. python/google/protobuf/internal/reflection_test.py \
  167. python/google/protobuf/internal/reflection_cpp_generated_test.py \
  168. python/google/protobuf/internal/service_reflection_test.py \
  169. python/google/protobuf/internal/test_bad_identifiers.proto \
  170. python/google/protobuf/internal/test_util.py \
  171. python/google/protobuf/internal/text_format_test.py \
  172. python/google/protobuf/internal/type_checkers.py \
  173. python/google/protobuf/internal/unknown_fields_test.py \
  174. python/google/protobuf/internal/wire_format.py \
  175. python/google/protobuf/internal/wire_format_test.py \
  176. python/google/protobuf/internal/__init__.py \
  177. python/google/protobuf/pyext/python-proto2.cc \
  178. python/google/protobuf/pyext/python_descriptor.cc \
  179. python/google/protobuf/pyext/python_descriptor.h \
  180. python/google/protobuf/pyext/python_protobuf.cc \
  181. python/google/protobuf/pyext/python_protobuf.h \
  182. python/google/protobuf/descriptor.py \
  183. python/google/protobuf/descriptor_database.py \
  184. python/google/protobuf/descriptor_pool.py \
  185. python/google/protobuf/message.py \
  186. python/google/protobuf/message_factory.py \
  187. python/google/protobuf/reflection.py \
  188. python/google/protobuf/service.py \
  189. python/google/protobuf/service_reflection.py \
  190. python/google/protobuf/text_format.py \
  191. python/google/protobuf/__init__.py \
  192. python/google/__init__.py \
  193. python/ez_setup.py \
  194. python/setup.py \
  195. python/mox.py \
  196. python/stubout.py \
  197. python/README.txt
  198. # Deletes all the files generated by autogen.sh.
  199. MAINTAINERCLEANFILES = \
  200. aclocal.m4 \
  201. config.guess \
  202. config.sub \
  203. configure \
  204. depcomp \
  205. install-sh \
  206. ltmain.sh \
  207. Makefile.in \
  208. missing \
  209. mkinstalldirs \
  210. config.h.in \
  211. stamp.h.in \
  212. m4/ltsugar.m4 \
  213. m4/libtool.m4 \
  214. m4/ltversion.m4 \
  215. m4/lt~obsolete.m4 \
  216. m4/ltoptions.m4