source: xplcommon/src/xplcommon/Makefile.am@ 17:5ef53c7a9598

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

Created the public interfaces of the socket-related classes

File size: 685 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 Buffer.cc
13
14if TARGET_API_POSIX
15libxplcommon_la_LIBADD=posix/libxplcommon_posix.la
16endif
17
18if TARGET_API_WIN32
19libxplcommon_la_LIBADD=win32/libxplcommon_win32.la
20endif
21
22include_xplcommondir=$(includedir)/xplcommon
23include_xplcommon_HEADERS=\
24 config.h \
25 types.h \
26 Failable.h \
27 Thread.h \
28 Waiter.h \
29 WaitableEvent.h \
30 Buffer.h \
31 BufferedStream.h \
32 ReadingBuffer.h \
33 WritingBuffer.h \
34 Acceptor.h \
35 LocalAcceptor.h \
36 LocalSocket.h \
37 LocalServerSocket.h \
38 Connector.h \
39 ClientSocket.h \
40 LocalClientSocket.h
Note: See TracBrowser for help on using the repository browser.