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