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