Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +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 | # |
Kevin Wojniak | a392566 | 2019-07-01 11:07:45 -0700 | [diff] [blame^] | 19 | AUTOMAKE_OPTIONS = subdir-objects serial-tests nostdinc |
Roger Meier | 81a1f99 | 2014-10-22 14:09:43 +0200 | [diff] [blame] | 20 | |
Nobuaki Sukegawa | a0c5ab7 | 2015-02-01 00:27:12 +0900 | [diff] [blame] | 21 | BUILT_SOURCES = gen-cpp/shared_types.cpp \ |
| 22 | gen-cpp/tutorial_types.cpp |
| 23 | |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 24 | noinst_LTLIBRARIES = libtutorialgencpp.la |
| 25 | nodist_libtutorialgencpp_la_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 26 | gen-cpp/Calculator.cpp \ |
| 27 | gen-cpp/Calculator.h \ |
| 28 | gen-cpp/SharedService.cpp \ |
| 29 | gen-cpp/SharedService.h \ |
| 30 | gen-cpp/shared_constants.cpp \ |
| 31 | gen-cpp/shared_constants.h \ |
| 32 | gen-cpp/shared_types.cpp \ |
| 33 | gen-cpp/shared_types.h \ |
| 34 | gen-cpp/tutorial_constants.cpp \ |
| 35 | gen-cpp/tutorial_constants.h \ |
| 36 | gen-cpp/tutorial_types.cpp \ |
| 37 | gen-cpp/tutorial_types.h |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 38 | |
| 39 | |
| 40 | |
| 41 | libtutorialgencpp_la_LIBADD = $(top_builddir)/lib/cpp/libthrift.la |
| 42 | |
| 43 | noinst_PROGRAMS = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 44 | TutorialServer \ |
| 45 | TutorialClient |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 46 | |
| 47 | TutorialServer_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 48 | CppServer.cpp |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 49 | |
| 50 | TutorialServer_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 51 | libtutorialgencpp.la \ |
| 52 | $(top_builddir)/lib/cpp/libthrift.la |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 53 | |
| 54 | TutorialClient_SOURCES = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 55 | CppClient.cpp |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 56 | |
| 57 | TutorialClient_LDADD = \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 58 | libtutorialgencpp.la \ |
| 59 | $(top_builddir)/lib/cpp/libthrift.la |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 60 | |
| 61 | # |
| 62 | # Common thrift code generation rules |
| 63 | # |
Roger Meier | a5bf1a1 | 2014-10-22 23:26:01 +0200 | [diff] [blame] | 64 | gen-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 Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 65 | $(THRIFT) --gen cpp -r $< |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 66 | |
Konrad Grochowski | 1ff4a97 | 2014-09-19 23:57:57 +0200 | [diff] [blame] | 67 | AM_CPPFLAGS = $(BOOST_CPPFLAGS) $(LIBEVENT_CPPFLAGS) -I$(top_srcdir)/lib/cpp/src -Igen-cpp |
Roger Meier | ec300e3 | 2014-10-13 02:13:35 +0200 | [diff] [blame] | 68 | AM_CXXFLAGS = -Wall -Wextra -pedantic |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 69 | AM_LDFLAGS = $(BOOST_LDFLAGS) $(LIBEVENT_LDFLAGS) |
| 70 | |
| 71 | clean-local: |
Roger Meier | f57b57a | 2015-11-03 23:28:43 +0100 | [diff] [blame] | 72 | $(RM) gen-cpp/* |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 73 | |
| 74 | tutorialserver: all |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 75 | ./TutorialServer |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 76 | |
| 77 | tutorialclient: all |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 78 | ./TutorialClient |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 79 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 80 | style-local: |
| 81 | $(CPPSTYLE_CMD) |
| 82 | |
Roger Meier | 18a90d1 | 2012-10-24 18:40:06 +0000 | [diff] [blame] | 83 | EXTRA_DIST = \ |
jfarrell | f13e431 | 2015-08-25 00:39:29 -0400 | [diff] [blame] | 84 | CMakeLists.txt \ |
Jens Geyer | 79f988c | 2014-10-03 20:42:54 +0200 | [diff] [blame] | 85 | CppClient.cpp \ |
| 86 | CppServer.cpp |