source: xplcommon/src/xplcommon/Makefile.am@ 34:ad3194cb9bef

Last change on this file since 34:ad3194cb9bef was 34:ad3194cb9bef, checked in by István Váradi <ivaradi@…>, 11 years ago

Implemented a conditional variable

File size: 782 bytes
Line 
1SUBDIRS=
2if TARGET_API_POSIX
3SUBDIRS+=posix
4endif
5if TARGET_API_WIN32
6SUBDIRS+=win32
7endif
8
9lib_LTLIBRARIES=libxplcommon.la
10
11libxplcommon_la_SOURCES= \
12 PseudoRandom.cc \
13 BlockingStream.cc \
14 DataStream.cc
15
16if TARGET_API_POSIX
17libxplcommon_la_LIBADD=posix/libxplcommon_posix.la
18endif
19
20if TARGET_API_WIN32
21libxplcommon_la_LIBADD=win32/libxplcommon_win32.la
22endif
23
24include_xplcommondir=$(includedir)/xplcommon
25include_xplcommon_HEADERS=\
26 config.h \
27 types.h \
28 PseudoRandom.h \
29 Thread.h \
30 Mutex.h \
31 CondVar.h \
32 Failable.h \
33 Waiter.h \
34 WaitableEvent.h \
35 Buffer.h \
36 BufferedStream.h \
37 ReadingBuffer.h \
38 WritingBuffer.h \
39 LocalAcceptor.h \
40 LocalSocket.h \
41 LocalServerSocket.h \
42 LocalConnector.h \
43 LocalClientSocket.h \
44 BlockingStream.h \
45 DataStream.h
Note: See TracBrowser for help on using the repository browser.