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 \ |
| 24 | gen-cpp/StressTest_types.cpp \ |
| 25 | gen-cpp/StressTest_constants.cpp \ |
| 26 | gen-cpp/Service.cpp |
| 27 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 28 | noinst_LTLIBRARIES = libtestgencpp.la libstresstestgencpp.la |
| 29 | nodist_libtestgencpp_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 30 | gen-cpp/ThriftTest_constants.cpp \ |
| 31 | gen-cpp/ThriftTest_constants.h \ |
| 32 | gen-cpp/ThriftTest_types.cpp \ |
| 33 | gen-cpp/ThriftTest_types.h \ |
| 34 | gen-cpp/ThriftTest_types.tcc \ |
| 35 | gen-cpp/ThriftTest.cpp \ |
| 36 | gen-cpp/ThriftTest.h \ |
| 37 | gen-cpp/ThriftTest.tcc \ |
| 38 | src/ThriftTest_extras.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 39 | |
| 40 | libtestgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 41 | |
| 42 | nodist_libstresstestgencpp_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 43 | gen-cpp/StressTest_constants.cpp \ |
| 44 | gen-cpp/StressTest_types.cpp \ |
| 45 | gen-cpp/StressTest_constants.h \ |
| 46 | gen-cpp/StressTest_types.h \ |
| 47 | gen-cpp/Service.cpp \ |
| 48 | gen-cpp/Service.h |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 49 | |
| 50 | libstresstestgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 51 | |
Roger Meier | 41ad434 | 2015-03-24 22:30:40 +0100 | [diff] [blame] | 52 | precross: TestServer TestClient |
| 53 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 54 | check_PROGRAMS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 55 | TestServer \ |
| 56 | TestClient \ |
| 57 | StressTest \ |
| 58 | StressTestNonBlocking |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 59 | |
| 60 | # we currently do not run the testsuite, stop c++ server issue |
| 61 | # TESTS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 62 | # $(check_PROGRAMS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 63 | |
| 64 | TestServer_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 65 | src/TestServer.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 66 | |
| 67 | TestServer_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 68 | libtestgencpp.la \ |
| 69 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 70 | $(top_builddir)/lib/cpp/libthriftz.la \ |
| 71 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
Dave Watson | 792db4e | 2015-01-16 11:22:01 -0800 | [diff] [blame] | 72 | -levent -lboost_program_options -lboost_system -lboost_filesystem $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 73 | |
| 74 | TestClient_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 75 | src/TestClient.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 76 | |
| 77 | TestClient_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 78 | libtestgencpp.la \ |
| 79 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 80 | $(top_builddir)/lib/cpp/libthriftz.la \ |
| 81 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
Dave Watson | 792db4e | 2015-01-16 11:22:01 -0800 | [diff] [blame] | 82 | -levent -lboost_program_options -lboost_system -lboost_filesystem $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 83 | |
| 84 | StressTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 85 | src/StressTest.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 86 | |
| 87 | StressTest_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 88 | libstresstestgencpp.la \ |
| 89 | $(top_builddir)/lib/cpp/libthrift.la |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 90 | |
| 91 | StressTestNonBlocking_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 92 | src/StressTestNonBlocking.cpp |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 93 | |
| 94 | StressTestNonBlocking_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 95 | libstresstestgencpp.la \ |
| 96 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
| 97 | -levent |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 98 | # |
| 99 | # Common thrift code generation rules |
| 100 | # |
| 101 | THRIFT = $(top_builddir)/compiler/cpp/thrift |
| 102 | |
Randy Abernethy | 983bf7d | 2015-10-09 12:28:57 -0700 | [diff] [blame] | 103 | gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp gen-cpp/ThriftTest_constants.cpp: $(top_srcdir)/test/ThriftTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 104 | $(THRIFT) --gen cpp:templates,cob_style -r $< |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 105 | |
Randy Abernethy | 983bf7d | 2015-10-09 12:28:57 -0700 | [diff] [blame] | 106 | 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] | 107 | $(THRIFT) --gen cpp $< |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 108 | |
Konrad Grochowski | 1ff4a97 | 2014-09-19 23:57:57 +0200 | [diff] [blame] | 109 | AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(LIBEVENT_CPPFLAGS) -I$(top_srcdir)/lib/cpp/src -Igen-cpp |
Roger Meier | ec300e3 | 2014-10-13 02:13:35 +0200 | [diff] [blame] | 110 | AM_CXXFLAGS = -Wall -Wextra -pedantic |
Roger Meier | 051ea1c | 2014-12-20 22:43:24 +0100 | [diff] [blame] | 111 | AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS) $(ZLIB_LIBS) |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 112 | |
| 113 | clean-local: |
Nobuaki Sukegawa | d3f7d0e | 2015-11-03 13:42:00 +0900 | [diff] [blame^] | 114 | $(RM) gen-cpp/* |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 115 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 116 | style-local: |
| 117 | $(CPPSTYLE_CMD) |
| 118 | |
Roger Meier | d3b9dca | 2011-06-24 14:01:10 +0000 | [diff] [blame] | 119 | EXTRA_DIST = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 120 | src/TestClient.cpp \ |
| 121 | src/TestServer.cpp \ |
| 122 | src/StressTest.cpp \ |
| 123 | src/StressTestNonBlocking.cpp \ |
| 124 | realloc/realloc_test.c \ |
| 125 | realloc/Makefile |