benchmarks_protoc_inputs = \ benchmarks.proto \ datasets/google_message1/benchmark_message1_proto3.proto benchmarks_protoc_inputs_proto2 = \ datasets/google_message1/benchmark_message1_proto2.proto \ datasets/google_message2/benchmark_message2.proto \ datasets/google_message3/benchmark_message3.proto \ datasets/google_message3/benchmark_message3_1.proto \ datasets/google_message3/benchmark_message3_2.proto \ datasets/google_message3/benchmark_message3_3.proto \ datasets/google_message3/benchmark_message3_4.proto \ datasets/google_message3/benchmark_message3_5.proto \ datasets/google_message3/benchmark_message3_6.proto \ datasets/google_message3/benchmark_message3_7.proto \ datasets/google_message3/benchmark_message3_8.proto \ datasets/google_message4/benchmark_message4.proto \ datasets/google_message4/benchmark_message4_1.proto \ datasets/google_message4/benchmark_message4_2.proto \ datasets/google_message4/benchmark_message4_3.proto make_tmp_dir: mkdir -p 'tmp/java/src/main/java' touch make_tmp_dir if USE_EXTERNAL_PROTOC protoc_middleman: make_tmp_dir $(benchmarks_protoc_inputs) $(PROTOC) -I$(srcdir) -I$(top_srcdir) --cpp_out=. --java_out=./tmp $(benchmarks_protoc_inputs) touch protoc_middleman protoc_middleman2: make_tmp_dir $(benchmarks_protoc_inputs_proto2) $(PROTOC) -I$(srcdir) -I$(top_srcdir) --cpp_out=. --java_out=./tmp $(benchmarks_protoc_inputs_proto2) touch protoc_middleman2 else # We have to cd to $(srcdir) before executing protoc because $(protoc_inputs) is # relative to srcdir, which may not be the same as the current directory when # building out-of-tree. protoc_middleman: make_tmp_dir $(top_srcdir)/src/protoc$(EXEEXT) $(benchmarks_protoc_inputs) $(well_known_type_protoc_inputs) oldpwd=`pwd` && ( cd $(srcdir) && $$oldpwd/../src/protoc$(EXEEXT) -I. -I$(top_srcdir)/src --cpp_out=$$oldpwd --java_out=$$oldpwd/tmp/java/src/main/java $(benchmarks_protoc_inputs) ) touch protoc_middleman protoc_middleman2: make_tmp_dir $(top_srcdir)/src/protoc$(EXEEXT) $(benchmarks_protoc_inputs_proto2) $(well_known_type_protoc_inputs) oldpwd=`pwd` && ( cd $(srcdir) && $$oldpwd/../src/protoc$(EXEEXT) -I. -I$(top_srcdir)/src --cpp_out=$$oldpwd --java_out=$$oldpwd/tmp/java/src/main/java $(benchmarks_protoc_inputs_proto2) ) touch protoc_middleman2 endif all_data = `find . -type f -name "dataset.*.pb"` ############# CPP RULES ############## benchmarks_protoc_outputs = \ benchmarks.pb.cc \ datasets/google_message1/benchmark_message1_proto3.pb.cc benchmarks_protoc_outputs_header = \ benchmarks.pb.h \ datasets/google_message1/benchmark_message1_proto3.pb.h benchmarks_protoc_outputs_proto2_header = \ datasets/google_message1/benchmark_message1_proto2.pb.h \ datasets/google_message2/benchmark_message2.pb.h \ datasets/google_message3/benchmark_message3.pb.h \ datasets/google_message3/benchmark_message3_1.pb.h \ datasets/google_message3/benchmark_message3_2.pb.h \ datasets/google_message3/benchmark_message3_3.pb.h \ datasets/google_message3/benchmark_message3_4.pb.h \ datasets/google_message3/benchmark_message3_5.pb.h \ datasets/google_message3/benchmark_message3_6.pb.h \ datasets/google_message3/benchmark_message3_7.pb.h \ datasets/google_message3/benchmark_message3_8.pb.h \ datasets/google_message4/benchmark_message4.pb.h \ datasets/google_message4/benchmark_message4_1.pb.h \ datasets/google_message4/benchmark_message4_2.pb.h \ datasets/google_message4/benchmark_message4_3.pb.h benchmarks_protoc_outputs_proto2 = \ datasets/google_message1/benchmark_message1_proto2.pb.cc \ datasets/google_message2/benchmark_message2.pb.cc \ datasets/google_message3/benchmark_message3.pb.cc \ datasets/google_message3/benchmark_message3_1.pb.cc \ datasets/google_message3/benchmark_message3_2.pb.cc \ datasets/google_message3/benchmark_message3_3.pb.cc \ datasets/google_message3/benchmark_message3_4.pb.cc \ datasets/google_message3/benchmark_message3_5.pb.cc \ datasets/google_message3/benchmark_message3_6.pb.cc \ datasets/google_message3/benchmark_message3_7.pb.cc \ datasets/google_message3/benchmark_message3_8.pb.cc \ datasets/google_message4/benchmark_message4.pb.cc \ datasets/google_message4/benchmark_message4_1.pb.cc \ datasets/google_message4/benchmark_message4_2.pb.cc \ datasets/google_message4/benchmark_message4_3.pb.cc $(benchmarks_protoc_outputs): protoc_middleman $(benchmarks_protoc_outputs_header): protoc_middleman $(benchmarks_protoc_outputs_proto2): protoc_middleman2 $(benchmarks_protoc_outputs_proto2_header): protoc_middleman2 AM_CXXFLAGS = $(NO_OPT_CXXFLAGS) $(PROTOBUF_OPT_FLAG) -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compare bin_PROGRAMS = cpp-benchmark cpp_benchmark_LDADD = $(top_srcdir)/src/libprotobuf.la $(top_srcdir)/third_party/benchmark/src/libbenchmark.a cpp_benchmark_SOURCES = cpp_benchmark.cc cpp_benchmark_CPPFLAGS = -I$(top_srcdir)/src -I$(srcdir) -I$(top_srcdir)/third_party/benchmark/include # Explicit deps because BUILT_SOURCES are only done before a "make all/check" # so a direct "make test_cpp" could fail if parallel enough. # See: https://www.gnu.org/software/automake/manual/html_node/Built-Sources-Example.html#Recording-Dependencies-manually cpp_benchmark-cpp_benchmark.$(OBJEXT): $(benchmarks_protoc_outputs) $(benchmarks_protoc_outputs_proto2) $(benchmarks_protoc_outputs_header) $(benchmarks_protoc_outputs_proto2_header) nodist_cpp_benchmark_SOURCES = \ $(benchmarks_protoc_outputs) \ $(benchmarks_protoc_outputs_proto2) \ $(benchmarks_protoc_outputs_proto2_header) \ $(benchmarks_protoc_outputs_header) cpp: protoc_middleman protoc_middleman2 cpp-benchmark ./cpp-benchmark $(all_data) ############ CPP RULES END ############ ############# JAVA RULES ############## java_benchmark_testing_files = java/src/main/java/com/google/protocolbuffers/ProtoBench.java \ java/src/main/java/com/google/protocolbuffers/ProtoBenchCaliper.java javac_middleman: $(java_benchmark_testing_files) protoc_middleman protoc_middleman2 cp -r java tmp && cd tmp/java && mvn clean compile assembly:single cd ../.. @touch javac_middleman java-benchmark: javac_middleman @echo "Writing shortcut script java-benchmark..." @echo '#! /bin/sh' > java-benchmark @echo 'java -cp '"tmp/java/target/*.jar"' com.google.protocolbuffers.ProtoBench $$@' >> java-benchmark @chmod +x java-benchmark java: protoc_middleman protoc_middleman2 java-benchmark ./java-benchmark $(all_data) ############# JAVA RULES END ############## MAINTAINERCLEANFILES = \ Makefile.in CLEANFILES = \ $(benchmarks_protoc_outputs) \ $(benchmarks_protoc_outputs_header) \ $(benchmarks_protoc_outputs_proto2) \ $(benchmarks_protoc_outputs_proto2_header) \ make_tmp_dir \ protoc_middleman \ protoc_middleman2 \ javac_middleman \ java-benchmark clean-local: -rm -rf tmp/*