source: xplcommon/src/xplcommon/Makefile.am@ 32:4bef4944955f

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

Implemented mutex with test program

File size: 768 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 Failable.h \
32 Waiter.h \
33 WaitableEvent.h \
34 Buffer.h \
35 BufferedStream.h \
36 ReadingBuffer.h \
37 WritingBuffer.h \
38 LocalAcceptor.h \
39 LocalSocket.h \
40 LocalServerSocket.h \
41 LocalConnector.h \
42 LocalClientSocket.h \
43 BlockingStream.h \
44 DataStream.h
Note: See TracBrowser for help on using the repository browser.