Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 1 | # |
| 2 | # Licensed to the Apache Software Foundation (ASF) under one |
| 3 | # or more contributor license agreements. See the NOTICE file |
| 4 | # distributed with this work for additional information |
| 5 | # regarding copyright ownership. The ASF licenses this file |
| 6 | # to you under the Apache License, Version 2.0 (the |
| 7 | # "License"); you may not use this file except in compliance |
| 8 | # with the License. You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, |
| 13 | # software distributed under the License is distributed on an |
| 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | # KIND, either express or implied. See the License for the |
| 16 | # specific language governing permissions and limitations |
| 17 | # under the License. |
| 18 | # |
Roger Meier | 81a1f99 | 2014-10-22 14:09:43 +0200 | [diff] [blame] | 19 | AUTOMAKE_OPTIONS = subdir-objects serial-tests |
| 20 | |
Nobuaki Sukegawa | a0c5ab7 | 2015-02-01 00:27:12 +0900 | [diff] [blame] | 21 | BUILT_SOURCES = gen-cpp/ThriftTest.cpp \ |
| 22 | gen-cpp/ThriftTest_types.cpp \ |
| 23 | gen-cpp/ThriftTest_constants.cpp \ |
James E. King, III | 58402ff | 2017-11-17 14:41:46 -0500 | [diff] [blame] | 24 | gen-cpp/SecondService.cpp \ |
Nobuaki Sukegawa | a0c5ab7 | 2015-02-01 00:27:12 +0900 | [diff] [blame] | 25 | gen-cpp/StressTest_types.cpp \ |
| 26 | gen-cpp/StressTest_constants.cpp \ |
| 27 | gen-cpp/Service.cpp |
| 28 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 29 | noinst_LTLIBRARIES = libtestgencpp.la libstresstestgencpp.la |
| 30 | nodist_libtestgencpp_la_SOURCES = \ |
James E. King, III | 58402ff | 2017-11-17 14:41:46 -0500 | [diff] [blame] | 31 | gen-cpp/SecondService.cpp \ |
| 32 | gen-cpp/SecondService.h \ |
| 33 | gen-cpp/SecondService.tcc \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 34 | gen-cpp/ThriftTest_constants.cpp \ |
| 35 | gen-cpp/ThriftTest_constants.h \ |
| 36 | gen-cpp/ThriftTest_types.cpp \ |
| 37 | gen-cpp/ThriftTest_types.h \ |
| 38 | gen-cpp/ThriftTest_types.tcc \ |
| 39 | gen-cpp/ThriftTest.cpp \ |
| 40 | gen-cpp/ThriftTest.h \ |
| 41 | gen-cpp/ThriftTest.tcc \ |
| 42 | src/ThriftTest_extras.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 43 | |
| 44 | libtestgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 45 | |
| 46 | nodist_libstresstestgencpp_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 47 | gen-cpp/StressTest_constants.cpp \ |
| 48 | gen-cpp/StressTest_types.cpp \ |
| 49 | gen-cpp/StressTest_constants.h \ |
| 50 | gen-cpp/StressTest_types.h \ |
| 51 | gen-cpp/Service.cpp \ |
| 52 | gen-cpp/Service.h |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 53 | |
| 54 | libstresstestgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 55 | |
Roger Meier | 41ad434 | 2015-03-24 22:30:40 +0100 | [diff] [blame] | 56 | precross: TestServer TestClient |
| 57 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 58 | check_PROGRAMS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 59 | TestServer \ |
| 60 | TestClient \ |
| 61 | StressTest \ |
| 62 | StressTestNonBlocking |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 63 | |
| 64 | # we currently do not run the testsuite, stop c++ server issue |
| 65 | # TESTS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 66 | # $(check_PROGRAMS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 67 | |
| 68 | TestServer_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 69 | src/TestServer.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 70 | |
| 71 | TestServer_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 72 | libtestgencpp.la \ |
| 73 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 74 | $(top_builddir)/lib/cpp/libthriftz.la \ |
| 75 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
Dave Watson | 792db4e | 2015-01-16 11:22:01 -0800 | [diff] [blame] | 76 | -levent -lboost_program_options -lboost_system -lboost_filesystem $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 77 | |
| 78 | TestClient_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 79 | src/TestClient.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 80 | |
| 81 | TestClient_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 82 | libtestgencpp.la \ |
| 83 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 84 | $(top_builddir)/lib/cpp/libthriftz.la \ |
| 85 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
Dave Watson | 792db4e | 2015-01-16 11:22:01 -0800 | [diff] [blame] | 86 | -levent -lboost_program_options -lboost_system -lboost_filesystem $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 87 | |
| 88 | StressTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 89 | src/StressTest.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 90 | |
| 91 | StressTest_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 92 | libstresstestgencpp.la \ |
| 93 | $(top_builddir)/lib/cpp/libthrift.la |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 94 | |
| 95 | StressTestNonBlocking_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 96 | src/StressTestNonBlocking.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 97 | |
| 98 | StressTestNonBlocking_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 99 | libstresstestgencpp.la \ |
| 100 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
| 101 | -levent |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 102 | # |
| 103 | # Common thrift code generation rules |
| 104 | # |
James E. King, III | 58402ff | 2017-11-17 14:41:46 -0500 | [diff] [blame] | 105 | gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/SecondService.cpp gen-cpp/SecondService.h gen-cpp/SecondService.tcc: $(top_srcdir)/test/ThriftTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 106 | $(THRIFT) --gen cpp:templates,cob_style -r $< |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 107 | |
Randy Abernethy | 983bf7d | 2015-10-09 12:28:57 -0700 | [diff] [blame] | 108 | gen-cpp/StressTest_types.cpp gen-cpp/StressTest_constants.cpp gen-cpp/Service.cpp: $(top_srcdir)/test/StressTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 109 | $(THRIFT) --gen cpp $< |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 110 | |
Konrad Grochowski | 1ff4a97 | 2014-09-19 23:57:57 +0200 | [diff] [blame] | 111 | AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(LIBEVENT_CPPFLAGS) -I$(top_srcdir)/lib/cpp/src -Igen-cpp |
James E. King, III | d7142b7 | 2017-09-01 13:00:36 -0700 | [diff] [blame] | 112 | AM_CXXFLAGS = -Wall -Wextra -pedantic -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS |
Roger Meier | 051ea1c | 2014-12-20 22:43:24 +0100 | [diff] [blame] | 113 | AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS) $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 114 | |
| 115 | clean-local: |
Nobuaki Sukegawa | d3f7d0e | 2015-11-03 13:42:00 +0900 | [diff] [blame] | 116 | $(RM) gen-cpp/* |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 117 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 118 | style-local: |
| 119 | $(CPPSTYLE_CMD) |
| 120 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 121 | EXTRA_DIST = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 122 | src/TestClient.cpp \ |
| 123 | src/TestServer.cpp \ |
| 124 | src/StressTest.cpp \ |
James E. King, III | ab8ff1a | 2017-02-15 14:12:37 -0500 | [diff] [blame] | 125 | src/StressTestNonBlocking.cpp |