blob: 3b382403c0cd49077a9139e2cb09f045cdd67d37 [file] [log] [blame]
Roger Meier18a90d12012-10-24 18:40:06 +00001#
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 Meier81a1f992014-10-22 14:09:43 +020019AUTOMAKE_OPTIONS = subdir-objects serial-tests
20
Roger Meier18a90d12012-10-24 18:40:06 +000021noinst_LTLIBRARIES = libtutorialgencpp.la
22nodist_libtutorialgencpp_la_SOURCES = \
Jens Geyer79f988c2014-10-03 20:42:54 +020023 gen-cpp/Calculator.cpp \
24 gen-cpp/Calculator.h \
25 gen-cpp/SharedService.cpp \
26 gen-cpp/SharedService.h \
27 gen-cpp/shared_constants.cpp \
28 gen-cpp/shared_constants.h \
29 gen-cpp/shared_types.cpp \
30 gen-cpp/shared_types.h \
31 gen-cpp/tutorial_constants.cpp \
32 gen-cpp/tutorial_constants.h \
33 gen-cpp/tutorial_types.cpp \
34 gen-cpp/tutorial_types.h
Roger Meier18a90d12012-10-24 18:40:06 +000035
36
37
38libtutorialgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la
39
40noinst_PROGRAMS = \
Jens Geyer79f988c2014-10-03 20:42:54 +020041 TutorialServer \
42 TutorialClient
Roger Meier18a90d12012-10-24 18:40:06 +000043
44TutorialServer_SOURCES = \
Jens Geyer79f988c2014-10-03 20:42:54 +020045 CppServer.cpp
Roger Meier18a90d12012-10-24 18:40:06 +000046
47TutorialServer_LDADD = \
Jens Geyer79f988c2014-10-03 20:42:54 +020048 libtutorialgencpp.la \
49 $(top_builddir)/lib/cpp/libthrift.la
Roger Meier18a90d12012-10-24 18:40:06 +000050
51TutorialClient_SOURCES = \
Jens Geyer79f988c2014-10-03 20:42:54 +020052 CppClient.cpp
Roger Meier18a90d12012-10-24 18:40:06 +000053
54TutorialClient_LDADD = \
Jens Geyer79f988c2014-10-03 20:42:54 +020055 libtutorialgencpp.la \
56 $(top_builddir)/lib/cpp/libthrift.la
Roger Meier18a90d12012-10-24 18:40:06 +000057
58#
59# Common thrift code generation rules
60#
61THRIFT = $(top_builddir)/compiler/cpp/thrift
62
Roger Meiera5bf1a12014-10-22 23:26:01 +020063gen-cpp/Calculator.cpp gen-cpp/SharedService.cpp gen-cpp/shared_constants.cpp gen-cpp/shared_types.cpp gen-cpp/tutorial_constants.cpp gen-cpp/tutorial_types.cpp: $(top_srcdir)/tutorial/tutorial.thrift
Jens Geyer79f988c2014-10-03 20:42:54 +020064 $(THRIFT) --gen cpp -r $<
Roger Meier18a90d12012-10-24 18:40:06 +000065
Konrad Grochowski1ff4a972014-09-19 23:57:57 +020066AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(LIBEVENT_CPPFLAGS) -I$(top_srcdir)/lib/cpp/src -Igen-cpp
Roger Meierec300e32014-10-13 02:13:35 +020067AM_CXXFLAGS = -Wall -Wextra -pedantic
Roger Meier18a90d12012-10-24 18:40:06 +000068AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS)
69
70clean-local:
Jens Geyer79f988c2014-10-03 20:42:54 +020071 $(RM) -r gen-cpp
Roger Meier18a90d12012-10-24 18:40:06 +000072
73tutorialserver: all
Jens Geyer79f988c2014-10-03 20:42:54 +020074 ./TutorialServer
Roger Meier18a90d12012-10-24 18:40:06 +000075
76tutorialclient: all
Jens Geyer79f988c2014-10-03 20:42:54 +020077 ./TutorialClient
Roger Meier18a90d12012-10-24 18:40:06 +000078
Konrad Grochowski16a23a62014-11-13 15:33:38 +010079style-local:
80 $(CPPSTYLE_CMD)
81
Roger Meier18a90d12012-10-24 18:40:06 +000082EXTRA_DIST = \
Jens Geyer79f988c2014-10-03 20:42:54 +020083 CppClient.cpp \
84 CppServer.cpp