David Reiss | 9ff3b9d | 2008-02-15 01:10:23 +0000 | [diff] [blame] | 1 | SUBDIRS = py |
| 2 | |
David Reiss | ff50f28 | 2008-02-23 22:07:46 +0000 | [diff] [blame] | 3 | if ENABLE_JAVA |
| 4 | SUBDIRS += java |
| 5 | endif |
| 6 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 7 | noinst_LTLIBRARIES = libtestgencpp.la |
| 8 | libtestgencpp_la_SOURCES = \ |
| 9 | gen-cpp/DebugProtoTest_types.cpp \ |
| 10 | gen-cpp/OptionalRequiredTest_types.cpp \ |
| 11 | gen-cpp/DebugProtoTest_types.cpp \ |
| 12 | gen-cpp/PartiallyReflectable.cpp \ |
| 13 | gen-cpp/Service.cpp \ |
| 14 | gen-cpp/StressTest_types.cpp \ |
| 15 | gen-cpp/SecondService.cpp \ |
| 16 | gen-cpp/ThriftTest_constants.cpp \ |
| 17 | gen-cpp/ThriftTest.cpp \ |
| 18 | gen-cpp/ThriftTest_types.cpp |
| 19 | |
| 20 | libtestgencpp_la_LIBADD = $(top_srcdir)/lib/cpp/libthrift.la |
| 21 | |
| 22 | noinst_PROGRAMS = Benchmark |
| 23 | |
| 24 | Benchmark_SOURCES = \ |
| 25 | Benchmark.cpp |
| 26 | |
| 27 | Benchmark_LDADD = libtestgencpp.la |
| 28 | |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 29 | check_PROGRAMS = \ |
| 30 | DebugProtoTest \ |
David Reiss | db0ea15 | 2008-02-18 01:49:37 +0000 | [diff] [blame] | 31 | JSONProtoTest \ |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 32 | OptionalRequiredTest \ |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 33 | ReflectionTest \ |
| 34 | UnitTests |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 35 | |
| 36 | TESTS = \ |
| 37 | $(check_PROGRAMS) |
| 38 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 39 | UnitTests_SOURCES = \ |
| 40 | UnitTestMain.cpp \ |
| 41 | TMemoryBufferTest.cpp |
| 42 | |
| 43 | UnitTests_LDADD = libtestgencpp.la |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 44 | |
| 45 | # |
| 46 | # DebugProtoTest |
| 47 | # |
| 48 | DebugProtoTest_SOURCES = \ |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 49 | DebugProtoTest.cpp |
| 50 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 51 | DebugProtoTest_LDADD = libtestgencpp.la |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 52 | |
| 53 | |
| 54 | # |
David Reiss | db0ea15 | 2008-02-18 01:49:37 +0000 | [diff] [blame] | 55 | # JSONProtoTest |
| 56 | # |
| 57 | JSONProtoTest_SOURCES = \ |
David Reiss | db0ea15 | 2008-02-18 01:49:37 +0000 | [diff] [blame] | 58 | JSONProtoTest.cpp |
| 59 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 60 | JSONProtoTest_LDADD = libtestgencpp.la |
David Reiss | db0ea15 | 2008-02-18 01:49:37 +0000 | [diff] [blame] | 61 | |
| 62 | # |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 63 | # OptionalRequiredTest |
| 64 | # |
| 65 | OptionalRequiredTest_SOURCES = \ |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 66 | OptionalRequiredTest.cpp |
| 67 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 68 | OptionalRequiredTest_LDADD = libtestgencpp.la |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 69 | |
| 70 | |
| 71 | # |
| 72 | # ReflectionTest |
| 73 | # |
| 74 | ReflectionTest_SOURCES = \ |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 75 | ReflectionTest.cpp |
| 76 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 77 | ReflectionTest_LDADD = libtestgencpp.la |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 78 | |
| 79 | # |
| 80 | # Common thrift code generation rules |
| 81 | # |
| 82 | THRIFT = $(top_srcdir)/compiler/cpp/thrift |
| 83 | |
| 84 | gen-cpp/DebugProtoTest_types.cpp gen-cpp/PartiallyReflectable.cpp: DebugProtoTest.thrift |
David Reiss | 4ce2874 | 2008-02-27 07:45:05 +0000 | [diff] [blame] | 85 | $(THRIFT) --gen cpp:dense,reflection_limited $< |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 86 | |
| 87 | gen-cpp/OptionalRequiredTest_types.cpp: OptionalRequiredTest.thrift |
David Reiss | 4ce2874 | 2008-02-27 07:45:05 +0000 | [diff] [blame] | 88 | $(THRIFT) --gen cpp:dense $< |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 89 | |
| 90 | gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp: StressTest.thrift |
David Reiss | 4ce2874 | 2008-02-27 07:45:05 +0000 | [diff] [blame] | 91 | $(THRIFT) --gen cpp:dense,reflection_limited $< |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 92 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 93 | gen-cpp/SecondService.cpp gen-cpp/ThriftTest_constants.cpp gen-cpp/ThriftTest.cpp gen-cpp/ThriftTest_types.cpp: ThriftTest.thrift |
| 94 | $(THRIFT) --gen cpp:dense,reflection_limited $< |
David Reiss | 8180c0c | 2008-02-04 21:14:14 +0000 | [diff] [blame] | 95 | |
| 96 | INCLUDES = \ |
| 97 | -I$(top_srcdir)/lib/cpp/src |
| 98 | |
| 99 | AM_CPPFLAGS = $(BOOST_CPPFLAGS) |
| 100 | |
| 101 | clean-local: |
David Reiss | 2ca456a | 2008-02-24 16:42:18 +0000 | [diff] [blame] | 102 | $(RM) -r gen-cpp |