Makefile.am 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. EXTRA_DIST = \
  29. autogen.sh \
  30. generate_descriptor_proto.sh \
  31. README.txt \
  32. INSTALL.txt \
  33. COPYING.txt \
  34. CONTRIBUTORS.txt \
  35. CHANGES.txt \
  36. editors/README.txt \
  37. editors/proto.vim \
  38. vsprojects/config.h \
  39. vsprojects/extract_includes.bat \
  40. vsprojects/libprotobuf.vcproj \
  41. vsprojects/libprotoc.vcproj \
  42. vsprojects/protobuf.sln \
  43. vsprojects/protoc.vcproj \
  44. vsprojects/readme.txt \
  45. vsprojects/tests.vcproj \
  46. vsprojects/convert2008to2005.sh \
  47. examples/README.txt \
  48. examples/Makefile \
  49. examples/addressbook.proto \
  50. examples/add_person.cc \
  51. examples/list_people.cc \
  52. examples/AddPerson.java \
  53. examples/ListPeople.java \
  54. examples/add_person.py \
  55. examples/list_people.py \
  56. java/src/main/java/com/google/protobuf/AbstractMessage.java \
  57. java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  58. java/src/main/java/com/google/protobuf/BlockingService.java \
  59. java/src/main/java/com/google/protobuf/ByteString.java \
  60. java/src/main/java/com/google/protobuf/CodedInputStream.java \
  61. java/src/main/java/com/google/protobuf/CodedOutputStream.java \
  62. java/src/main/java/com/google/protobuf/Descriptors.java \
  63. java/src/main/java/com/google/protobuf/DynamicMessage.java \
  64. java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  65. java/src/main/java/com/google/protobuf/FieldSet.java \
  66. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  67. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  68. java/src/main/java/com/google/protobuf/Message.java \
  69. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.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/Service.java \
  75. java/src/main/java/com/google/protobuf/ServiceException.java \
  76. java/src/main/java/com/google/protobuf/TextFormat.java \
  77. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  78. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  79. java/src/main/java/com/google/protobuf/WireFormat.java \
  80. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  81. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  82. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  83. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  84. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  85. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  86. java/src/test/java/com/google/protobuf/MessageTest.java \
  87. java/src/test/java/com/google/protobuf/ServiceTest.java \
  88. java/src/test/java/com/google/protobuf/TestUtil.java \
  89. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  90. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  91. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  92. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  93. java/pom.xml \
  94. java/README.txt \
  95. python/google/protobuf/internal/generator_test.py \
  96. python/google/protobuf/internal/containers.py \
  97. python/google/protobuf/internal/decoder.py \
  98. python/google/protobuf/internal/decoder_test.py \
  99. python/google/protobuf/internal/descriptor_test.py \
  100. python/google/protobuf/internal/encoder.py \
  101. python/google/protobuf/internal/encoder_test.py \
  102. python/google/protobuf/internal/input_stream.py \
  103. python/google/protobuf/internal/input_stream_test.py \
  104. python/google/protobuf/internal/message_listener.py \
  105. python/google/protobuf/internal/more_extensions.proto \
  106. python/google/protobuf/internal/more_messages.proto \
  107. python/google/protobuf/internal/output_stream.py \
  108. python/google/protobuf/internal/output_stream_test.py \
  109. python/google/protobuf/internal/reflection_test.py \
  110. python/google/protobuf/internal/service_reflection_test.py \
  111. python/google/protobuf/internal/test_util.py \
  112. python/google/protobuf/internal/text_format_test.py \
  113. python/google/protobuf/internal/type_checkers.py \
  114. python/google/protobuf/internal/wire_format.py \
  115. python/google/protobuf/internal/wire_format_test.py \
  116. python/google/protobuf/internal/__init__.py \
  117. python/google/protobuf/descriptor.py \
  118. python/google/protobuf/message.py \
  119. python/google/protobuf/reflection.py \
  120. python/google/protobuf/service.py \
  121. python/google/protobuf/service_reflection.py \
  122. python/google/protobuf/text_format.py \
  123. python/google/protobuf/__init__.py \
  124. python/google/__init__.py \
  125. python/ez_setup.py \
  126. python/setup.py \
  127. python/mox.py \
  128. python/stubout.py \
  129. python/README.txt
  130. # Deletes all the files generated by autogen.sh.
  131. MAINTAINERCLEANFILES = \
  132. aclocal.m4 \
  133. config.guess \
  134. config.sub \
  135. configure \
  136. depcomp \
  137. install-sh \
  138. ltmain.sh \
  139. Makefile.in \
  140. missing \
  141. mkinstalldirs \
  142. config.h.in \
  143. stamp.h.in