Marc Slemko | 9d4a3e2 | 2006-07-21 19:53:48 +0000 | [diff] [blame] | 1 | lib_LTLIBRARIES = libconcurrency.la \ |
| 2 | libthrift.la |
| 3 | |
| 4 | # Define the source file for the module |
| 5 | |
| 6 | libconcurrency_la_SOURCES = src/concurrency/Monitor.cc \ |
| 7 | src/concurrency/PosixThreadFactory.cc \ |
| 8 | src/concurrency/ThreadManager.cc \ |
| 9 | src/concurrency/TimerManager.cc |
| 10 | |
| 11 | libconcurrency_inst_headers = src/concurrency/Exception.h \ |
| 12 | src/concurrency/Monitor.h \ |
Marc Slemko | e03da18 | 2006-07-21 21:32:36 +0000 | [diff] [blame] | 13 | src/concurrency/PosixThreadFactory.h \ |
Marc Slemko | 9d4a3e2 | 2006-07-21 19:53:48 +0000 | [diff] [blame] | 14 | src/concurrency/Thread.h \ |
| 15 | src/concurrency/ThreadManager.h \ |
| 16 | src/concurrency/TimerManager.h |
| 17 | |
| 18 | libthrift_la_SOURCES = src/protocol/TBinaryProtocol.cc \ |
| 19 | src/transport/TBufferedTransport.cc \ |
| 20 | src/transport/TChunkedTransport.cc \ |
| 21 | src/transport/TSocket.cc \ |
| 22 | src/transport/TServerSocket.cc \ |
| 23 | src/server/TSimpleServer.cc |
| 24 | |
| 25 | libthrift_la_CXXFLAGS = -Isrc |
| 26 | |
| 27 | libthrift_inst_headers = src/protocol/TBinaryProtocol.h \ |
| 28 | src/protocol/TProtocol.h \ |
| 29 | src/transport/TBufferedTransport.h \ |
| 30 | src/transport/TChunkedTransport.h \ |
| 31 | src/transport/TNullTransport.h \ |
| 32 | src/transport/TServerSocket.h \ |
| 33 | src/transport/TServerTransport.h \ |
| 34 | src/transport/TSocket.h \ |
| 35 | src/transport/TTransport.h \ |
| 36 | src/transport/TTransport.h \ |
| 37 | src/transport/TTransportException.h |
| 38 | |
| 39 | bin_PROGRAMS = concurrency_test |
| 40 | |
| 41 | include_HEADERS = $(libconcurrency_inst_headers) \ |
| 42 | $(libthrift_inst_headers) |
| 43 | |
| 44 | concurrency_test_SOURCES = src/concurrency/test/Tests.cc \ |
| 45 | src/concurrency/test/ThreadFactoryTests.h \ |
| 46 | src/concurrency/test/ThreadManagerTests.h \ |
| 47 | src/concurrency/test/TimerManagerTests.h |
| 48 | |
| 49 | concurrency_test_LDADD = libconcurrency.la |
| 50 | |
| 51 | concurrency_test_CXXFLAGS = -Isrc/concurrency |