Roger Meier | c2cc61a | 2010-11-30 19:53:29 +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 | # |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 19 | AUTOMAKE_OPTIONS = subdir-objects serial-tests |
Roger Meier | 81a1f99 | 2014-10-22 14:09:43 +0200 | [diff] [blame] | 20 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 21 | SUBDIRS = |
| 22 | |
Nobuaki Sukegawa | ef0a8fa | 2015-05-10 20:21:17 +0900 | [diff] [blame] | 23 | BUILT_SOURCES = \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 24 | gen-c_glib/t_test_container_test_types.c \ |
| 25 | gen-c_glib/t_test_container_test_types.h \ |
Nobuaki Sukegawa | ef0a8fa | 2015-05-10 20:21:17 +0900 | [diff] [blame] | 26 | gen-c_glib/t_test_debug_proto_test_types.h \ |
| 27 | gen-c_glib/t_test_empty_service.h \ |
| 28 | gen-c_glib/t_test_inherited.h \ |
| 29 | gen-c_glib/t_test_optional_required_test_types.h \ |
| 30 | gen-c_glib/t_test_reverse_order_service.h \ |
| 31 | gen-c_glib/t_test_second_service.h \ |
| 32 | gen-c_glib/t_test_service_for_exception_with_a_map.h \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 33 | gen-c_glib/t_test_container_service.c \ |
| 34 | gen-c_glib/t_test_container_service.h \ |
Nobuaki Sukegawa | ef0a8fa | 2015-05-10 20:21:17 +0900 | [diff] [blame] | 35 | gen-c_glib/t_test_srv.h \ |
| 36 | gen-c_glib/t_test_thrift_test.h \ |
| 37 | gen-c_glib/t_test_thrift_test_types.h |
| 38 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 39 | AM_CPPFLAGS = -I../src -I./gen-c_glib |
Simon South | db3646f | 2015-08-01 12:18:12 +0000 | [diff] [blame] | 40 | AM_CFLAGS = -g -Wall -Wextra -pedantic $(GLIB_CFLAGS) $(GOBJECT_CFLAGS) \ |
| 41 | @GCOV_CFLAGS@ |
| 42 | AM_CXXFLAGS = $(AM_CFLAGS) |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 43 | AM_LDFLAGS = $(GLIB_LIBS) $(GOBJECT_LIBS) @GCOV_LDFLAGS@ |
| 44 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 45 | check_PROGRAMS = \ |
Nobuaki Sukegawa | 362a5ed | 2015-12-01 22:17:24 +0900 | [diff] [blame] | 46 | testserialization \ |
Roger Meier | 909f186 | 2014-07-24 23:52:14 +0200 | [diff] [blame] | 47 | testapplicationexception \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 48 | testcontainertest \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 49 | testtransportsocket \ |
Roger Meier | c101092 | 2010-11-26 10:17:48 +0000 | [diff] [blame] | 50 | testbinaryprotocol \ |
Chandler May | 6dde90b | 2016-01-10 06:01:10 +0000 | [diff] [blame] | 51 | testcompactprotocol \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 52 | testbufferedtransport \ |
| 53 | testframedtransport \ |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 54 | testfdtransport \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 55 | testmemorybuffer \ |
| 56 | teststruct \ |
| 57 | testsimpleserver \ |
| 58 | testdebugproto \ |
| 59 | testoptionalrequired \ |
| 60 | testthrifttest |
| 61 | |
| 62 | if WITH_CPP |
Nobuaki Sukegawa | ef0a8fa | 2015-05-10 20:21:17 +0900 | [diff] [blame] | 63 | BUILT_SOURCES += gen-cpp/ThriftTest_types.cpp |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 64 | check_PROGRAMS += testthrifttestclient |
| 65 | endif |
| 66 | |
Nobuaki Sukegawa | 362a5ed | 2015-12-01 22:17:24 +0900 | [diff] [blame] | 67 | testserialization_SOURCES = testserialization.c |
| 68 | testserialization_LDADD = \ |
| 69 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 70 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 71 | libtestgenc.la |
| 72 | |
Roger Meier | 909f186 | 2014-07-24 23:52:14 +0200 | [diff] [blame] | 73 | testapplicationexception_SOURCES = testapplicationexception.c |
| 74 | testapplicationexception_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 75 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/libthrift_c_glib_la-thrift_application_exception.o \ |
| 76 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 77 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/libthrift_c_glib_la-thrift_struct.o \ |
| 78 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o |
Roger Meier | 909f186 | 2014-07-24 23:52:14 +0200 | [diff] [blame] | 79 | |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 80 | testcontainertest_SOURCES = testcontainertest.c |
| 81 | testcontainertest_LDADD = \ |
| 82 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/libthrift_c_glib_la-thrift_struct.o \ |
| 83 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 84 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 85 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport_factory.o \ |
| 86 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/processor/libthrift_c_glib_la-thrift_processor.o \ |
| 87 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol_factory.o \ |
| 88 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_binary_protocol.o \ |
| 89 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_binary_protocol_factory.o \ |
| 90 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 91 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 92 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o \ |
| 93 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/server/libthrift_c_glib_la-thrift_server.o \ |
| 94 | libtestgenc.la |
| 95 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 96 | testtransportsocket_SOURCES = testtransportsocket.c |
| 97 | testtransportsocket_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 98 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 99 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_buffered_transport.o \ |
| 100 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 101 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 102 | |
Roger Meier | c101092 | 2010-11-26 10:17:48 +0000 | [diff] [blame] | 103 | testbinaryprotocol_SOURCES = testbinaryprotocol.c |
| 104 | testbinaryprotocol_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 105 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 106 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 107 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 108 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 109 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 110 | |
Chandler May | 6dde90b | 2016-01-10 06:01:10 +0000 | [diff] [blame] | 111 | testcompactprotocol_SOURCES = testcompactprotocol.c |
| 112 | testcompactprotocol_LDADD = \ |
| 113 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 114 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 115 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 116 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 117 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o |
| 118 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 119 | testbufferedtransport_SOURCES = testbufferedtransport.c |
| 120 | testbufferedtransport_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 121 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 122 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 123 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 124 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 125 | |
| 126 | testframedtransport_SOURCES = testframedtransport.c |
| 127 | testframedtransport_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 128 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 129 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 130 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 131 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 132 | |
Simon South | e71f20c | 2016-02-11 06:52:37 -0500 | [diff] [blame] | 133 | testfdtransport_SOURCES = testfdtransport.c |
| 134 | testfdtransport_LDADD = \ |
| 135 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 136 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_fd_transport.o |
| 137 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 138 | testmemorybuffer_SOURCES = testmemorybuffer.c |
| 139 | testmemorybuffer_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 140 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 141 | |
| 142 | teststruct_SOURCES = teststruct.c |
| 143 | teststruct_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 144 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 145 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 146 | |
| 147 | testsimpleserver_SOURCES = testsimpleserver.c |
| 148 | testsimpleserver_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 149 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 150 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
| 151 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport_factory.o \ |
| 152 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/processor/libthrift_c_glib_la-thrift_processor.o \ |
| 153 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol_factory.o \ |
| 154 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_binary_protocol.o \ |
| 155 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_binary_protocol_factory.o \ |
| 156 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_socket.o \ |
| 157 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_transport.o \ |
| 158 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_server_socket.o \ |
| 159 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/server/libthrift_c_glib_la-thrift_server.o |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 160 | |
| 161 | testdebugproto_SOURCES = testdebugproto.c |
| 162 | testdebugproto_LDADD = libtestgenc.la |
| 163 | |
| 164 | testoptionalrequired_SOURCES = testoptionalrequired.c |
| 165 | testoptionalrequired_LDADD = \ |
Jens Geyer | 8677719 | 2015-07-25 15:59:46 +0200 | [diff] [blame] | 166 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/protocol/libthrift_c_glib_la-thrift_protocol.o \ |
| 167 | $(top_builddir)/lib/c_glib/src/thrift/c_glib/transport/libthrift_c_glib_la-thrift_transport.o \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 168 | libtestgenc.la |
| 169 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 170 | testthrifttest_SOURCES = testthrifttest.c |
| 171 | testthrifttest_LDADD = libtestgenc.la \ |
| 172 | $(top_builddir)/test/c_glib/src/thrift_test_handler.o |
Chandler May | 3fe3df2 | 2016-01-18 11:05:40 -0500 | [diff] [blame] | 173 | testthrifttest_CFLAGS = -I$(top_srcdir)/test/c_glib/src -I./gen-c_glib $(GLIB_CFLAGS) |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 174 | |
| 175 | testthrifttestclient_SOURCES = testthrifttestclient.cpp |
| 176 | testthrifttestclient_CPPFLAGS = -I../../cpp/src $(BOOST_CPPFLAGS) -I./gen-cpp -I../src -I./gen-c_glib $(GLIB_CFLAGS) |
| 177 | testthrifttestclient_LDADD = ../../cpp/.libs/libthrift.la ../libthrift_c_glib.la libtestgenc.la libtestgencpp.la |
| 178 | testthrifttestclient_LDFLAGS = -L../.libs -L../../cpp/.libs $(GLIB_LIBS) $(GOBJECT_LIBS) |
| 179 | |
| 180 | check_LTLIBRARIES = libtestgenc.la |
| 181 | |
| 182 | if WITH_CPP |
| 183 | check_LTLIBRARIES += libtestgencpp.la |
| 184 | endif |
| 185 | |
Bryan Duxbury | 39fbb9a | 2011-01-13 18:09:51 +0000 | [diff] [blame] | 186 | nodist_libtestgenc_la_SOURCES = \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 187 | gen-c_glib/t_test_container_test_types.c \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 188 | gen-c_glib/t_test_debug_proto_test_types.c \ |
Nobuaki Sukegawa | ba3fe86 | 2015-12-01 22:42:55 +0900 | [diff] [blame] | 189 | gen-c_glib/t_test_enum_test_types.c \ |
| 190 | gen-c_glib/t_test_enum_test_service.c \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 191 | gen-c_glib/t_test_empty_service.c \ |
| 192 | gen-c_glib/t_test_inherited.c \ |
| 193 | gen-c_glib/t_test_optional_required_test_types.c \ |
| 194 | gen-c_glib/t_test_reverse_order_service.c \ |
| 195 | gen-c_glib/t_test_second_service.c \ |
| 196 | gen-c_glib/t_test_service_for_exception_with_a_map.c \ |
| 197 | gen-c_glib/t_test_srv.c \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 198 | gen-c_glib/t_test_container_service.c \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 199 | gen-c_glib/t_test_thrift_test.c \ |
| 200 | gen-c_glib/t_test_thrift_test_types.c \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 201 | gen-c_glib/t_test_container_test_types.h \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 202 | gen-c_glib/t_test_debug_proto_test_types.h \ |
Nobuaki Sukegawa | ba3fe86 | 2015-12-01 22:42:55 +0900 | [diff] [blame] | 203 | gen-c_glib/t_test_enum_test_types.h \ |
| 204 | gen-c_glib/t_test_enum_test_service.h \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 205 | gen-c_glib/t_test_empty_service.h \ |
| 206 | gen-c_glib/t_test_inherited.h \ |
| 207 | gen-c_glib/t_test_optional_required_test_types.h \ |
| 208 | gen-c_glib/t_test_reverse_order_service.h \ |
| 209 | gen-c_glib/t_test_second_service.h \ |
| 210 | gen-c_glib/t_test_service_for_exception_with_a_map.h \ |
| 211 | gen-c_glib/t_test_srv.h \ |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 212 | gen-c_glib/t_test_container_service.h \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 213 | gen-c_glib/t_test_thrift_test.h \ |
| 214 | gen-c_glib/t_test_thrift_test_types.h |
| 215 | libtestgenc_la_LIBADD = $(top_builddir)/lib/c_glib/libthrift_c_glib.la |
Jens Geyer | 1c19027 | 2015-07-28 23:15:18 +0200 | [diff] [blame] | 216 | libtestgenc_la_CPPFLAGS = $(AM_CPPFLAGS) -Wno-unused-function |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 217 | |
Bryan Duxbury | 39fbb9a | 2011-01-13 18:09:51 +0000 | [diff] [blame] | 218 | nodist_libtestgencpp_la_SOURCES = \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 219 | gen-cpp/ThriftTest.cpp \ |
| 220 | gen-cpp/ThriftTest_constants.cpp \ |
| 221 | gen-cpp/ThriftTest_types.cpp \ |
| 222 | gen-cpp/ThriftTest.h \ |
| 223 | gen-cpp/ThriftTest_constants.h \ |
| 224 | gen-cpp/ThriftTest_types.h |
| 225 | libtestgencpp_la_CPPFLAGS = -I../../cpp/src $(BOOST_CPPFLAGS) -I./gen-cpp |
| 226 | |
| 227 | THRIFT = $(top_builddir)/compiler/cpp/thrift |
| 228 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 229 | gen-c_glib/t_test_container_test_types.c gen-c_glib/t_test_container_test_types.h gen-c_glib/t_test_container_service.c gen-c_glib/t_test_container_service.h: ContainerTest.thrift $(THRIFT) |
Jens Geyer | 54f392b | 2015-08-05 21:45:10 +0200 | [diff] [blame] | 230 | $(THRIFT) --gen c_glib $< |
| 231 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 232 | gen-c_glib/t_test_debug_proto_test_types.c gen-c_glib/t_test_debug_proto_test_types.h gen-c_glib/t_test_empty_service.c gen-c_glib/t_test_empty_service.h gen-c_glib/t_test_inherited.c gen-c_glib/t_test_inherited.h gen-c_glib/t_test_reverse_order_service.c gen-c_glib/t_test_reverse_order_service.h gen-c_glib/t_test_service_for_exception_with_a_map.c gen-c_glib/t_test_service_for_exception_with_a_map.h gen-c_glib/t_test_srv.c gen-c_glib/t_test_srv.h: ../../../test/DebugProtoTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 233 | $(THRIFT) --gen c_glib $< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 234 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 235 | gen-c_glib/t_test_enum_test_types.c gen-c_glib/t_test_enum_test_types.h gen-c_glib/t_test_enum_test_service.c gen-c_glib/t_test_enum_test_service.h : ../../../test/EnumTest.thrift $(THRIFT) |
Nobuaki Sukegawa | ba3fe86 | 2015-12-01 22:42:55 +0900 | [diff] [blame] | 236 | $(THRIFT) --gen c_glib $< |
| 237 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 238 | gen-c_glib/t_test_optional_required_test_types.c gen-c_glib/t_test_optional_required_test_types.h: ../../../test/OptionalRequiredTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 239 | $(THRIFT) --gen c_glib $< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 240 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 241 | gen-c_glib/t_test_second_service.c gen-c_glib/t_test_thrift_test.c gen-c_glib/t_test_thrift_test_types.c gen-c_glib/t_test_second_service.h gen-c_glib/t_test_thrift_test.h gen-c_glib/t_test_thrift_test_types.h: ../../../test/ThriftTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 242 | $(THRIFT) --gen c_glib $< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 243 | |
Nobuaki Sukegawa | 6076970 | 2016-01-23 19:25:06 +0900 | [diff] [blame] | 244 | gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/ThriftTest_types.cpp: ../../../test/ThriftTest.thrift $(THRIFT) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 245 | $(THRIFT) --gen cpp $< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 246 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 247 | TESTS = \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 248 | $(check_PROGRAMS) \ |
| 249 | $(check_SCRIPTS) |
| 250 | |
| 251 | # globally added to all instances of valgrind calls |
| 252 | # VALGRIND_OPTS = --suppressions=glib.suppress |
| 253 | VALGRIND_OPTS = |
| 254 | |
| 255 | # globally added to all memcheck calls |
| 256 | VALGRIND_MEM_OPTS = --tool=memcheck \ |
| 257 | --num-callers=10 \ |
| 258 | ${myextravalgrindmemopts} |
| 259 | |
| 260 | # globally added to all leakcheck calls |
| 261 | VALGRIND_LEAK_OPTS = --tool=memcheck \ |
| 262 | --num-callers=10 \ |
| 263 | --leak-check=full \ |
| 264 | --leak-resolution=high \ |
| 265 | ${myextravalgrindleakopts} |
| 266 | |
| 267 | memcheck: $(check_PROGRAMS) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 268 | @for x in $(check_PROGRAMS); \ |
| 269 | do \ |
| 270 | $(MAKE) memcheck-$$x; \ |
| 271 | done |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 272 | |
| 273 | leakcheck: $(check_PROGRAMS) |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 274 | @for x in $(check_PROGRAMS); \ |
| 275 | do \ |
| 276 | $(MAKE) leakcheck-$$x; \ |
| 277 | done |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 278 | |
| 279 | memcheck-%: % |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 280 | @echo "*****************************************"; \ |
| 281 | echo "MEMCHECK: $<"; \ |
| 282 | echo "ARGS: ${VALGRIND_OPTS} ${VALGRIND_MEM_OPTS} ${$<_VALGRIND_MEM_OPTS}"; \ |
| 283 | $(LIBTOOL) --mode=execute \ |
| 284 | valgrind \ |
| 285 | ${VALGRIND_OPTS} \ |
| 286 | ${VALGRIND_MEM_OPTS} \ |
| 287 | ${$<_VALGRIND_MEM_OPTS} ./$< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 288 | |
| 289 | leakcheck-%: % |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 290 | @echo "*****************************************"; \ |
| 291 | echo "LEAKCHECK: $<"; \ |
| 292 | echo "ARGS: ${VALGRIND_OPTS} ${VALGRIND_LEAK_OPTS} ${$<_VALGRIND_LEAK_OPTS}"; \ |
| 293 | G_SLICE=always-malloc $(LIBTOOL) --mode=execute \ |
| 294 | valgrind \ |
| 295 | ${VALGRIND_OPTS} \ |
| 296 | ${VALGRIND_LEAK_OPTS} \ |
| 297 | ${$<_VALGRIND_LEAK_OPTS} ./$< |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 298 | |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 299 | clean-local: |
Jens Geyer | 8c5fce9 | 2015-07-28 22:59:16 +0200 | [diff] [blame] | 300 | $(RM) gen-c_glib/* gen-cpp/* |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 301 | |
| 302 | CLEANFILES = \ |
Roger Meier | 213a664 | 2010-10-27 12:30:11 +0000 | [diff] [blame] | 303 | *.bb \ |
| 304 | *.bbg \ |
| 305 | *.da \ |
| 306 | *.gcno \ |
| 307 | *.gcda \ |
Roger Meier | c101092 | 2010-11-26 10:17:48 +0000 | [diff] [blame] | 308 | *.gcov |
jfarrell | f13e431 | 2015-08-25 00:39:29 -0400 | [diff] [blame] | 309 | |
| 310 | EXTRA_DIST = \ |
| 311 | CMakeLists.txt \ |
| 312 | ContainerTest.thrift |
| 313 | |