Line | |
---|
1 | SUBDIRS=
|
---|
2 |
|
---|
3 | AM_CPPFLAGS = -I$(top_builddir)/src
|
---|
4 |
|
---|
5 | if TARGET_API_POSIX
|
---|
6 | SUBDIRS+=_posix
|
---|
7 | endif
|
---|
8 |
|
---|
9 | if TARGET_API_WIN32
|
---|
10 | SUBDIRS+=_win32
|
---|
11 | AM_LDFLAGS=-no-undefined
|
---|
12 | endif
|
---|
13 |
|
---|
14 | noinst_LTLIBRARIES=libvscpl_io.la
|
---|
15 |
|
---|
16 | libvscpl_io_la_SOURCES=\
|
---|
17 | BlockingStream.cc \
|
---|
18 | DataStream.cc
|
---|
19 |
|
---|
20 | if TARGET_API_POSIX
|
---|
21 | libvscpl_io_la_LIBADD=_posix/libvscpl_io_posix.la
|
---|
22 | endif
|
---|
23 |
|
---|
24 | if TARGET_API_WIN32
|
---|
25 | libvscpl_io_la_LIBADD=_win32/libvscpl_io_win32.la
|
---|
26 | endif
|
---|
27 |
|
---|
28 | include_vscpliodir=$(includedir)/hu/varadiistvan/scpl/io
|
---|
29 | include_vscplio_HEADERS=\
|
---|
30 | Buffer.h \
|
---|
31 | Failable.h \
|
---|
32 | Waiter.h \
|
---|
33 | WaitableEvent.h \
|
---|
34 | ReadingBuffer.h \
|
---|
35 | WritingBuffer.h \
|
---|
36 | BufferedStream.h \
|
---|
37 | BufferedStreamAcceptor.h \
|
---|
38 | LocalConnector.h \
|
---|
39 | LocalClientSocket.h \
|
---|
40 | LocalSocket.h \
|
---|
41 | LocalAcceptor.h \
|
---|
42 | LocalServerSocket.h \
|
---|
43 | TCPConnector.h \
|
---|
44 | TCPClientSocket.h \
|
---|
45 | TCPSocket.h \
|
---|
46 | TCPAcceptor.h \
|
---|
47 | TCPServerSocket.h \
|
---|
48 | BlockingStream.h \
|
---|
49 | DataStream.h
|
---|
Note:
See
TracBrowser
for help on using the repository browser.