David Reiss | 351e22b | 2010-08-31 16:51:19 +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 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 21 | noinst_LTLIBRARIES = libtestgencpp.la libprocessortest.la |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 22 | nodist_libtestgencpp_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 23 | gen-cpp/DebugProtoTest_types.cpp \ |
| 24 | gen-cpp/DebugProtoTest_types.h \ |
| 25 | gen-cpp/EnumTest_types.cpp \ |
| 26 | gen-cpp/EnumTest_types.h \ |
| 27 | gen-cpp/OptionalRequiredTest_types.cpp \ |
| 28 | gen-cpp/OptionalRequiredTest_types.h \ |
| 29 | gen-cpp/Recursive_types.cpp \ |
| 30 | gen-cpp/Recursive_types.h \ |
| 31 | gen-cpp/ThriftTest_types.cpp \ |
| 32 | gen-cpp/ThriftTest_types.h \ |
| 33 | gen-cpp/TypedefTest_types.cpp \ |
| 34 | gen-cpp/TypedefTest_types.h \ |
| 35 | ThriftTest_extras.cpp \ |
| 36 | DebugProtoTest_extras.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 37 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 38 | nodist_libprocessortest_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 39 | gen-cpp/ChildService.cpp \ |
| 40 | gen-cpp/ChildService.h \ |
| 41 | gen-cpp/ParentService.cpp \ |
| 42 | gen-cpp/ParentService.h \ |
| 43 | gen-cpp/proc_types.cpp \ |
| 44 | gen-cpp/proc_types.h |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 45 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 46 | ThriftTest_extras.o: gen-cpp/ThriftTest_types.h |
| 47 | DebugProtoTest_extras.o: gen-cpp/DebugProtoTest_types.h |
| 48 | |
| 49 | libtestgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 50 | |
| 51 | noinst_PROGRAMS = Benchmark |
| 52 | |
| 53 | Benchmark_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 54 | Benchmark.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 55 | |
| 56 | Benchmark_LDADD = libtestgencpp.la |
| 57 | |
| 58 | check_PROGRAMS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 59 | TFDTransportTest \ |
| 60 | TPipedTransportTest \ |
| 61 | DebugProtoTest \ |
| 62 | JSONProtoTest \ |
| 63 | OptionalRequiredTest \ |
| 64 | RecursiveTest \ |
| 65 | SpecializationTest \ |
| 66 | AllProtocolsTest \ |
| 67 | TransportTest \ |
| 68 | ZlibTest \ |
| 69 | TFileTransportTest \ |
| 70 | UnitTests \ |
| 71 | link_test \ |
| 72 | OpenSSLManualInitTest \ |
| 73 | EnumTest |
Roger Meier | 2d59b9e | 2012-05-23 19:40:40 +0000 | [diff] [blame] | 74 | # disable these test ... too strong |
| 75 | # processor_test |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 76 | # concurrency_test |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 77 | |
Roger Meier | 9e0f074 | 2011-08-03 17:36:55 +0000 | [diff] [blame] | 78 | TESTS_ENVIRONMENT= \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 79 | BOOST_TEST_LOG_SINK=tests.xml \ |
| 80 | BOOST_TEST_LOG_LEVEL=test_suite \ |
| 81 | BOOST_TEST_LOG_FORMAT=xml |
Roger Meier | 9e0f074 | 2011-08-03 17:36:55 +0000 | [diff] [blame] | 82 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 83 | TESTS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 84 | $(check_PROGRAMS) |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 85 | |
| 86 | UnitTests_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 87 | UnitTestMain.cpp \ |
| 88 | TMemoryBufferTest.cpp \ |
| 89 | TBufferBaseTest.cpp \ |
| 90 | Base64Test.cpp \ |
| 91 | ToStringTest.cpp \ |
| 92 | TypedefTest.cpp |
Roger Meier | 12d7053 | 2011-12-14 23:35:28 +0000 | [diff] [blame] | 93 | |
| 94 | if !WITH_BOOSTTHREADS |
| 95 | UnitTests_SOURCES += \ |
Roger Meier | 3fc4819 | 2011-12-11 21:05:35 +0000 | [diff] [blame] | 96 | RWMutexStarveTest.cpp |
Roger Meier | 12d7053 | 2011-12-14 23:35:28 +0000 | [diff] [blame] | 97 | endif |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 98 | |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 99 | UnitTests_LDADD = \ |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 100 | libtestgencpp.la \ |
Roger Meier | 73b58a2 | 2014-05-11 17:39:34 +0200 | [diff] [blame] | 101 | -l:libboost_unit_test_framework.a |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 102 | |
David Reiss | 35dc769 | 2010-10-06 17:10:19 +0000 | [diff] [blame] | 103 | TransportTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 104 | TransportTest.cpp |
David Reiss | 35dc769 | 2010-10-06 17:10:19 +0000 | [diff] [blame] | 105 | |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 106 | TransportTest_LDADD = \ |
| 107 | libtestgencpp.la \ |
| 108 | $(top_builddir)/lib/cpp/libthriftz.la \ |
Roger Meier | 73b58a2 | 2014-05-11 17:39:34 +0200 | [diff] [blame] | 109 | -l:libboost_unit_test_framework.a \ |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 110 | -lz |
David Reiss | 35dc769 | 2010-10-06 17:10:19 +0000 | [diff] [blame] | 111 | |
David Reiss | 9a961e7 | 2010-10-06 17:10:23 +0000 | [diff] [blame] | 112 | ZlibTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 113 | ZlibTest.cpp |
David Reiss | 9a961e7 | 2010-10-06 17:10:23 +0000 | [diff] [blame] | 114 | |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 115 | ZlibTest_LDADD = \ |
| 116 | libtestgencpp.la \ |
| 117 | $(top_builddir)/lib/cpp/libthriftz.la \ |
Roger Meier | 73b58a2 | 2014-05-11 17:39:34 +0200 | [diff] [blame] | 118 | -l:libboost_unit_test_framework.a \ |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 119 | -lz |
David Reiss | 9a961e7 | 2010-10-06 17:10:23 +0000 | [diff] [blame] | 120 | |
Jens Geyer | ae0b22c | 2014-09-04 23:04:21 +0200 | [diff] [blame] | 121 | EnumTest_SOURCES = \ |
| 122 | EnumTest.cpp |
| 123 | |
| 124 | EnumTest_LDADD = \ |
| 125 | libtestgencpp.la \ |
Jens Geyer | 089bcd3 | 2014-09-11 22:36:41 +0200 | [diff] [blame] | 126 | -l:libboost_unit_test_framework.a |
Jens Geyer | ae0b22c | 2014-09-04 23:04:21 +0200 | [diff] [blame] | 127 | |
David Reiss | 709b69f | 2010-10-06 17:10:30 +0000 | [diff] [blame] | 128 | TFileTransportTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 129 | TFileTransportTest.cpp |
David Reiss | 709b69f | 2010-10-06 17:10:30 +0000 | [diff] [blame] | 130 | |
Christian Lavoie | 4f42ef7 | 2010-11-04 18:51:42 +0000 | [diff] [blame] | 131 | TFileTransportTest_LDADD = \ |
| 132 | libtestgencpp.la \ |
Roger Meier | 73b58a2 | 2014-05-11 17:39:34 +0200 | [diff] [blame] | 133 | -l:libboost_unit_test_framework.a |
David Reiss | 709b69f | 2010-10-06 17:10:30 +0000 | [diff] [blame] | 134 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 135 | # |
| 136 | # TFDTransportTest |
| 137 | # |
| 138 | TFDTransportTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 139 | TFDTransportTest.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 140 | |
| 141 | TFDTransportTest_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 142 | $(top_builddir)/lib/cpp/libthrift.la |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 143 | |
| 144 | |
| 145 | # |
| 146 | # TPipedTransportTest |
| 147 | # |
| 148 | TPipedTransportTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 149 | TPipedTransportTest.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 150 | |
| 151 | TPipedTransportTest_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 152 | $(top_builddir)/lib/cpp/libthrift.la |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 153 | |
| 154 | # |
| 155 | # AllProtocolsTest |
| 156 | # |
| 157 | AllProtocolsTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 158 | AllProtocolTests.cpp \ |
| 159 | AllProtocolTests.tcc \ |
| 160 | GenericHelpers.h |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 161 | |
| 162 | AllProtocolsTest_LDADD = libtestgencpp.la |
| 163 | |
| 164 | # |
| 165 | # DebugProtoTest |
| 166 | # |
| 167 | DebugProtoTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 168 | DebugProtoTest.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 169 | |
| 170 | DebugProtoTest_LDADD = libtestgencpp.la |
| 171 | |
| 172 | |
| 173 | # |
| 174 | # JSONProtoTest |
| 175 | # |
| 176 | JSONProtoTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 177 | JSONProtoTest.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 178 | |
| 179 | JSONProtoTest_LDADD = libtestgencpp.la |
| 180 | |
| 181 | # |
| 182 | # OptionalRequiredTest |
| 183 | # |
| 184 | OptionalRequiredTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 185 | OptionalRequiredTest.cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 186 | |
| 187 | OptionalRequiredTest_LDADD = libtestgencpp.la |
| 188 | |
David Reiss | e71115b | 2010-10-06 17:09:56 +0000 | [diff] [blame] | 189 | # |
jfarrell | e0e8316 | 2014-04-08 22:45:01 -0400 | [diff] [blame] | 190 | # OptionalRequiredTest |
| 191 | # |
| 192 | RecursiveTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 193 | RecursiveTest.cpp |
jfarrell | e0e8316 | 2014-04-08 22:45:01 -0400 | [diff] [blame] | 194 | |
| 195 | RecursiveTest_LDADD = libtestgencpp.la |
| 196 | |
| 197 | # |
David Reiss | e71115b | 2010-10-06 17:09:56 +0000 | [diff] [blame] | 198 | # SpecializationTest |
| 199 | # |
| 200 | SpecializationTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 201 | SpecializationTest.cpp |
David Reiss | e71115b | 2010-10-06 17:09:56 +0000 | [diff] [blame] | 202 | |
| 203 | SpecializationTest_LDADD = libtestgencpp.la |
| 204 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 205 | concurrency_test_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 206 | concurrency/Tests.cpp \ |
| 207 | concurrency/ThreadFactoryTests.h \ |
| 208 | concurrency/ThreadManagerTests.h \ |
| 209 | concurrency/TimerManagerTests.h |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 210 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 211 | concurrency_test_LDADD = \ |
| 212 | $(top_builddir)/lib/cpp/libthrift.la |
| 213 | |
Roger Meier | 63fcb7e | 2014-06-15 21:48:59 +0200 | [diff] [blame] | 214 | link_test_SOURCES = \ |
| 215 | link/LinkTest.cpp \ |
| 216 | link/TemplatedService1.cpp \ |
| 217 | link/TemplatedService2.cpp |
| 218 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 219 | processor_test_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 220 | processor/ProcessorTest.cpp \ |
| 221 | processor/EventLog.cpp \ |
| 222 | processor/ServerThread.cpp \ |
| 223 | processor/EventLog.h \ |
| 224 | processor/Handlers.h \ |
| 225 | processor/ServerThread.h |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 226 | |
| 227 | processor_test_LDADD = libprocessortest.la \ |
| 228 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 229 | $(top_builddir)/lib/cpp/libthriftnb.la \ |
| 230 | $(BOOST_LDFLAGS) \ |
| 231 | -levent \ |
Roger Meier | 73b58a2 | 2014-05-11 17:39:34 +0200 | [diff] [blame] | 232 | -l:libboost_unit_test_framework.a |
Alan Dunn | bee7b73 | 2014-07-26 13:48:43 -0500 | [diff] [blame] | 233 | |
| 234 | OpenSSLManualInitTest_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 235 | OpenSSLManualInitTest.cpp |
Alan Dunn | bee7b73 | 2014-07-26 13:48:43 -0500 | [diff] [blame] | 236 | |
| 237 | OpenSSLManualInitTest_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 238 | $(top_builddir)/lib/cpp/libthrift.la \ |
| 239 | -l:libboost_unit_test_framework.a |
Alan Dunn | bee7b73 | 2014-07-26 13:48:43 -0500 | [diff] [blame] | 240 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 241 | # |
| 242 | # Common thrift code generation rules |
| 243 | # |
| 244 | THRIFT = $(top_builddir)/compiler/cpp/thrift |
| 245 | |
| 246 | gen-cpp/DebugProtoTest_types.cpp gen-cpp/DebugProtoTest_types.h: $(top_srcdir)/test/DebugProtoTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 247 | $(THRIFT) --gen cpp:dense $< |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 248 | |
Jens Geyer | ae0b22c | 2014-09-04 23:04:21 +0200 | [diff] [blame] | 249 | gen-cpp/EnumTest_types.cpp gen-cpp/EnumTest_types.h: $(top_srcdir)/test/EnumTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 250 | $(THRIFT) --gen cpp $< |
Jens Geyer | ae0b22c | 2014-09-04 23:04:21 +0200 | [diff] [blame] | 251 | |
Jens Geyer | 089bcd3 | 2014-09-11 22:36:41 +0200 | [diff] [blame] | 252 | gen-cpp/TypedefTest_types.cpp gen-cpp/TypedefTest_types.h: $(top_srcdir)/test/TypedefTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 253 | $(THRIFT) --gen cpp $< |
Jens Geyer | 089bcd3 | 2014-09-11 22:36:41 +0200 | [diff] [blame] | 254 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 255 | gen-cpp/OptionalRequiredTest_types.cpp gen-cpp/OptionalRequiredTest_types.h: $(top_srcdir)/test/OptionalRequiredTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 256 | $(THRIFT) --gen cpp:dense $< |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 257 | |
jfarrell | e0e8316 | 2014-04-08 22:45:01 -0400 | [diff] [blame] | 258 | gen-cpp/Recursive_types.cpp gen-cpp/Recursive_types.h: $(top_srcdir)/test/Recursive.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 259 | $(THRIFT) --gen cpp $< |
jfarrell | e0e8316 | 2014-04-08 22:45:01 -0400 | [diff] [blame] | 260 | |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 261 | gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp: $(top_srcdir)/test/StressTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 262 | $(THRIFT) --gen cpp:dense $< |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 263 | |
| 264 | gen-cpp/SecondService.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp gen-cpp/ThriftTest_types.h: $(top_srcdir)/test/ThriftTest.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 265 | $(THRIFT) --gen cpp:dense $< |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 266 | |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 267 | gen-cpp/ChildService.cpp: processor/proc.thrift |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 268 | $(THRIFT) --gen cpp:templates,cob_style $< |
Roger Meier | 2b1a528 | 2012-05-11 10:12:39 +0000 | [diff] [blame] | 269 | |
Konrad Grochowski | 1ff4a97 | 2014-09-19 23:57:57 +0200 | [diff] [blame] | 270 | AM_CPPFLAGS = $(BOOST_CPPFLAGS) -I$(top_srcdir)/lib/cpp/src |
Roger Meier | 3831578 | 2011-11-06 11:29:41 +0000 | [diff] [blame] | 271 | AM_LDFLAGS = $(BOOST_LDFLAGS) |
Roger Meier | cb0754d | 2014-10-21 21:28:04 +0200 | [diff] [blame] | 272 | AM_CXXFLAGS = -Wall -Wextra -pedantic |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 273 | |
| 274 | clean-local: |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 275 | $(RM) -r gen-cpp |
David Reiss | 351e22b | 2010-08-31 16:51:19 +0000 | [diff] [blame] | 276 | |
| 277 | EXTRA_DIST = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 278 | DenseProtoTest.cpp \ |
| 279 | ThriftTest_extras.cpp \ |
| 280 | DebugProtoTest_extras.cpp \ |
| 281 | concurrency \ |
| 282 | processor |