blob: 822a2c7f5ca5ac9ad4047918e85f456b32e1802f [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 \
Marc Slemkoe03da182006-07-21 21:32:36 +000013 src/concurrency/PosixThreadFactory.h \
Marc Slemko9d4a3e22006-07-21 19:53:48 +000014 src/concurrency/Thread.h \
15 src/concurrency/ThreadManager.h \
16 src/concurrency/TimerManager.h
17
18libthrift_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
25libthrift_la_CXXFLAGS = -Isrc
26
27libthrift_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
39bin_PROGRAMS = concurrency_test
40
41include_HEADERS = $(libconcurrency_inst_headers) \
42 $(libthrift_inst_headers)
43
44concurrency_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
49concurrency_test_LDADD = libconcurrency.la
50
51concurrency_test_CXXFLAGS = -Isrc/concurrency