source: xplcommon/src/xplcommon/Makefile.am@ 29:54c2d451f8a0

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

Implemented a blocking stream and a corresponding trst program

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