source: vscpl/src/hu/varadiistvan/scpl/io/Makefile.am@ 6:53519b47b166

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

Imported some further stuff from the IO code

File size: 578 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 ReadingBuffer.h \
30 WritingBuffer.h
Note: See TracBrowser for help on using the repository browser.