blob: de23cb9d1dcb1bed918c5397e9ff591fc5498438 [file] [log] [blame]
Roger Meierb3c84092014-09-01 21:53:40 +02001#
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#
19.NOTPARALLEL:
20noinst_LTLIBRARIES = libtestcglib.la
21nodist_libtestcglib_la_SOURCES = \
22 gen-c_glib/t_test_second_service.c \
23 gen-c_glib/t_test_second_service.h \
24 gen-c_glib/t_test_thrift_test.c \
25 gen-c_glib/t_test_thrift_test.h \
26 gen-c_glib/t_test_thrift_test_types.c \
27 gen-c_glib/t_test_thrift_test_types.h
28
29libtestcglib_la_LIBADD = $(top_builddir)/lib/c_glib/libthrift_c_glib.la
30
31check_PROGRAMS = \
Roger Meier15df0762014-09-29 20:50:56 +020032 test_client \
33 test_server
Roger Meierb3c84092014-09-01 21:53:40 +020034
35test_client_SOURCES = \
36 src/test_client.c
37
38test_client_LDADD = \
39 libtestcglib.la \
40 $(top_builddir)/lib/c_glib/libthrift_c_glib.la
41
Roger Meier15df0762014-09-29 20:50:56 +020042test_server_SOURCES = \
43 src/thrift_test_handler.c \
44 src/thrift_test_handler.h \
45 src/test_server.c
46
47test_server_LDADD = \
48 libtestcglib.la \
49 $(top_builddir)/lib/c_glib/libthrift_c_glib.la
50
Roger Meierb3c84092014-09-01 21:53:40 +020051#
52# Common thrift code generation rules
53#
54THRIFT = $(top_builddir)/compiler/cpp/thrift
55
56gen-c_glib/t_test_second_service.c gen-c_glib/t_test_second_service.h gen-c_glib/t_test_thrift_test.c gen-c_glib/t_test_thrift_test.h gen-c_glib/t_test_thrift_test_types.c gen-c_glib/t_test_thrift_test_types.h: $(top_srcdir)/test/ThriftTest.thrift
57 $(THRIFT) --gen c_glib -r $<
58
59AM_CFLAGS = -g -Wall -Wextra $(GLIB_CFLAGS) $(GOBJECT_CFLAGS)
60AM_CXXFLAGS = $(AM_CFLAGS)
61AM_CPPFLAGS = -I$(top_srcdir)/lib/c_glib/src -Igen-c_glib
62AM_LDFLAGS = $(GLIB_LIBS) $(GOBJECT_LIBS) @GCOV_LDFLAGS@
63
64clean-local:
65 $(RM) -r gen-c_glib
66
67EXTRA_DIST = \
Roger Meier15df0762014-09-29 20:50:56 +020068 src/test_client.c \
69 src/thrift_test_handler.c \
70 src/thrift_test_handler.h \
71 src/test_server.c