source: xplcommon/src/xplcommon/Makefile.am@ 27:11b3ec33029d

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

Implemented a pseudo-random number generator

File size: 693 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 Buffer.cc \
13 PseudoRandom.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 Failable.h \
28 Thread.h \
29 Waiter.h \
30 WaitableEvent.h \
31 Buffer.h \
32 BufferedStream.h \
33 ReadingBuffer.h \
34 WritingBuffer.h \
35 LocalAcceptor.h \
36 LocalSocket.h \
37 LocalServerSocket.h \
38 LocalConnector.h \
39 LocalClientSocket.h \
40 PseudoRandom.h
Note: See TracBrowser for help on using the repository browser.