source: vscpl/src/hu/varadiistvan/scpl/io/Makefile.am@ 8:7b2598d1ea55

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

Imported the I/O library for POSIX and the pseudo-random generator

File size: 820 bytes
Line 
1SUBDIRS=
2
3if TARGET_API_POSIX
4SUBDIRS+=_posix
5endif
6
7if TARGET_API_WIN32
8SUBDIRS+=_win32
9AM_LDFLAGS=-no-undefined
10endif
11
12noinst_LTLIBRARIES=libvscpl_io.la
13
14libvscpl_io_la_SOURCES=
15
16if TARGET_API_POSIX
17libvscpl_io_la_LIBADD=_posix/libvscpl_io_posix.la
18endif
19
20if TARGET_API_WIN32
21libvscpl_io_la_LIBADD=_win32/libvscpl_io_win32.la
22endif
23
24include_vscpliodir=$(includedir)/hu/varadiistvan/scpl/io
25include_vscplio_HEADERS=\
26 Buffer.h \
27 Failable.h \
28 Waiter.h \
29 WaitableEvent.h \
30 ReadingBuffer.h \
31 WritingBuffer.h \
32 BufferedStream.h \
33 LocalConnector.h \
34 LocalClientSocket.h \
35 LocalSocket.h \
36 LocalAcceptor.h \
37 LocalServerSocket.h
Note: See TracBrowser for help on using the repository browser.