temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in |
| 2 | |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 3 | if HAVE_ZLIB |
| 4 | GZCHECKPROGRAMS = zcgzip zcgunzip |
| 5 | GZHEADERS = google/protobuf/io/gzip_stream.h |
| 6 | GZTESTS = google/protobuf/io/gzip_stream_unittest.sh |
Jisi Liu | 78d470c | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 7 | ZLIB_DEF = -DHAVE_ZLIB=1 |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 8 | else |
| 9 | GZCHECKPROGRAMS = |
| 10 | GZHEADERS = |
| 11 | GZTESTS = |
Jisi Liu | 78d470c | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 12 | ZLIB_DEF = |
| 13 | endif |
| 14 | |
| 15 | if HAVE_PTHREAD |
| 16 | PTHREAD_DEF = -DHAVE_PTHREAD=1 |
| 17 | else |
| 18 | PTHREAD_DEF = |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 19 | endif |
| 20 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 21 | if GCC |
| 22 | # These are good warnings to turn on by default |
Jisi Liu | 78d470c | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 23 | NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 24 | else |
Jisi Liu | 78d470c | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 25 | NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 26 | endif |
| 27 | |
kenton@google.com | 42c81e1 | 2009-05-06 01:15:06 +0000 | [diff] [blame] | 28 | AM_CXXFLAGS = $(NO_OPT_CXXFLAGS) $(PROTOBUF_OPT_FLAG) |
| 29 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 30 | AM_LDFLAGS = $(PTHREAD_CFLAGS) |
| 31 | |
| 32 | # If I say "dist_include_DATA", automake complains that $(includedir) is not |
| 33 | # a "legitimate" directory for DATA. Screw you, automake. |
| 34 | protodir = $(includedir) |
Feng Xiao | 7ddbf87 | 2015-04-23 20:23:58 -0700 | [diff] [blame] | 35 | nobase_dist_proto_DATA = google/protobuf/descriptor.proto \ |
| 36 | google/protobuf/any.proto \ |
| 37 | google/protobuf/api.proto \ |
| 38 | google/protobuf/duration.proto \ |
| 39 | google/protobuf/empty.proto \ |
| 40 | google/protobuf/field_mask.proto \ |
| 41 | google/protobuf/source_context.proto \ |
| 42 | google/protobuf/struct.proto \ |
| 43 | google/protobuf/timestamp.proto \ |
| 44 | google/protobuf/type.proto \ |
| 45 | google/protobuf/wrappers.proto \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 46 | google/protobuf/compiler/plugin.proto |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 47 | |
| 48 | # Not sure why these don't get cleaned automatically. |
| 49 | clean-local: |
| 50 | rm -f *.loT |
| 51 | |
Jisi Liu | f48dca5 | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 52 | CLEANFILES = $(protoc_outputs) unittest_proto_middleman \ |
kenton@google.com | d2fcbba | 2010-01-04 19:47:18 +0000 | [diff] [blame] | 53 | testzip.jar testzip.list testzip.proto testzip.zip |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 54 | |
| 55 | MAINTAINERCLEANFILES = \ |
| 56 | Makefile.in |
| 57 | |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 58 | nobase_include_HEADERS = \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 59 | google/protobuf/stubs/atomic_sequence_num.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 60 | google/protobuf/stubs/atomicops.h \ |
Doug Kwan | 2a50e67 | 2015-11-03 14:49:42 -0800 | [diff] [blame] | 61 | google/protobuf/stubs/atomicops_internals_power.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 62 | google/protobuf/stubs/atomicops_internals_arm64_gcc.h \ |
Feng Xiao | 53d202f | 2014-10-22 11:33:55 -0700 | [diff] [blame] | 63 | google/protobuf/stubs/atomicops_internals_arm_gcc.h \ |
liujisi@google.com | 4d8c2f9 | 2013-01-10 21:24:56 +0000 | [diff] [blame] | 64 | google/protobuf/stubs/atomicops_internals_arm_qnx.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 65 | google/protobuf/stubs/atomicops_internals_atomicword_compat.h \ |
jieluo@google.com | 1eba9d9 | 2014-08-25 20:17:53 +0000 | [diff] [blame] | 66 | google/protobuf/stubs/atomicops_internals_generic_gcc.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 67 | google/protobuf/stubs/atomicops_internals_macosx.h \ |
| 68 | google/protobuf/stubs/atomicops_internals_mips_gcc.h \ |
liujisi@google.com | f5b373d | 2013-01-10 21:37:04 +0000 | [diff] [blame] | 69 | google/protobuf/stubs/atomicops_internals_pnacl.h \ |
Feng Xiao | 53d202f | 2014-10-22 11:33:55 -0700 | [diff] [blame] | 70 | google/protobuf/stubs/atomicops_internals_solaris.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 71 | google/protobuf/stubs/atomicops_internals_tsan.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 72 | google/protobuf/stubs/atomicops_internals_x86_gcc.h \ |
| 73 | google/protobuf/stubs/atomicops_internals_x86_msvc.h \ |
Jisi Liu | 7b21611 | 2015-07-17 11:34:33 -0700 | [diff] [blame] | 74 | google/protobuf/stubs/callback.h \ |
Rob Earhart | 2f4fb64 | 2015-07-14 17:17:52 -0700 | [diff] [blame] | 75 | google/protobuf/stubs/bytestream.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 76 | google/protobuf/stubs/casts.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 77 | google/protobuf/stubs/common.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 78 | google/protobuf/stubs/fastmem.h \ |
Jisi Liu | df184fb | 2015-02-25 15:28:44 -0800 | [diff] [blame] | 79 | google/protobuf/stubs/hash.h \ |
Jisi Liu | 7b21611 | 2015-07-17 11:34:33 -0700 | [diff] [blame] | 80 | google/protobuf/stubs/logging.h \ |
| 81 | google/protobuf/stubs/macros.h \ |
| 82 | google/protobuf/stubs/mutex.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 83 | google/protobuf/stubs/once.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 84 | google/protobuf/stubs/platform_macros.h \ |
Jisi Liu | 7b21611 | 2015-07-17 11:34:33 -0700 | [diff] [blame] | 85 | google/protobuf/stubs/port.h \ |
| 86 | google/protobuf/stubs/scoped_ptr.h \ |
Jisi Liu | b670960 | 2015-02-25 17:09:55 -0800 | [diff] [blame] | 87 | google/protobuf/stubs/shared_ptr.h \ |
Jisi Liu | df184fb | 2015-02-25 15:28:44 -0800 | [diff] [blame] | 88 | google/protobuf/stubs/singleton.h \ |
Rob Earhart | 2f4fb64 | 2015-07-14 17:17:52 -0700 | [diff] [blame] | 89 | google/protobuf/stubs/status.h \ |
jieluo@google.com | 1eba9d9 | 2014-08-25 20:17:53 +0000 | [diff] [blame] | 90 | google/protobuf/stubs/stl_util.h \ |
Rob Earhart | 2f4fb64 | 2015-07-14 17:17:52 -0700 | [diff] [blame] | 91 | google/protobuf/stubs/stringpiece.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 92 | google/protobuf/stubs/template_util.h \ |
| 93 | google/protobuf/stubs/type_traits.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 94 | google/protobuf/any.pb.h \ |
| 95 | google/protobuf/api.pb.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 96 | google/protobuf/any.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 97 | google/protobuf/arena.h \ |
| 98 | google/protobuf/arenastring.h \ |
| 99 | google/protobuf/descriptor_database.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 100 | google/protobuf/descriptor.h \ |
| 101 | google/protobuf/descriptor.pb.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 102 | google/protobuf/duration.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 103 | google/protobuf/dynamic_message.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 104 | google/protobuf/empty.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 105 | google/protobuf/extension_set.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 106 | google/protobuf/field_mask.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 107 | google/protobuf/generated_enum_reflection.h \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 108 | google/protobuf/generated_enum_util.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 109 | google/protobuf/generated_message_reflection.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 110 | google/protobuf/generated_message_util.h \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 111 | google/protobuf/map_entry.h \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 112 | google/protobuf/map_entry_lite.h \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 113 | google/protobuf/map_field.h \ |
| 114 | google/protobuf/map_field_inl.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 115 | google/protobuf/map_field_lite.h \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 116 | google/protobuf/map.h \ |
| 117 | google/protobuf/map_type_handler.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 118 | google/protobuf/message.h \ |
| 119 | google/protobuf/message_lite.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 120 | google/protobuf/metadata.h \ |
| 121 | google/protobuf/reflection.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 122 | google/protobuf/reflection_ops.h \ |
| 123 | google/protobuf/repeated_field.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 124 | google/protobuf/repeated_field_reflection.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 125 | google/protobuf/service.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 126 | google/protobuf/source_context.pb.h \ |
| 127 | google/protobuf/struct.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 128 | google/protobuf/text_format.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 129 | google/protobuf/timestamp.pb.h \ |
| 130 | google/protobuf/type.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 131 | google/protobuf/unknown_field_set.h \ |
| 132 | google/protobuf/wire_format.h \ |
| 133 | google/protobuf/wire_format_lite.h \ |
| 134 | google/protobuf/wire_format_lite_inl.h \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 135 | google/protobuf/wrappers.pb.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 136 | google/protobuf/io/coded_stream.h \ |
| 137 | $(GZHEADERS) \ |
| 138 | google/protobuf/io/printer.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 139 | google/protobuf/io/strtod.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 140 | google/protobuf/io/tokenizer.h \ |
| 141 | google/protobuf/io/zero_copy_stream.h \ |
| 142 | google/protobuf/io/zero_copy_stream_impl.h \ |
| 143 | google/protobuf/io/zero_copy_stream_impl_lite.h \ |
| 144 | google/protobuf/compiler/code_generator.h \ |
| 145 | google/protobuf/compiler/command_line_interface.h \ |
| 146 | google/protobuf/compiler/importer.h \ |
| 147 | google/protobuf/compiler/parser.h \ |
| 148 | google/protobuf/compiler/plugin.h \ |
| 149 | google/protobuf/compiler/plugin.pb.h \ |
| 150 | google/protobuf/compiler/cpp/cpp_generator.h \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 151 | google/protobuf/compiler/csharp/csharp_generator.h \ |
| 152 | google/protobuf/compiler/csharp/csharp_names.h \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 153 | google/protobuf/compiler/java/java_generator.h \ |
zhangkun83 | a6b3ab0 | 2015-01-12 15:56:07 -0800 | [diff] [blame] | 154 | google/protobuf/compiler/java/java_names.h \ |
Feng Xiao | 044e095 | 2014-12-12 17:50:43 -0800 | [diff] [blame] | 155 | google/protobuf/compiler/javanano/javanano_generator.h \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 156 | google/protobuf/compiler/js/js_generator.h \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 157 | google/protobuf/compiler/objectivec/objectivec_generator.h \ |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 158 | google/protobuf/compiler/objectivec/objectivec_helpers.h \ |
Feng Xiao | 044e095 | 2014-12-12 17:50:43 -0800 | [diff] [blame] | 159 | google/protobuf/compiler/python/python_generator.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 160 | google/protobuf/compiler/ruby/ruby_generator.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 161 | google/protobuf/util/type_resolver.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 162 | google/protobuf/util/field_comparator.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 163 | google/protobuf/util/field_mask_util.h \ |
| 164 | google/protobuf/util/json_util.h \ |
| 165 | google/protobuf/util/time_util.h \ |
| 166 | google/protobuf/util/type_resolver_util.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 167 | google/protobuf/util/message_differencer.h |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 168 | |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 169 | lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 170 | |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 171 | libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS) |
Feng Xiao | 81a630c | 2014-12-03 11:52:21 -0800 | [diff] [blame] | 172 | libprotobuf_lite_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 173 | libprotobuf_lite_la_SOURCES = \ |
pliard@google.com | f5de486 | 2012-03-02 13:04:36 +0000 | [diff] [blame] | 174 | google/protobuf/stubs/atomicops_internals_x86_gcc.cc \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 175 | google/protobuf/stubs/atomicops_internals_x86_msvc.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 176 | google/protobuf/stubs/bytestream.cc \ |
| 177 | google/protobuf/stubs/bytestream.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 178 | google/protobuf/stubs/common.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 179 | google/protobuf/stubs/hash.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 180 | google/protobuf/stubs/int128.cc \ |
| 181 | google/protobuf/stubs/int128.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 182 | google/protobuf/stubs/map_util.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 183 | google/protobuf/stubs/mathutil.h \ |
| 184 | google/protobuf/stubs/once.cc \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 185 | google/protobuf/stubs/shared_ptr.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 186 | google/protobuf/stubs/status.cc \ |
| 187 | google/protobuf/stubs/status.h \ |
| 188 | google/protobuf/stubs/status_macros.h \ |
| 189 | google/protobuf/stubs/statusor.cc \ |
| 190 | google/protobuf/stubs/statusor.h \ |
| 191 | google/protobuf/stubs/stringpiece.cc \ |
| 192 | google/protobuf/stubs/stringpiece.h \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 193 | google/protobuf/stubs/stringprintf.cc \ |
| 194 | google/protobuf/stubs/stringprintf.h \ |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 195 | google/protobuf/stubs/structurally_valid.cc \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 196 | google/protobuf/stubs/strutil.cc \ |
| 197 | google/protobuf/stubs/strutil.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 198 | google/protobuf/stubs/time.cc \ |
| 199 | google/protobuf/stubs/time.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 200 | google/protobuf/arena.cc \ |
| 201 | google/protobuf/arenastring.cc \ |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 202 | google/protobuf/extension_set.cc \ |
| 203 | google/protobuf/generated_message_util.cc \ |
| 204 | google/protobuf/message_lite.cc \ |
| 205 | google/protobuf/repeated_field.cc \ |
| 206 | google/protobuf/wire_format_lite.cc \ |
| 207 | google/protobuf/io/coded_stream.cc \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 208 | google/protobuf/io/coded_stream_inl.h \ |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 209 | google/protobuf/io/zero_copy_stream.cc \ |
Jisi Liu | a86baaa | 2015-02-25 20:39:13 -0800 | [diff] [blame] | 210 | google/protobuf/io/zero_copy_stream_impl_lite.cc |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 211 | |
| 212 | libprotobuf_la_LIBADD = $(PTHREAD_LIBS) |
Feng Xiao | 81a630c | 2014-12-03 11:52:21 -0800 | [diff] [blame] | 213 | libprotobuf_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined |
kenton@google.com | 858a22b | 2009-07-29 02:21:47 +0000 | [diff] [blame] | 214 | libprotobuf_la_SOURCES = \ |
| 215 | $(libprotobuf_lite_la_SOURCES) \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 216 | google/protobuf/any.pb.cc \ |
| 217 | google/protobuf/api.pb.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 218 | google/protobuf/stubs/mathlimits.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 219 | google/protobuf/stubs/mathlimits.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 220 | google/protobuf/any.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 221 | google/protobuf/descriptor.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 222 | google/protobuf/descriptor_database.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 223 | google/protobuf/descriptor.pb.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 224 | google/protobuf/duration.pb.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 225 | google/protobuf/dynamic_message.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 226 | google/protobuf/empty.pb.cc \ |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 227 | google/protobuf/extension_set_heavy.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 228 | google/protobuf/field_mask.pb.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 229 | google/protobuf/generated_message_reflection.cc \ |
Feng Xiao | 496d47c | 2014-12-09 15:47:25 -0800 | [diff] [blame] | 230 | google/protobuf/map_field.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 231 | google/protobuf/message.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 232 | google/protobuf/reflection_internal.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 233 | google/protobuf/reflection_ops.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 234 | google/protobuf/service.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 235 | google/protobuf/source_context.pb.cc \ |
| 236 | google/protobuf/struct.pb.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 237 | google/protobuf/stubs/substitute.cc \ |
| 238 | google/protobuf/stubs/substitute.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 239 | google/protobuf/text_format.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 240 | google/protobuf/timestamp.pb.cc \ |
| 241 | google/protobuf/type.pb.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 242 | google/protobuf/unknown_field_set.cc \ |
| 243 | google/protobuf/wire_format.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 244 | google/protobuf/wrappers.pb.cc \ |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 245 | google/protobuf/io/gzip_stream.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 246 | google/protobuf/io/printer.cc \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 247 | google/protobuf/io/strtod.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 248 | google/protobuf/io/tokenizer.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 249 | google/protobuf/io/zero_copy_stream_impl.cc \ |
| 250 | google/protobuf/compiler/importer.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 251 | google/protobuf/compiler/parser.cc \ |
| 252 | google/protobuf/util/field_comparator.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 253 | google/protobuf/util/field_mask_util.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 254 | google/protobuf/util/internal/constants.h \ |
| 255 | google/protobuf/util/internal/datapiece.cc \ |
| 256 | google/protobuf/util/internal/datapiece.h \ |
| 257 | google/protobuf/util/internal/default_value_objectwriter.cc \ |
| 258 | google/protobuf/util/internal/default_value_objectwriter.h \ |
| 259 | google/protobuf/util/internal/error_listener.cc \ |
| 260 | google/protobuf/util/internal/error_listener.h \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 261 | google/protobuf/util/internal/expecting_objectwriter.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 262 | google/protobuf/util/internal/field_mask_utility.cc \ |
| 263 | google/protobuf/util/internal/field_mask_utility.h \ |
| 264 | google/protobuf/util/internal/json_escaping.cc \ |
| 265 | google/protobuf/util/internal/json_escaping.h \ |
| 266 | google/protobuf/util/internal/json_objectwriter.cc \ |
| 267 | google/protobuf/util/internal/json_objectwriter.h \ |
| 268 | google/protobuf/util/internal/json_stream_parser.cc \ |
| 269 | google/protobuf/util/internal/json_stream_parser.h \ |
| 270 | google/protobuf/util/internal/location_tracker.h \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 271 | google/protobuf/util/internal/mock_error_listener.h \ |
| 272 | google/protobuf/util/internal/object_location_tracker.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 273 | google/protobuf/util/internal/object_source.h \ |
| 274 | google/protobuf/util/internal/object_writer.cc \ |
| 275 | google/protobuf/util/internal/object_writer.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 276 | google/protobuf/util/internal/protostream_objectsource.cc \ |
| 277 | google/protobuf/util/internal/protostream_objectsource.h \ |
| 278 | google/protobuf/util/internal/protostream_objectwriter.cc \ |
| 279 | google/protobuf/util/internal/protostream_objectwriter.h \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 280 | google/protobuf/util/internal/proto_writer.cc \ |
| 281 | google/protobuf/util/internal/proto_writer.h \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 282 | google/protobuf/util/internal/structured_objectwriter.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 283 | google/protobuf/util/internal/type_info.cc \ |
| 284 | google/protobuf/util/internal/type_info.h \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 285 | google/protobuf/util/internal/type_info_test_helper.cc \ |
| 286 | google/protobuf/util/internal/type_info_test_helper.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 287 | google/protobuf/util/internal/utility.cc \ |
| 288 | google/protobuf/util/internal/utility.h \ |
| 289 | google/protobuf/util/json_util.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 290 | google/protobuf/util/message_differencer.cc \ |
| 291 | google/protobuf/util/time_util.cc \ |
| 292 | google/protobuf/util/type_resolver_util.cc |
| 293 | |
Jisi Liu | a86baaa | 2015-02-25 20:39:13 -0800 | [diff] [blame] | 294 | nodist_libprotobuf_la_SOURCES = $(nodist_libprotobuf_lite_la_SOURCES) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 295 | |
| 296 | libprotoc_la_LIBADD = $(PTHREAD_LIBS) libprotobuf.la |
Feng Xiao | 81a630c | 2014-12-03 11:52:21 -0800 | [diff] [blame] | 297 | libprotoc_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 298 | libprotoc_la_SOURCES = \ |
| 299 | google/protobuf/compiler/code_generator.cc \ |
| 300 | google/protobuf/compiler/command_line_interface.cc \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 301 | google/protobuf/compiler/plugin.cc \ |
| 302 | google/protobuf/compiler/plugin.pb.cc \ |
| 303 | google/protobuf/compiler/subprocess.cc \ |
| 304 | google/protobuf/compiler/subprocess.h \ |
kenton@google.com | 5066322 | 2009-12-24 02:12:15 +0000 | [diff] [blame] | 305 | google/protobuf/compiler/zip_writer.cc \ |
| 306 | google/protobuf/compiler/zip_writer.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 307 | google/protobuf/compiler/cpp/cpp_enum.cc \ |
| 308 | google/protobuf/compiler/cpp/cpp_enum.h \ |
| 309 | google/protobuf/compiler/cpp/cpp_enum_field.cc \ |
| 310 | google/protobuf/compiler/cpp/cpp_enum_field.h \ |
| 311 | google/protobuf/compiler/cpp/cpp_extension.cc \ |
| 312 | google/protobuf/compiler/cpp/cpp_extension.h \ |
| 313 | google/protobuf/compiler/cpp/cpp_field.cc \ |
| 314 | google/protobuf/compiler/cpp/cpp_field.h \ |
| 315 | google/protobuf/compiler/cpp/cpp_file.cc \ |
| 316 | google/protobuf/compiler/cpp/cpp_file.h \ |
| 317 | google/protobuf/compiler/cpp/cpp_generator.cc \ |
| 318 | google/protobuf/compiler/cpp/cpp_helpers.cc \ |
| 319 | google/protobuf/compiler/cpp/cpp_helpers.h \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 320 | google/protobuf/compiler/cpp/cpp_map_field.cc \ |
| 321 | google/protobuf/compiler/cpp/cpp_map_field.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 322 | google/protobuf/compiler/cpp/cpp_message.cc \ |
| 323 | google/protobuf/compiler/cpp/cpp_message.h \ |
| 324 | google/protobuf/compiler/cpp/cpp_message_field.cc \ |
| 325 | google/protobuf/compiler/cpp/cpp_message_field.h \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 326 | google/protobuf/compiler/cpp/cpp_options.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 327 | google/protobuf/compiler/cpp/cpp_primitive_field.cc \ |
| 328 | google/protobuf/compiler/cpp/cpp_primitive_field.h \ |
| 329 | google/protobuf/compiler/cpp/cpp_service.cc \ |
| 330 | google/protobuf/compiler/cpp/cpp_service.h \ |
| 331 | google/protobuf/compiler/cpp/cpp_string_field.cc \ |
| 332 | google/protobuf/compiler/cpp/cpp_string_field.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 333 | google/protobuf/compiler/java/java_context.cc \ |
| 334 | google/protobuf/compiler/java/java_context.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 335 | google/protobuf/compiler/java/java_enum.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 336 | google/protobuf/compiler/java/java_enum_lite.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 337 | google/protobuf/compiler/java/java_enum_field.cc \ |
| 338 | google/protobuf/compiler/java/java_enum_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 339 | google/protobuf/compiler/java/java_enum_field_lite.cc \ |
| 340 | google/protobuf/compiler/java/java_enum_field_lite.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 341 | google/protobuf/compiler/java/java_enum.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 342 | google/protobuf/compiler/java/java_enum_lite.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 343 | google/protobuf/compiler/java/java_extension.cc \ |
| 344 | google/protobuf/compiler/java/java_extension.h \ |
| 345 | google/protobuf/compiler/java/java_field.cc \ |
| 346 | google/protobuf/compiler/java/java_field.h \ |
| 347 | google/protobuf/compiler/java/java_file.cc \ |
| 348 | google/protobuf/compiler/java/java_file.h \ |
| 349 | google/protobuf/compiler/java/java_generator.cc \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 350 | google/protobuf/compiler/java/java_generator_factory.cc \ |
| 351 | google/protobuf/compiler/java/java_generator_factory.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 352 | google/protobuf/compiler/java/java_helpers.cc \ |
| 353 | google/protobuf/compiler/java/java_helpers.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 354 | google/protobuf/compiler/java/java_lazy_message_field.cc \ |
| 355 | google/protobuf/compiler/java/java_lazy_message_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 356 | google/protobuf/compiler/java/java_lazy_message_field_lite.cc\ |
| 357 | google/protobuf/compiler/java/java_lazy_message_field_lite.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 358 | google/protobuf/compiler/java/java_map_field.cc \ |
| 359 | google/protobuf/compiler/java/java_map_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 360 | google/protobuf/compiler/java/java_map_field_lite.cc \ |
| 361 | google/protobuf/compiler/java/java_map_field_lite.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 362 | google/protobuf/compiler/java/java_message.cc \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 363 | google/protobuf/compiler/java/java_message_lite.cc \ |
| 364 | google/protobuf/compiler/java/java_message_builder.cc \ |
| 365 | google/protobuf/compiler/java/java_message_builder_lite.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 366 | google/protobuf/compiler/java/java_message_field.cc \ |
| 367 | google/protobuf/compiler/java/java_message_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 368 | google/protobuf/compiler/java/java_message_field_lite.cc \ |
| 369 | google/protobuf/compiler/java/java_message_field_lite.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 370 | google/protobuf/compiler/java/java_message.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 371 | google/protobuf/compiler/java/java_message_lite.h \ |
| 372 | google/protobuf/compiler/java/java_message_builder.h \ |
| 373 | google/protobuf/compiler/java/java_message_builder_lite.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 374 | google/protobuf/compiler/java/java_name_resolver.cc \ |
| 375 | google/protobuf/compiler/java/java_name_resolver.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 376 | google/protobuf/compiler/java/java_primitive_field.cc \ |
| 377 | google/protobuf/compiler/java/java_primitive_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 378 | google/protobuf/compiler/java/java_primitive_field_lite.cc \ |
| 379 | google/protobuf/compiler/java/java_primitive_field_lite.h \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 380 | google/protobuf/compiler/java/java_shared_code_generator.cc \ |
| 381 | google/protobuf/compiler/java/java_shared_code_generator.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 382 | google/protobuf/compiler/java/java_service.cc \ |
| 383 | google/protobuf/compiler/java/java_service.h \ |
liujisi@google.com | 33165fe | 2010-11-02 13:14:58 +0000 | [diff] [blame] | 384 | google/protobuf/compiler/java/java_string_field.cc \ |
| 385 | google/protobuf/compiler/java/java_string_field.h \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 386 | google/protobuf/compiler/java/java_string_field_lite.cc \ |
| 387 | google/protobuf/compiler/java/java_string_field_lite.h \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 388 | google/protobuf/compiler/java/java_doc_comment.cc \ |
| 389 | google/protobuf/compiler/java/java_doc_comment.h \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 390 | google/protobuf/compiler/js/js_generator.cc \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 391 | google/protobuf/compiler/javanano/javanano_enum.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 392 | google/protobuf/compiler/javanano/javanano_enum.h \ |
| 393 | google/protobuf/compiler/javanano/javanano_enum_field.cc \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 394 | google/protobuf/compiler/javanano/javanano_enum_field.h \ |
| 395 | google/protobuf/compiler/javanano/javanano_extension.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 396 | google/protobuf/compiler/javanano/javanano_extension.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 397 | google/protobuf/compiler/javanano/javanano_field.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 398 | google/protobuf/compiler/javanano/javanano_field.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 399 | google/protobuf/compiler/javanano/javanano_file.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 400 | google/protobuf/compiler/javanano/javanano_file.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 401 | google/protobuf/compiler/javanano/javanano_generator.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 402 | google/protobuf/compiler/javanano/javanano_generator.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 403 | google/protobuf/compiler/javanano/javanano_helpers.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 404 | google/protobuf/compiler/javanano/javanano_helpers.h \ |
| 405 | google/protobuf/compiler/javanano/javanano_map_field.cc \ |
| 406 | google/protobuf/compiler/javanano/javanano_map_field.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 407 | google/protobuf/compiler/javanano/javanano_message.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 408 | google/protobuf/compiler/javanano/javanano_message.h \ |
| 409 | google/protobuf/compiler/javanano/javanano_message_field.cc \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 410 | google/protobuf/compiler/javanano/javanano_message_field.h \ |
| 411 | google/protobuf/compiler/javanano/javanano_params.h \ |
Jisi Liu | e9bbfbc | 2014-11-25 14:47:04 -0800 | [diff] [blame] | 412 | google/protobuf/compiler/javanano/javanano_primitive_field.cc \ |
Jisi Liu | dce8165 | 2015-01-30 16:14:15 -0800 | [diff] [blame] | 413 | google/protobuf/compiler/javanano/javanano_primitive_field.h \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 414 | google/protobuf/compiler/objectivec/objectivec_enum.cc \ |
| 415 | google/protobuf/compiler/objectivec/objectivec_enum.h \ |
| 416 | google/protobuf/compiler/objectivec/objectivec_enum_field.cc \ |
| 417 | google/protobuf/compiler/objectivec/objectivec_enum_field.h \ |
| 418 | google/protobuf/compiler/objectivec/objectivec_extension.cc \ |
| 419 | google/protobuf/compiler/objectivec/objectivec_extension.h \ |
| 420 | google/protobuf/compiler/objectivec/objectivec_field.cc \ |
| 421 | google/protobuf/compiler/objectivec/objectivec_field.h \ |
| 422 | google/protobuf/compiler/objectivec/objectivec_file.cc \ |
| 423 | google/protobuf/compiler/objectivec/objectivec_file.h \ |
| 424 | google/protobuf/compiler/objectivec/objectivec_generator.cc \ |
| 425 | google/protobuf/compiler/objectivec/objectivec_helpers.cc \ |
| 426 | google/protobuf/compiler/objectivec/objectivec_helpers.h \ |
| 427 | google/protobuf/compiler/objectivec/objectivec_map_field.cc \ |
| 428 | google/protobuf/compiler/objectivec/objectivec_map_field.h \ |
| 429 | google/protobuf/compiler/objectivec/objectivec_message.cc \ |
| 430 | google/protobuf/compiler/objectivec/objectivec_message.h \ |
| 431 | google/protobuf/compiler/objectivec/objectivec_message_field.cc \ |
| 432 | google/protobuf/compiler/objectivec/objectivec_message_field.h \ |
| 433 | google/protobuf/compiler/objectivec/objectivec_oneof.cc \ |
| 434 | google/protobuf/compiler/objectivec/objectivec_oneof.h \ |
| 435 | google/protobuf/compiler/objectivec/objectivec_primitive_field.cc \ |
| 436 | google/protobuf/compiler/objectivec/objectivec_primitive_field.h \ |
Chris Fallin | 973f425 | 2014-11-18 14:19:58 -0800 | [diff] [blame] | 437 | google/protobuf/compiler/python/python_generator.cc \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 438 | google/protobuf/compiler/ruby/ruby_generator.cc \ |
Jon Skeet | 67dd42c | 2015-10-01 10:36:58 +0100 | [diff] [blame] | 439 | google/protobuf/compiler/csharp/csharp_doc_comment.cc \ |
| 440 | google/protobuf/compiler/csharp/csharp_doc_comment.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 441 | google/protobuf/compiler/csharp/csharp_enum.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 442 | google/protobuf/compiler/csharp/csharp_enum.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 443 | google/protobuf/compiler/csharp/csharp_enum_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 444 | google/protobuf/compiler/csharp/csharp_enum_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 445 | google/protobuf/compiler/csharp/csharp_field_base.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 446 | google/protobuf/compiler/csharp/csharp_field_base.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 447 | google/protobuf/compiler/csharp/csharp_generator.cc \ |
| 448 | google/protobuf/compiler/csharp/csharp_helpers.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 449 | google/protobuf/compiler/csharp/csharp_helpers.h \ |
Jon Skeet | 0d684d3 | 2015-06-24 17:21:55 +0100 | [diff] [blame] | 450 | google/protobuf/compiler/csharp/csharp_map_field.cc \ |
| 451 | google/protobuf/compiler/csharp/csharp_map_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 452 | google/protobuf/compiler/csharp/csharp_message.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 453 | google/protobuf/compiler/csharp/csharp_message.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 454 | google/protobuf/compiler/csharp/csharp_message_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 455 | google/protobuf/compiler/csharp/csharp_message_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 456 | google/protobuf/compiler/csharp/csharp_primitive_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 457 | google/protobuf/compiler/csharp/csharp_primitive_field.h \ |
Jon Skeet | a6361a1 | 2015-11-19 13:05:17 +0000 | [diff] [blame] | 458 | google/protobuf/compiler/csharp/csharp_reflection_class.cc \ |
| 459 | google/protobuf/compiler/csharp/csharp_reflection_class.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 460 | google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 461 | google/protobuf/compiler/csharp/csharp_repeated_enum_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 462 | google/protobuf/compiler/csharp/csharp_repeated_message_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 463 | google/protobuf/compiler/csharp/csharp_repeated_message_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 464 | google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 465 | google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 466 | google/protobuf/compiler/csharp/csharp_source_generator_base.cc \ |
Jan Tattermusch | 7eaf438 | 2015-04-17 16:51:43 -0700 | [diff] [blame] | 467 | google/protobuf/compiler/csharp/csharp_source_generator_base.h \ |
Jon Skeet | b2ac868 | 2015-07-15 13:17:42 +0100 | [diff] [blame] | 468 | google/protobuf/compiler/csharp/csharp_wrapper_field.cc \ |
| 469 | google/protobuf/compiler/csharp/csharp_wrapper_field.h |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 470 | |
| 471 | bin_PROGRAMS = protoc |
| 472 | protoc_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la |
| 473 | protoc_SOURCES = google/protobuf/compiler/main.cc |
| 474 | |
| 475 | # Tests ============================================================== |
| 476 | |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 477 | protoc_inputs = \ |
| 478 | google/protobuf/any_test.proto \ |
| 479 | google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto \ |
| 480 | google/protobuf/map_lite_unittest.proto \ |
| 481 | google/protobuf/map_proto2_unittest.proto \ |
| 482 | google/protobuf/map_unittest.proto \ |
| 483 | google/protobuf/unittest_arena.proto \ |
| 484 | google/protobuf/unittest_custom_options.proto \ |
| 485 | google/protobuf/unittest_drop_unknown_fields.proto \ |
| 486 | google/protobuf/unittest_embed_optimize_for.proto \ |
| 487 | google/protobuf/unittest_empty.proto \ |
| 488 | google/protobuf/unittest_enormous_descriptor.proto \ |
| 489 | google/protobuf/unittest_import_lite.proto \ |
| 490 | google/protobuf/unittest_import.proto \ |
| 491 | google/protobuf/unittest_import_public_lite.proto \ |
| 492 | google/protobuf/unittest_import_public.proto \ |
| 493 | google/protobuf/unittest_lite_imports_nonlite.proto \ |
| 494 | google/protobuf/unittest_lite.proto \ |
| 495 | google/protobuf/unittest_mset.proto \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 496 | google/protobuf/unittest_mset_wire_format.proto \ |
| 497 | google/protobuf/unittest_no_arena_lite.proto \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 498 | google/protobuf/unittest_no_arena_import.proto \ |
| 499 | google/protobuf/unittest_no_arena.proto \ |
| 500 | google/protobuf/unittest_no_field_presence.proto \ |
| 501 | google/protobuf/unittest_no_generic_services.proto \ |
| 502 | google/protobuf/unittest_optimize_for.proto \ |
| 503 | google/protobuf/unittest_preserve_unknown_enum2.proto \ |
| 504 | google/protobuf/unittest_preserve_unknown_enum.proto \ |
| 505 | google/protobuf/unittest.proto \ |
| 506 | google/protobuf/unittest_proto3_arena.proto \ |
| 507 | google/protobuf/unittest_well_known_types.proto \ |
| 508 | google/protobuf/util/internal/testdata/anys.proto \ |
| 509 | google/protobuf/util/internal/testdata/books.proto \ |
| 510 | google/protobuf/util/internal/testdata/default_value.proto \ |
| 511 | google/protobuf/util/internal/testdata/default_value_test.proto \ |
| 512 | google/protobuf/util/internal/testdata/field_mask.proto \ |
| 513 | google/protobuf/util/internal/testdata/maps.proto \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 514 | google/protobuf/util/internal/testdata/oneofs.proto \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 515 | google/protobuf/util/internal/testdata/struct.proto \ |
| 516 | google/protobuf/util/internal/testdata/timestamp_duration.proto \ |
| 517 | google/protobuf/util/json_format_proto3.proto \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame^] | 518 | google/protobuf/util/message_differencer_unittest.proto \ |
Tamir Duberstein | 53bee66 | 2015-03-31 10:19:05 -0700 | [diff] [blame] | 519 | google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 520 | |
| 521 | EXTRA_DIST = \ |
| 522 | $(protoc_inputs) \ |
| 523 | solaris/libstdc++.la \ |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 524 | google/protobuf/io/gzip_stream.h \ |
| 525 | google/protobuf/io/gzip_stream_unittest.sh \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 526 | google/protobuf/testdata/golden_message \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 527 | google/protobuf/testdata/golden_message_oneof_implemented \ |
Josh Haberman | 0b70a43 | 2015-02-25 20:17:32 -0800 | [diff] [blame] | 528 | google/protobuf/testdata/golden_message_proto3 \ |
kenton@google.com | 2d6daa7 | 2009-01-22 01:27:00 +0000 | [diff] [blame] | 529 | google/protobuf/testdata/golden_packed_fields_message \ |
jieluo@google.com | e61b513 | 2014-08-14 21:51:48 +0000 | [diff] [blame] | 530 | google/protobuf/testdata/bad_utf8_string \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 531 | google/protobuf/testdata/map_test_data.txt \ |
jieluo@google.com | e61b513 | 2014-08-14 21:51:48 +0000 | [diff] [blame] | 532 | google/protobuf/testdata/text_format_unittest_data.txt \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 533 | google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 534 | google/protobuf/testdata/text_format_unittest_data_pointy.txt \ |
jieluo@google.com | e61b513 | 2014-08-14 21:51:48 +0000 | [diff] [blame] | 535 | google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 536 | google/protobuf/testdata/text_format_unittest_extensions_data.txt \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 537 | google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 538 | google/protobuf/package_info.h \ |
| 539 | google/protobuf/io/package_info.h \ |
Bo Yang | a9332e2 | 2015-05-25 16:04:36 -0700 | [diff] [blame] | 540 | google/protobuf/compiler/ruby/ruby_generated_code.proto \ |
| 541 | google/protobuf/compiler/ruby/ruby_generated_code.rb \ |
kenton@google.com | 8aae2a2 | 2009-08-11 00:23:25 +0000 | [diff] [blame] | 542 | google/protobuf/compiler/package_info.h \ |
Qartar | 2fe6d7b | 2015-06-07 14:22:51 -0700 | [diff] [blame] | 543 | google/protobuf/compiler/zip_output_unittest.sh |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 544 | |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 545 | protoc_lite_outputs = \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 546 | google/protobuf/map_lite_unittest.pb.cc \ |
| 547 | google/protobuf/map_lite_unittest.pb.h \ |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 548 | google/protobuf/unittest_lite.pb.cc \ |
| 549 | google/protobuf/unittest_lite.pb.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 550 | google/protobuf/unittest_no_arena_lite.pb.cc \ |
| 551 | google/protobuf/unittest_no_arena_lite.pb.h \ |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 552 | google/protobuf/unittest_import_lite.pb.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 553 | google/protobuf/unittest_import_lite.pb.h \ |
| 554 | google/protobuf/unittest_import_public_lite.pb.cc \ |
| 555 | google/protobuf/unittest_import_public_lite.pb.h |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 556 | |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 557 | protoc_outputs = \ |
| 558 | $(protoc_lite_outputs) \ |
| 559 | google/protobuf/any_test.pb.cc \ |
| 560 | google/protobuf/any_test.pb.h \ |
| 561 | google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.cc \ |
| 562 | google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h \ |
| 563 | google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.cc \ |
| 564 | google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.h \ |
| 565 | google/protobuf/map_proto2_unittest.pb.cc \ |
| 566 | google/protobuf/map_proto2_unittest.pb.h \ |
| 567 | google/protobuf/map_unittest.pb.cc \ |
| 568 | google/protobuf/map_unittest.pb.h \ |
| 569 | google/protobuf/unittest_arena.pb.cc \ |
| 570 | google/protobuf/unittest_arena.pb.h \ |
| 571 | google/protobuf/unittest_custom_options.pb.cc \ |
| 572 | google/protobuf/unittest_custom_options.pb.h \ |
| 573 | google/protobuf/unittest_drop_unknown_fields.pb.cc \ |
| 574 | google/protobuf/unittest_drop_unknown_fields.pb.h \ |
| 575 | google/protobuf/unittest_embed_optimize_for.pb.cc \ |
| 576 | google/protobuf/unittest_embed_optimize_for.pb.h \ |
| 577 | google/protobuf/unittest_empty.pb.cc \ |
| 578 | google/protobuf/unittest_empty.pb.h \ |
| 579 | google/protobuf/unittest_enormous_descriptor.pb.cc \ |
| 580 | google/protobuf/unittest_enormous_descriptor.pb.h \ |
| 581 | google/protobuf/unittest_import.pb.cc \ |
| 582 | google/protobuf/unittest_import.pb.h \ |
| 583 | google/protobuf/unittest_import_public.pb.cc \ |
| 584 | google/protobuf/unittest_import_public.pb.h \ |
| 585 | google/protobuf/unittest_lite_imports_nonlite.pb.cc \ |
| 586 | google/protobuf/unittest_lite_imports_nonlite.pb.h \ |
| 587 | google/protobuf/unittest_mset.pb.cc \ |
| 588 | google/protobuf/unittest_mset.pb.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 589 | google/protobuf/unittest_mset_wire_format.pb.cc \ |
| 590 | google/protobuf/unittest_mset_wire_format.pb.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 591 | google/protobuf/unittest_no_arena_import.pb.cc \ |
| 592 | google/protobuf/unittest_no_arena_import.pb.h \ |
| 593 | google/protobuf/unittest_no_arena.pb.cc \ |
| 594 | google/protobuf/unittest_no_arena.pb.h \ |
| 595 | google/protobuf/unittest_no_field_presence.pb.cc \ |
| 596 | google/protobuf/unittest_no_field_presence.pb.h \ |
| 597 | google/protobuf/unittest_no_generic_services.pb.cc \ |
| 598 | google/protobuf/unittest_no_generic_services.pb.h \ |
| 599 | google/protobuf/unittest_optimize_for.pb.cc \ |
| 600 | google/protobuf/unittest_optimize_for.pb.h \ |
| 601 | google/protobuf/unittest.pb.cc \ |
| 602 | google/protobuf/unittest.pb.h \ |
| 603 | google/protobuf/unittest_preserve_unknown_enum2.pb.cc \ |
| 604 | google/protobuf/unittest_preserve_unknown_enum2.pb.h \ |
| 605 | google/protobuf/unittest_preserve_unknown_enum.pb.cc \ |
| 606 | google/protobuf/unittest_preserve_unknown_enum.pb.h \ |
| 607 | google/protobuf/unittest_proto3_arena.pb.cc \ |
| 608 | google/protobuf/unittest_proto3_arena.pb.h \ |
| 609 | google/protobuf/unittest_well_known_types.pb.cc \ |
| 610 | google/protobuf/unittest_well_known_types.pb.h \ |
| 611 | google/protobuf/util/internal/testdata/anys.pb.cc \ |
| 612 | google/protobuf/util/internal/testdata/anys.pb.h \ |
| 613 | google/protobuf/util/internal/testdata/books.pb.cc \ |
| 614 | google/protobuf/util/internal/testdata/books.pb.h \ |
| 615 | google/protobuf/util/internal/testdata/default_value.pb.cc \ |
| 616 | google/protobuf/util/internal/testdata/default_value.pb.h \ |
| 617 | google/protobuf/util/internal/testdata/default_value_test.pb.cc \ |
| 618 | google/protobuf/util/internal/testdata/default_value_test.pb.h \ |
| 619 | google/protobuf/util/internal/testdata/field_mask.pb.cc \ |
| 620 | google/protobuf/util/internal/testdata/field_mask.pb.h \ |
| 621 | google/protobuf/util/internal/testdata/maps.pb.cc \ |
| 622 | google/protobuf/util/internal/testdata/maps.pb.h \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 623 | google/protobuf/util/internal/testdata/oneofs.pb.cc \ |
| 624 | google/protobuf/util/internal/testdata/oneofs.pb.h \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 625 | google/protobuf/util/internal/testdata/struct.pb.cc \ |
| 626 | google/protobuf/util/internal/testdata/struct.pb.h \ |
| 627 | google/protobuf/util/internal/testdata/timestamp_duration.pb.cc \ |
| 628 | google/protobuf/util/internal/testdata/timestamp_duration.pb.h \ |
| 629 | google/protobuf/util/json_format_proto3.pb.cc \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame^] | 630 | google/protobuf/util/json_format_proto3.pb.h \ |
| 631 | google/protobuf/util/message_differencer_unittest.pb.cc \ |
| 632 | google/protobuf/util/message_differencer_unittest.pb.h |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 633 | |
Jisi Liu | f48dca5 | 2015-06-12 15:49:21 -0700 | [diff] [blame] | 634 | BUILT_SOURCES = $(protoc_outputs) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 635 | |
kenton@google.com | 9824eda | 2009-05-06 17:49:37 +0000 | [diff] [blame] | 636 | if USE_EXTERNAL_PROTOC |
| 637 | |
| 638 | unittest_proto_middleman: $(protoc_inputs) |
kenton@google.com | 721995d | 2009-09-11 22:08:40 +0000 | [diff] [blame] | 639 | $(PROTOC) -I$(srcdir) --cpp_out=. $^ |
kenton@google.com | 9824eda | 2009-05-06 17:49:37 +0000 | [diff] [blame] | 640 | touch unittest_proto_middleman |
| 641 | |
| 642 | else |
| 643 | |
kenton@google.com | 38fcd39 | 2010-01-08 04:48:19 +0000 | [diff] [blame] | 644 | # We have to cd to $(srcdir) before executing protoc because $(protoc_inputs) is |
| 645 | # relative to srcdir, which may not be the same as the current directory when |
| 646 | # building out-of-tree. |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 647 | unittest_proto_middleman: protoc$(EXEEXT) $(protoc_inputs) |
kenton@google.com | 38fcd39 | 2010-01-08 04:48:19 +0000 | [diff] [blame] | 648 | oldpwd=`pwd` && ( cd $(srcdir) && $$oldpwd/protoc$(EXEEXT) -I. --cpp_out=$$oldpwd $(protoc_inputs) ) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 649 | touch unittest_proto_middleman |
| 650 | |
kenton@google.com | 9824eda | 2009-05-06 17:49:37 +0000 | [diff] [blame] | 651 | endif |
| 652 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 653 | $(protoc_outputs): unittest_proto_middleman |
| 654 | |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 655 | COMMON_TEST_SOURCES = \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 656 | google/protobuf/arena_test_util.cc \ |
| 657 | google/protobuf/arena_test_util.h \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 658 | google/protobuf/map_test_util.cc \ |
| 659 | google/protobuf/map_test_util.h \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 660 | google/protobuf/map_test_util_impl.h \ |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 661 | google/protobuf/test_util.cc \ |
| 662 | google/protobuf/test_util.h \ |
| 663 | google/protobuf/testing/googletest.cc \ |
| 664 | google/protobuf/testing/googletest.h \ |
| 665 | google/protobuf/testing/file.cc \ |
| 666 | google/protobuf/testing/file.h |
| 667 | |
kenton@google.com | d2fcbba | 2010-01-04 19:47:18 +0000 | [diff] [blame] | 668 | check_PROGRAMS = protoc protobuf-test protobuf-lazy-descriptor-test \ |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 669 | protobuf-lite-test test_plugin protobuf-lite-arena-test \ |
| 670 | $(GZCHECKPROGRAMS) |
kenton@google.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 671 | protobuf_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 672 | ../gmock/gtest/lib/libgtest.la \ |
| 673 | ../gmock/lib/libgmock.la \ |
| 674 | ../gmock/lib/libgmock_main.la |
| 675 | protobuf_test_CPPFLAGS = -I$(srcdir)/../gmock/gtest/include \ |
| 676 | -I$(srcdir)/../gmock/include |
kenton@google.com | 42c81e1 | 2009-05-06 01:15:06 +0000 | [diff] [blame] | 677 | # Disable optimization for tests unless the user explicitly asked for it, |
| 678 | # since test_util.cc takes forever to compile with optimization (with GCC). |
| 679 | # See configure.ac for more info. |
| 680 | protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 681 | protobuf_test_SOURCES = \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 682 | google/protobuf/stubs/bytestream_unittest.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 683 | google/protobuf/stubs/common_unittest.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 684 | google/protobuf/stubs/int128_unittest.cc \ |
kenton@google.com | d37d46d | 2009-04-25 02:53:47 +0000 | [diff] [blame] | 685 | google/protobuf/stubs/once_unittest.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 686 | google/protobuf/stubs/statusor_test.cc \ |
| 687 | google/protobuf/stubs/status_test.cc \ |
| 688 | google/protobuf/stubs/stringpiece_unittest.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 689 | google/protobuf/stubs/stringprintf_unittest.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 690 | google/protobuf/stubs/structurally_valid_unittest.cc \ |
| 691 | google/protobuf/stubs/strutil_unittest.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 692 | google/protobuf/stubs/template_util_unittest.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 693 | google/protobuf/stubs/time_test.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 694 | google/protobuf/stubs/type_traits_unittest.cc \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 695 | google/protobuf/any_test.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 696 | google/protobuf/arenastring_unittest.cc \ |
| 697 | google/protobuf/arena_unittest.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 698 | google/protobuf/descriptor_database_unittest.cc \ |
| 699 | google/protobuf/descriptor_unittest.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 700 | google/protobuf/drop_unknown_fields_test.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 701 | google/protobuf/dynamic_message_unittest.cc \ |
| 702 | google/protobuf/extension_set_unittest.cc \ |
| 703 | google/protobuf/generated_message_reflection_unittest.cc \ |
Feng Xiao | f157a56 | 2014-11-14 11:50:31 -0800 | [diff] [blame] | 704 | google/protobuf/map_field_test.cc \ |
| 705 | google/protobuf/map_test.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 706 | google/protobuf/message_unittest.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 707 | google/protobuf/no_field_presence_test.cc \ |
| 708 | google/protobuf/preserve_unknown_enum_test.cc \ |
| 709 | google/protobuf/proto3_arena_unittest.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 710 | google/protobuf/reflection_ops_unittest.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 711 | google/protobuf/repeated_field_reflection_unittest.cc \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 712 | google/protobuf/repeated_field_unittest.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 713 | google/protobuf/text_format_unittest.cc \ |
| 714 | google/protobuf/unknown_field_set_unittest.cc \ |
Feng Xiao | 33c9280 | 2015-05-11 13:47:41 -0700 | [diff] [blame] | 715 | google/protobuf/well_known_types_unittest.cc \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 716 | google/protobuf/wire_format_unittest.cc \ |
| 717 | google/protobuf/io/coded_stream_unittest.cc \ |
| 718 | google/protobuf/io/printer_unittest.cc \ |
| 719 | google/protobuf/io/tokenizer_unittest.cc \ |
| 720 | google/protobuf/io/zero_copy_stream_unittest.cc \ |
| 721 | google/protobuf/compiler/command_line_interface_unittest.cc \ |
| 722 | google/protobuf/compiler/importer_unittest.cc \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 723 | google/protobuf/compiler/mock_code_generator.cc \ |
| 724 | google/protobuf/compiler/mock_code_generator.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 725 | google/protobuf/compiler/parser_unittest.cc \ |
| 726 | google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 727 | google/protobuf/compiler/cpp/cpp_unittest.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 728 | google/protobuf/compiler/cpp/cpp_unittest.cc \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 729 | google/protobuf/compiler/cpp/cpp_plugin_unittest.cc \ |
| 730 | google/protobuf/compiler/java/java_plugin_unittest.cc \ |
xiaofeng@google.com | b55a20f | 2012-09-22 02:40:50 +0000 | [diff] [blame] | 731 | google/protobuf/compiler/java/java_doc_comment_unittest.cc \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 732 | google/protobuf/compiler/objectivec/objectivec_helpers_unittest.cc \ |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 733 | google/protobuf/compiler/python/python_plugin_unittest.cc \ |
Chris Fallin | 3f3820d | 2015-01-14 15:44:46 -0800 | [diff] [blame] | 734 | google/protobuf/compiler/ruby/ruby_generator_unittest.cc \ |
Jan Tattermusch | 685ae36 | 2015-03-16 19:07:16 -0700 | [diff] [blame] | 735 | google/protobuf/compiler/csharp/csharp_generator_unittest.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 736 | google/protobuf/util/field_comparator_test.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 737 | google/protobuf/util/field_mask_util_test.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 738 | google/protobuf/util/internal/default_value_objectwriter_test.cc \ |
| 739 | google/protobuf/util/internal/json_objectwriter_test.cc \ |
| 740 | google/protobuf/util/internal/json_stream_parser_test.cc \ |
| 741 | google/protobuf/util/internal/protostream_objectsource_test.cc \ |
| 742 | google/protobuf/util/internal/protostream_objectwriter_test.cc \ |
| 743 | google/protobuf/util/internal/type_info_test_helper.cc \ |
| 744 | google/protobuf/util/json_util_test.cc \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame^] | 745 | google/protobuf/util/message_differencer_unittest.cc \ |
Jisi Liu | b0f6611 | 2015-08-21 11:18:45 -0700 | [diff] [blame] | 746 | google/protobuf/util/time_util_test.cc \ |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 747 | google/protobuf/util/type_resolver_util_test.cc \ |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 748 | $(COMMON_TEST_SOURCES) |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 749 | |
| 750 | |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 751 | nodist_protobuf_test_SOURCES = $(protoc_outputs) |
| 752 | |
| 753 | # Run cpp_unittest again with PROTOBUF_TEST_NO_DESCRIPTORS defined. |
| 754 | protobuf_lazy_descriptor_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la \ |
jieluo@google.com | 4de8f55 | 2014-07-18 00:47:59 +0000 | [diff] [blame] | 755 | libprotoc.la \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 756 | ../gmock/gtest/lib/libgtest.la \ |
| 757 | ../gmock/lib/libgmock.la \ |
| 758 | ../gmock/lib/libgmock_main.la |
| 759 | protobuf_lazy_descriptor_test_CPPFLAGS = -I$(srcdir)/../gmock/include \ |
| 760 | -I$(srcdir)/../gmock/gtest/include \ |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 761 | -DPROTOBUF_TEST_NO_DESCRIPTORS |
kenton@google.com | 4f3491e | 2009-07-29 21:33:08 +0000 | [diff] [blame] | 762 | protobuf_lazy_descriptor_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) |
kenton@google.com | c5ff06c | 2009-04-28 03:06:41 +0000 | [diff] [blame] | 763 | protobuf_lazy_descriptor_test_SOURCES = \ |
| 764 | google/protobuf/compiler/cpp/cpp_unittest.cc \ |
| 765 | $(COMMON_TEST_SOURCES) |
| 766 | nodist_protobuf_lazy_descriptor_test_SOURCES = $(protoc_outputs) |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 767 | |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 768 | COMMON_LITE_TEST_SOURCES = \ |
Bo Yang | 5db2173 | 2015-05-21 14:28:59 -0700 | [diff] [blame] | 769 | google/protobuf/arena_test_util.cc \ |
| 770 | google/protobuf/arena_test_util.h \ |
Jisi Liu | 885b612 | 2015-02-28 14:51:22 -0800 | [diff] [blame] | 771 | google/protobuf/map_lite_test_util.cc \ |
| 772 | google/protobuf/map_lite_test_util.h \ |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 773 | google/protobuf/test_util_lite.cc \ |
| 774 | google/protobuf/test_util_lite.h |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 775 | |
| 776 | # Build lite_unittest separately, since it doesn't use gtest. It can't |
| 777 | # depend on gtest because our internal version of gtest depend on proto |
| 778 | # full runtime and we want to make sure this test builds without full |
| 779 | # runtime. |
| 780 | protobuf_lite_test_LDADD = $(PTHREAD_LIBS) libprotobuf-lite.la |
| 781 | protobuf_lite_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) |
| 782 | protobuf_lite_test_SOURCES = \ |
| 783 | google/protobuf/lite_unittest.cc \ |
| 784 | $(COMMON_LITE_TEST_SOURCES) |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 785 | nodist_protobuf_lite_test_SOURCES = $(protoc_lite_outputs) |
| 786 | |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 787 | # lite_arena_unittest depends on gtest because teboring@ found that without |
| 788 | # gtest when building the test internally our memory sanitizer doesn't detect |
| 789 | # memory leaks (don't know why). |
| 790 | protobuf_lite_arena_test_LDADD = $(PTHREAD_LIBS) libprotobuf-lite.la \ |
| 791 | ../gmock/gtest/lib/libgtest.la \ |
| 792 | ../gmock/lib/libgmock.la \ |
| 793 | ../gmock/lib/libgmock_main.la |
| 794 | protobuf_lite_arena_test_CPPFLAGS = -I$(srcdir)/../gmock/include \ |
| 795 | -I$(srcdir)/../gmock/gtest/include |
| 796 | protobuf_lite_arena_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) |
| 797 | protobuf_lite_arena_test_SOURCES = \ |
| 798 | google/protobuf/lite_arena_unittest.cc \ |
| 799 | $(COMMON_LITE_TEST_SOURCES) |
| 800 | nodist_protobuf_lite_arena_test_SOURCES = $(protoc_lite_outputs) |
| 801 | |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 802 | # Test plugin binary. |
| 803 | test_plugin_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \ |
Feng Xiao | 818c5ee | 2015-06-15 21:42:57 -0700 | [diff] [blame] | 804 | ../gmock/gtest/lib/libgtest.la |
| 805 | test_plugin_CPPFLAGS = -I$(srcdir)/../gmock/gtest/include |
kenton@google.com | fccb146 | 2009-12-18 02:11:36 +0000 | [diff] [blame] | 806 | test_plugin_SOURCES = \ |
| 807 | google/protobuf/compiler/mock_code_generator.cc \ |
| 808 | google/protobuf/testing/file.cc \ |
| 809 | google/protobuf/testing/file.h \ |
| 810 | google/protobuf/compiler/test_plugin.cc |
| 811 | |
kenton@google.com | e59427a | 2009-04-16 22:30:56 +0000 | [diff] [blame] | 812 | if HAVE_ZLIB |
| 813 | zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la |
| 814 | zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc |
| 815 | |
| 816 | zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la |
| 817 | zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc |
| 818 | endif |
| 819 | |
kenton@google.com | d2fcbba | 2010-01-04 19:47:18 +0000 | [diff] [blame] | 820 | TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \ |
Feng Xiao | b17ec3c | 2015-08-23 17:50:38 -0700 | [diff] [blame] | 821 | google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS) \ |
| 822 | protobuf-lite-arena-test |