source: xplcommon/src/xplcommon/Makefile.am@ 36:46f9ddb1e286

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

It is now possible to build a DLL

File size: 807 bytes
Line 
1SUBDIRS=
2if TARGET_API_POSIX
3SUBDIRS+=posix
4endif
5if TARGET_API_WIN32
6SUBDIRS+=win32
7AM_LDFLAGS=-no-undefined
8endif
9
10lib_LTLIBRARIES=libxplcommon.la
11
12libxplcommon_la_SOURCES= \
13 PseudoRandom.cc \
14 BlockingStream.cc \
15 DataStream.cc
16
17if TARGET_API_POSIX
18libxplcommon_la_LIBADD=posix/libxplcommon_posix.la
19endif
20
21if TARGET_API_WIN32
22libxplcommon_la_LIBADD=win32/libxplcommon_win32.la
23endif
24
25include_xplcommondir=$(includedir)/xplcommon
26include_xplcommon_HEADERS=\
27 config.h \
28 types.h \
29 PseudoRandom.h \
30 Thread.h \
31 Mutex.h \
32 CondVar.h \
33 Failable.h \
34 Waiter.h \
35 WaitableEvent.h \
36 Buffer.h \
37 BufferedStream.h \
38 ReadingBuffer.h \
39 WritingBuffer.h \
40 LocalAcceptor.h \
41 LocalSocket.h \
42 LocalServerSocket.h \
43 LocalConnector.h \
44 LocalClientSocket.h \
45 BlockingStream.h \
46 DataStream.h
Note: See TracBrowser for help on using the repository browser.