You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
267 lines
18 KiB
267 lines
18 KiB
## Process this file with automake to produce Makefile.in |
|
|
|
ACLOCAL_AMFLAGS = -I m4 |
|
|
|
AUTOMAKE_OPTIONS = foreign |
|
|
|
# Build . before src so that our all-local and clean-local hooks kicks in at |
|
# the right time. |
|
SUBDIRS = . src |
|
|
|
# Always include gtest in distributions. |
|
DIST_SUBDIRS = $(subdirs) src |
|
|
|
# Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS |
|
# because then "make check" would also build and run all of gtest's own tests, |
|
# which takes a lot of time and is generally not useful to us. Also, we don't |
|
# want "make install" to recurse into gtest since we don't want to overwrite |
|
# the installed version of gtest if there is one. |
|
check-local: |
|
@echo "Making lib/libgtest.a lib/libgtest_main.a in gtest" |
|
@cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la |
|
|
|
# We would like to clean gtest when "make clean" is invoked. But we have to |
|
# be careful because clean-local is also invoked during "make distclean", but |
|
# "make distclean" already recurses into gtest because it's listed among the |
|
# DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to |
|
# cd to the directory again and "make clean" it will fail. So, check that the |
|
# Makefile exists before recursing. |
|
clean-local: |
|
@if test -e gtest/Makefile; then \ |
|
echo "Making clean in gtest"; \ |
|
cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
|
fi |
|
|
|
pkgconfigdir = $(libdir)/pkgconfig |
|
pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
|
|
|
EXTRA_DIST = \ |
|
autogen.sh \ |
|
generate_descriptor_proto.sh \ |
|
README.md \ |
|
INSTALL.txt \ |
|
LICENSE \ |
|
CONTRIBUTORS.txt \ |
|
CHANGES.txt \ |
|
editors/README.txt \ |
|
editors/proto.vim \ |
|
editors/protobuf-mode.el \ |
|
vsprojects/config.h \ |
|
vsprojects/extract_includes.bat \ |
|
vsprojects/libprotobuf.vcproj \ |
|
vsprojects/libprotobuf-lite.vcproj \ |
|
vsprojects/libprotoc.vcproj \ |
|
vsprojects/protobuf.sln \ |
|
vsprojects/protoc.vcproj \ |
|
vsprojects/readme.txt \ |
|
vsprojects/test_plugin.vcproj \ |
|
vsprojects/tests.vcproj \ |
|
vsprojects/lite-test.vcproj \ |
|
vsprojects/convert2008to2005.sh \ |
|
examples/README.txt \ |
|
examples/Makefile \ |
|
examples/addressbook.proto \ |
|
examples/add_person.cc \ |
|
examples/list_people.cc \ |
|
examples/AddPerson.java \ |
|
examples/ListPeople.java \ |
|
examples/add_person.py \ |
|
examples/list_people.py \ |
|
java/src/main/java/com/google/protobuf/AbstractMessage.java \ |
|
java/src/main/java/com/google/protobuf/AbstractMessageLite.java \ |
|
java/src/main/java/com/google/protobuf/AbstractParser.java \ |
|
java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ |
|
java/src/main/java/com/google/protobuf/BlockingService.java \ |
|
java/src/main/java/com/google/protobuf/BoundedByteString.java \ |
|
java/src/main/java/com/google/protobuf/ByteString.java \ |
|
java/src/main/java/com/google/protobuf/CodedInputStream.java \ |
|
java/src/main/java/com/google/protobuf/CodedOutputStream.java \ |
|
java/src/main/java/com/google/protobuf/Descriptors.java \ |
|
java/src/main/java/com/google/protobuf/DynamicMessage.java \ |
|
java/src/main/java/com/google/protobuf/Extension.java \ |
|
java/src/main/java/com/google/protobuf/ExtensionRegistry.java \ |
|
java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ |
|
java/src/main/java/com/google/protobuf/FieldSet.java \ |
|
java/src/main/java/com/google/protobuf/GeneratedMessage.java \ |
|
java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ |
|
java/src/main/java/com/google/protobuf/Internal.java \ |
|
java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ |
|
java/src/main/java/com/google/protobuf/LazyField.java \ |
|
java/src/main/java/com/google/protobuf/LazyFieldLite.java \ |
|
java/src/main/java/com/google/protobuf/LazyStringArrayList.java \ |
|
java/src/main/java/com/google/protobuf/LazyStringList.java \ |
|
java/src/main/java/com/google/protobuf/LiteralByteString.java \ |
|
java/src/main/java/com/google/protobuf/Message.java \ |
|
java/src/main/java/com/google/protobuf/MessageLite.java \ |
|
java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ |
|
java/src/main/java/com/google/protobuf/MessageOrBuilder.java \ |
|
java/src/main/java/com/google/protobuf/MessageReflection.java \ |
|
java/src/main/java/com/google/protobuf/Parser.java \ |
|
java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ |
|
java/src/main/java/com/google/protobuf/ProtocolStringList.java \ |
|
java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ |
|
java/src/main/java/com/google/protobuf/RopeByteString.java \ |
|
java/src/main/java/com/google/protobuf/RpcCallback.java \ |
|
java/src/main/java/com/google/protobuf/RpcChannel.java \ |
|
java/src/main/java/com/google/protobuf/RpcController.java \ |
|
java/src/main/java/com/google/protobuf/RpcUtil.java \ |
|
java/src/main/java/com/google/protobuf/ServiceException.java \ |
|
java/src/main/java/com/google/protobuf/Service.java \ |
|
java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ |
|
java/src/main/java/com/google/protobuf/SmallSortedMap.java \ |
|
java/src/main/java/com/google/protobuf/TextFormat.java \ |
|
java/src/main/java/com/google/protobuf/UninitializedMessageException.java \ |
|
java/src/main/java/com/google/protobuf/UnknownFieldSet.java \ |
|
java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ |
|
java/src/main/java/com/google/protobuf/Utf8.java \ |
|
java/src/main/java/com/google/protobuf/WireFormat.java \ |
|
java/src/test/java/com/google/protobuf/AbstractMessageTest.java \ |
|
java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ |
|
java/src/test/java/com/google/protobuf/ByteStringTest.java \ |
|
java/src/test/java/com/google/protobuf/CheckUtf8Test.java \ |
|
java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ |
|
java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ |
|
java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ |
|
java/src/test/java/com/google/protobuf/DescriptorsTest.java \ |
|
java/src/test/java/com/google/protobuf/DynamicMessageTest.java \ |
|
java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ |
|
java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ |
|
java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ |
|
java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ |
|
java/src/test/java/com/google/protobuf/LazyFieldTest.java \ |
|
java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ |
|
java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ |
|
java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ |
|
java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ |
|
java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ |
|
java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ |
|
java/src/test/java/com/google/protobuf/LiteTest.java \ |
|
java/src/test/java/com/google/protobuf/MessageTest.java \ |
|
java/src/test/java/com/google/protobuf/NestedBuildersTest.java \ |
|
java/src/test/java/com/google/protobuf/ParserTest.java \ |
|
java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \ |
|
java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ |
|
java/src/test/java/com/google/protobuf/RopeByteStringTest.java \ |
|
java/src/test/java/com/google/protobuf/ServiceTest.java \ |
|
java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \ |
|
java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ |
|
java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ |
|
java/src/test/java/com/google/protobuf/TestUtil.java \ |
|
java/src/test/java/com/google/protobuf/TextFormatTest.java \ |
|
java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ |
|
java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ |
|
java/src/test/java/com/google/protobuf/WireFormatTest.java \ |
|
java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \ |
|
java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \ |
|
java/src/test/java/com/google/protobuf/multiple_files_test.proto \ |
|
java/src/test/java/com/google/protobuf/nested_builders_test.proto \ |
|
java/src/test/java/com/google/protobuf/nested_extension_lite.proto \ |
|
java/src/test/java/com/google/protobuf/nested_extension.proto \ |
|
java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \ |
|
java/src/test/java/com/google/protobuf/non_nested_extension.proto \ |
|
java/src/test/java/com/google/protobuf/outer_class_name_test.proto \ |
|
java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \ |
|
java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \ |
|
java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \ |
|
java/src/test/java/com/google/protobuf/test_check_utf8.proto \ |
|
java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \ |
|
java/src/test/java/com/google/protobuf/test_custom_options.proto \ |
|
java/pom.xml \ |
|
java/README.txt \ |
|
python/google/protobuf/internal/api_implementation.cc \ |
|
python/google/protobuf/internal/api_implementation.py \ |
|
python/google/protobuf/internal/api_implementation_default_test.py \ |
|
python/google/protobuf/internal/containers.py \ |
|
python/google/protobuf/internal/cpp_message.py \ |
|
python/google/protobuf/internal/decoder.py \ |
|
python/google/protobuf/internal/descriptor_database_test.py \ |
|
python/google/protobuf/internal/descriptor_pool_test.py \ |
|
python/google/protobuf/internal/descriptor_pool_test1.proto \ |
|
python/google/protobuf/internal/descriptor_pool_test2.proto \ |
|
python/google/protobuf/internal/descriptor_python_test.py \ |
|
python/google/protobuf/internal/descriptor_test.py \ |
|
python/google/protobuf/internal/encoder.py \ |
|
python/google/protobuf/internal/enum_type_wrapper.py \ |
|
python/google/protobuf/internal/factory_test1.proto \ |
|
python/google/protobuf/internal/factory_test2.proto \ |
|
python/google/protobuf/internal/generator_test.py \ |
|
python/google/protobuf/internal/message_factory_python_test.py \ |
|
python/google/protobuf/internal/message_factory_test.py \ |
|
python/google/protobuf/internal/message_listener.py \ |
|
python/google/protobuf/internal/message_python_test.py \ |
|
python/google/protobuf/internal/message_test.py \ |
|
python/google/protobuf/internal/missing_enum_values.proto \ |
|
python/google/protobuf/internal/more_extensions.proto \ |
|
python/google/protobuf/internal/more_extensions_dynamic.proto \ |
|
python/google/protobuf/internal/more_messages.proto \ |
|
python/google/protobuf/internal/python_message.py \ |
|
python/google/protobuf/internal/reflection_test.py \ |
|
python/google/protobuf/internal/service_reflection_test.py \ |
|
python/google/protobuf/internal/symbol_database_test.py \ |
|
python/google/protobuf/internal/test_bad_identifiers.proto \ |
|
python/google/protobuf/internal/test_util.py \ |
|
python/google/protobuf/internal/text_encoding_test.py \ |
|
python/google/protobuf/internal/text_format_test.py \ |
|
python/google/protobuf/internal/type_checkers.py \ |
|
python/google/protobuf/internal/unknown_fields_test.py \ |
|
python/google/protobuf/internal/wire_format.py \ |
|
python/google/protobuf/internal/wire_format_test.py \ |
|
python/google/protobuf/internal/__init__.py \ |
|
python/google/protobuf/pyext/README \ |
|
python/google/protobuf/pyext/cpp_message.py \ |
|
python/google/protobuf/pyext/descriptor.h \ |
|
python/google/protobuf/pyext/descriptor.cc \ |
|
python/google/protobuf/pyext/descriptor_cpp2_test.py \ |
|
python/google/protobuf/pyext/extension_dict.h \ |
|
python/google/protobuf/pyext/extension_dict.cc \ |
|
python/google/protobuf/pyext/message.h \ |
|
python/google/protobuf/pyext/message.cc \ |
|
python/google/protobuf/pyext/message_factory_cpp2_test.py \ |
|
python/google/protobuf/pyext/proto2_api_test.proto \ |
|
python/google/protobuf/pyext/python.proto \ |
|
python/google/protobuf/pyext/python_protobuf.h \ |
|
python/google/protobuf/pyext/reflection_cpp2_generated_test.py \ |
|
python/google/protobuf/pyext/repeated_composite_container.h \ |
|
python/google/protobuf/pyext/repeated_composite_container.cc \ |
|
python/google/protobuf/pyext/repeated_scalar_container.h \ |
|
python/google/protobuf/pyext/repeated_scalar_container.cc \ |
|
python/google/protobuf/pyext/scoped_pyobject_ptr.h \ |
|
python/google/protobuf/pyext/__init__.py \ |
|
python/google/protobuf/descriptor.py \ |
|
python/google/protobuf/descriptor_database.py \ |
|
python/google/protobuf/descriptor_pool.py \ |
|
python/google/protobuf/message.py \ |
|
python/google/protobuf/message_factory.py \ |
|
python/google/protobuf/reflection.py \ |
|
python/google/protobuf/service.py \ |
|
python/google/protobuf/service_reflection.py \ |
|
python/google/protobuf/symbol_database.py \ |
|
python/google/protobuf/text_encoding.py \ |
|
python/google/protobuf/text_format.py \ |
|
python/google/protobuf/__init__.py \ |
|
python/google/__init__.py \ |
|
python/ez_setup.py \ |
|
python/setup.py \ |
|
python/mox.py \ |
|
python/stubout.py \ |
|
python/README.txt |
|
|
|
# Deletes all the files generated by autogen.sh. |
|
MAINTAINERCLEANFILES = \ |
|
aclocal.m4 \ |
|
config.guess \ |
|
config.sub \ |
|
configure \ |
|
depcomp \ |
|
install-sh \ |
|
ltmain.sh \ |
|
Makefile.in \ |
|
missing \ |
|
mkinstalldirs \ |
|
config.h.in \ |
|
stamp.h.in \ |
|
m4/ltsugar.m4 \ |
|
m4/libtool.m4 \ |
|
m4/ltversion.m4 \ |
|
m4/lt~obsolete.m4 \ |
|
m4/ltoptions.m4
|
|
|