2014-07-29 21:28:46 +00:00
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing,
|
|
|
|
# software distributed under the License is distributed on an
|
|
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
# KIND, either express or implied. See the License for the
|
|
|
|
# specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
2014-10-22 12:09:43 +00:00
|
|
|
AUTOMAKE_OPTIONS = subdir-objects serial-tests
|
2014-07-29 21:28:46 +00:00
|
|
|
|
2015-05-10 11:21:17 +00:00
|
|
|
BUILT_SOURCES = \
|
|
|
|
gen-c_glib/calculator.h \
|
|
|
|
gen-c_glib/shared_service.h \
|
|
|
|
gen-c_glib/shared_types.h \
|
|
|
|
gen-c_glib/tutorial_types.h
|
|
|
|
|
2017-02-13 20:25:41 +00:00
|
|
|
AM_CFLAGS = -g -Wall -Wextra -pedantic $(GLIB_CFLAGS) $(GOBJECT_CFLAGS) $(OPENSSL_INCLUDES) @GCOV_CFLAGS@
|
2014-07-29 21:28:46 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/lib/c_glib/src -Igen-c_glib
|
2017-02-13 20:25:41 +00:00
|
|
|
AM_LDFLAGS = $(GLIB_LIBS) $(GOBJECT_LIBS) $(OPENSSL_LDFLAGS) $(OPENSSL_LIBS) @GCOV_LDFLAGS@
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
noinst_LTLIBRARIES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
libtutorialgencglib.la
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
nodist_libtutorialgencglib_la_SOURCES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
gen-c_glib/calculator.c \
|
|
|
|
gen-c_glib/calculator.h \
|
|
|
|
gen-c_glib/shared_service.c \
|
|
|
|
gen-c_glib/shared_service.h \
|
|
|
|
gen-c_glib/shared_types.c \
|
|
|
|
gen-c_glib/shared_types.h \
|
|
|
|
gen-c_glib/tutorial_types.c \
|
|
|
|
gen-c_glib/tutorial_types.h
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
libtutorialgencglib_la_LIBADD = \
|
2014-10-03 18:42:54 +00:00
|
|
|
$(top_builddir)/lib/c_glib/libthrift_c_glib.la
|
2014-07-29 21:28:46 +00:00
|
|
|
|
2015-07-30 18:48:40 +00:00
|
|
|
libtutorialgencglib_la_CFLAGS = \
|
|
|
|
$(AM_CFLAGS) -Wno-unused-function
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2014-10-03 18:42:54 +00:00
|
|
|
tutorial_server \
|
|
|
|
tutorial_client
|
2014-07-29 21:28:46 +00:00
|
|
|
|
2014-09-29 19:01:58 +00:00
|
|
|
tutorial_server_SOURCES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
c_glib_server.c
|
2017-02-13 20:25:41 +00:00
|
|
|
tutorial_server_LDFLAGS = $(OPENSSL_LIBS)
|
2014-09-29 19:01:58 +00:00
|
|
|
|
|
|
|
tutorial_server_LDADD = \
|
2014-10-03 18:42:54 +00:00
|
|
|
libtutorialgencglib.la \
|
|
|
|
$(top_builddir)/lib/c_glib/libthrift_c_glib.la
|
2014-09-29 19:01:58 +00:00
|
|
|
|
2014-07-29 21:28:46 +00:00
|
|
|
tutorial_client_SOURCES = \
|
2014-10-03 18:42:54 +00:00
|
|
|
c_glib_client.c
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
tutorial_client_LDADD = \
|
2014-10-03 18:42:54 +00:00
|
|
|
libtutorialgencglib.la \
|
|
|
|
$(top_builddir)/lib/c_glib/libthrift_c_glib.la
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
|
2014-11-08 22:19:02 +00:00
|
|
|
gen-c_glib/calculator.c gen-c_glib/calculator.h gen-c_glib/shared_service.c gen-c_glib/shared_service.h gen-c_glib/shared_types.c gen-c_glib/shared_types.h gen-c_glib/tutorial_types.c gen-c_glib/tutorial_types.h: $(top_srcdir)/tutorial/tutorial.thrift
|
2014-10-03 18:42:54 +00:00
|
|
|
$(THRIFT) --gen c_glib -r $<
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
clean-local:
|
2015-07-28 20:59:16 +00:00
|
|
|
$(RM) gen-c_glib/*
|
2014-07-29 21:28:46 +00:00
|
|
|
|
2014-09-29 19:01:58 +00:00
|
|
|
tutorialserver: all
|
2014-10-03 18:42:54 +00:00
|
|
|
./tutorial_server
|
2014-09-29 19:01:58 +00:00
|
|
|
|
2014-07-29 21:28:46 +00:00
|
|
|
tutorialclient: all
|
2014-10-03 18:42:54 +00:00
|
|
|
./tutorial_client
|
2014-07-29 21:28:46 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2014-10-03 18:42:54 +00:00
|
|
|
c_glib_server.c \
|
|
|
|
c_glib_client.c
|