source: xplcommon/src/xplcommon/Makefile.am@ 30:1dde7e03353f

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

A little cleanup

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